mirror of
https://github.com/ansible-collections/community.mysql.git
synced 2025-04-05 10:10:32 -07:00
* Add integrations tests for column case sensitive name * add a warning when column_case_sensitive in not set * add announce default will change in in 4.0.0 * fix tests for engine that don't wrap column in backticks * add filter because only MySQL 5.7 is case sensitive for users privs * add kmarse and myself to the authors * add kmarse to the contributors list --------- Co-authored-by: Laurent Indermühle <laurent.indermuehle@epfl.ch> Co-authored-by: Andrew Klychkov <aklychko@redhat.com>
24 lines
909 B
YAML
24 lines
909 B
YAML
####################################################################
|
|
# WARNING: These are designed specifically for Ansible tests #
|
|
# and should not be used as examples of how to write Ansible roles #
|
|
####################################################################
|
|
|
|
# mysql_role module initial CI tests
|
|
# TODO, many tests fails with MariaDB, debug them then remove the
|
|
# when clause and swap include_tasks for import_tasks.
|
|
- include_tasks: mysql_role_initial.yml
|
|
when:
|
|
- db_engine == 'mysql'
|
|
|
|
# Test that subtract_privs will only revoke the grants given by priv
|
|
# (https://github.com/ansible-collections/community.mysql/issues/331)
|
|
- include_tasks: test_priv_subtract.yml
|
|
vars:
|
|
enable_check_mode: no
|
|
- include_tasks: test_priv_subtract.yml
|
|
vars:
|
|
enable_check_mode: yes
|
|
|
|
- name: Test column case sensitive
|
|
ansible.builtin.import_tasks:
|
|
file: test_column_case_sensitive.yml
|