mirror of
https://github.com/ansible-collections/community.mysql.git
synced 2025-04-05 10:10:32 -07:00
* Replace matrix.mysql by matrix.db_engine_version * Specify db flavor * Upgrade dbdeployer to 1.56.0 See https://github.com/datacharmer/dbdeployer/issues/120 * Fix: github workflow syntax * Fix: mysql version file for mariadb engine * Do not test mysql_variables modes persist and persist_only on mariadb Those modes do not exist on mariadb. See https://mariadb.com/kb/en/set/ * Exclude integration tests for mariadb_10.5.4 with pymysql==0.7.10 * TLS on mariadb is disabled by default * Configure mariadb supported versions in matrix As discussed in https://github.com/ansible-collections/community.mysql/discussions/141#discussioncomment-643657 * Fix: test_mysql_db : assert that databases does not exist "assertion": "database1 not in mysql_result.stdout" * Fix: assertion mysql_version in result.version.full * Fix: test_mysql_user : Check that the module made a change and that the expected plugin type is set 'mysql_native_password' in show_create_user.stdout * Fix: test_mysql_replication : Create user for replication ERROR 1064 (42000) at line 1: You have an error in your SQL syntax; check the manual that corresponds to your MariaDB server version for the right syntax to use near 'BY 'replication_pass'' at line 1 https://dev.mysql.com/doc/mysql-replication-excerpt/5.7/en/replication-howto-repuser.html https://dev.mysql.com/doc/mysql-replication-excerpt/8.0/en/replication-howto-repuser.html https://mariadb.com/kb/en/setting-up-replication/#example-enabling-replication-for-mariadb Create user syntax compatible with auth plugin and password on both mysql and mariadb. https://dev.mysql.com/doc/refman/8.0/en/create-user.html https://mariadb.com/kb/en/create-user/ * Fix: test_mysql_replication: replica_status 'dict object' has no attribute 'Source_Host' * Do not test mysql_replication_channel.yml on mariadb * Do not test target 'test_mysql_role' with mariadb, too much errors to fix * Setup mysql_version_parts depending on install type (mysql or mariadb) * Install mariadb-client when install_type is mariadb To use the same client tools as the database engine. And to use a more updated mysqldump version, in order to fix this error: ERROR 1556 (HY000) at line 776: You can't use locks with log tables * Fix: mysql auth plugin is set on mariadb >10.2 * Fix: skip assertion on mariadb 10.2 * Do not execute test_user_plugin_auth.yml tests on mariadb, create/update useer sql syntax not compatible * Fix: test_mysql_user : assert user1 TLS requirements Remove test for oldd versions * Fix: typo * Fix: test_mysql_user : Test idempotency (expect ok) ignore mariadb 10.5 * [ci skip] Add changelog fragment * Delete changelog fragment
187 lines
7.9 KiB
YAML
187 lines
7.9 KiB
YAML
---
|
|
- vars:
|
|
mysql_parameters: &mysql_params
|
|
login_user: '{{ mysql_user }}'
|
|
login_password: '{{ mysql_password }}'
|
|
login_host: 127.0.0.1
|
|
login_port: '{{ mysql_primary_port }}'
|
|
|
|
block:
|
|
|
|
# ============================================================
|
|
- name: find out the database version
|
|
mysql_info:
|
|
<<: *mysql_params
|
|
filter: version
|
|
register: db_version
|
|
|
|
- name: Drop mysql user {{ item }} if exists
|
|
mysql_user:
|
|
<<: *mysql_params
|
|
name: '{{ item }}'
|
|
state: absent
|
|
with_items: ['{{ user_name_1 }}', '{{ user_name_2 }}', '{{ user_name_3 }}']
|
|
|
|
- name: create user with TLS requirements in check mode (expect changed=true)
|
|
mysql_user:
|
|
<<: *mysql_params
|
|
name: "{{ user_name_1 }}"
|
|
password: "{{ user_password_1 }}"
|
|
tls_requires:
|
|
SSL:
|
|
check_mode: yes
|
|
register: result
|
|
|
|
- name: Assert check mode user create reports changed state
|
|
assert:
|
|
that:
|
|
- result is changed
|
|
|
|
- include: assert_no_user.yml user_name={{user_name_1}}
|
|
|
|
- name: create user with TLS requirements state=present (expect changed=true)
|
|
mysql_user:
|
|
<<: *mysql_params
|
|
name: '{{ item[0] }}'
|
|
password: '{{ user_password_1 }}'
|
|
tls_requires: '{{ item[1] }}'
|
|
with_together:
|
|
- [ '{{ user_name_1 }}', '{{ user_name_2 }}', '{{ user_name_3 }}']
|
|
-
|
|
- SSL:
|
|
- X509:
|
|
- subject: '/CN=alice/O=MyDom, Inc./C=US/ST=Oregon/L=Portland'
|
|
cipher: 'ECDHE-ECDSA-AES256-SHA384'
|
|
issuer: '/CN=org/O=MyDom, Inc./C=US/ST=Oregon/L=Portland'
|
|
|
|
- block:
|
|
- name: retrieve TLS requirements for users in old database version
|
|
command: "{{ mysql_command }} -L -N -s -e \"SHOW GRANTS for '{{ item }}'@'localhost'\""
|
|
register: old_result
|
|
with_items: ['{{ user_name_1 }}', '{{ user_name_2 }}', '{{ user_name_3 }}']
|
|
|
|
- name: set old database separator
|
|
set_fact:
|
|
separator: '\n'
|
|
# Semantically: when mysql version <= 5.6 or MariaDB version <= 10.1
|
|
when: db_version.version.major <= 5 and db_version.version.minor <= 6 or db_version.version.major == 10 and db_version.version.minor < 2
|
|
|
|
- block:
|
|
- name: retrieve TLS requirements for users in new database version
|
|
command: "{{ mysql_command }} -L -N -s -e \"SHOW CREATE USER '{{ item }}'@'localhost'\""
|
|
register: new_result
|
|
with_items: ['{{ user_name_1 }}', '{{ user_name_2 }}', '{{ user_name_3 }}']
|
|
|
|
- name: set new database separator
|
|
set_fact:
|
|
separator: 'PASSWORD'
|
|
# Semantically: when mysql version >= 5.7 or MariaDB version >= 10.2
|
|
when: db_version.version.major == 5 and db_version.version.minor >= 7 or db_version.version.major > 5 and db_version.version.major < 10 or db_version.version.major == 10 and db_version.version.minor >= 2
|
|
|
|
- block:
|
|
- name: assert user1 TLS requirements
|
|
assert:
|
|
that:
|
|
- "'SSL' in reqs"
|
|
vars:
|
|
- reqs: "{{((old_result.results[0] is skipped | ternary(new_result, old_result)).results | selectattr('item', 'contains', user_name_1) | first).stdout.split('REQUIRE')[1].split(separator)[0].strip()}}"
|
|
|
|
- name: assert user2 TLS requirements
|
|
assert:
|
|
that:
|
|
- "'X509' in reqs"
|
|
vars:
|
|
- reqs: "{{((old_result.results[0] is skipped | ternary(new_result, old_result)).results | selectattr('item', 'contains', user_name_2) | first).stdout.split('REQUIRE')[1].split(separator)[0].strip()}}"
|
|
|
|
- name: assert user3 TLS requirements
|
|
assert:
|
|
that:
|
|
- "'/CN=alice/O=MyDom, Inc./C=US/ST=Oregon/L=Portland' in (reqs | select('contains', 'SUBJECT') | first)"
|
|
- "'/CN=org/O=MyDom, Inc./C=US/ST=Oregon/L=Portland' in (reqs | select('contains', 'ISSUER') | first)"
|
|
- "'ECDHE-ECDSA-AES256-SHA384' in (reqs | select('contains', 'CIPHER') | first)"
|
|
vars:
|
|
- reqs: "{{((old_result.results[0] is skipped | ternary(new_result, old_result)).results | selectattr('item', 'contains', user_name_3) | first).stdout.split('REQUIRE')[1].split(separator)[0].replace(\"' \", \"':\").split(\":\")}}"
|
|
# CentOS 6 uses an older version of jinja that does not provide the selectattr filter.
|
|
when: ansible_distribution != 'CentOS' or ansible_distribution_major_version != '6'
|
|
|
|
- name: modify user with TLS requirements state=present in check mode (expect changed=true)
|
|
mysql_user:
|
|
<<: *mysql_params
|
|
name: '{{ user_name_1 }}'
|
|
password: '{{ user_password_1 }}'
|
|
tls_requires:
|
|
X509:
|
|
check_mode: yes
|
|
register: result
|
|
|
|
- name: Assert check mode user update reports changed state
|
|
assert:
|
|
that:
|
|
- result is changed
|
|
|
|
- name: retrieve TLS requirements for users in old database version
|
|
command: "{{ mysql_command }} -L -N -s -e \"SHOW GRANTS for '{{ user_name_1 }}'@'localhost'\""
|
|
register: old_result
|
|
when: db_version.version.major <= 5 and db_version.version.minor <= 6 or db_version.version.major == 10 and db_version.version.minor < 2
|
|
|
|
- name: retrieve TLS requirements for users in new database version
|
|
command: "{{ mysql_command }} -L -N -s -e \"SHOW CREATE USER '{{ user_name_1 }}'@'localhost'\""
|
|
register: new_result
|
|
when: db_version.version.major == 5 and db_version.version.minor >= 7 or db_version.version.major > 5 and db_version.version.major < 10 or db_version.version.major == 10 and db_version.version.minor >= 2
|
|
|
|
- name: assert user1 TLS requirements was not changed
|
|
assert:
|
|
that: "'SSL' in reqs"
|
|
vars:
|
|
- reqs: "{{(old_result is skipped | ternary(new_result, old_result)).stdout.split('REQUIRE')[1].split(separator)[0].strip()}}"
|
|
|
|
- name: modify user with TLS requirements state=present (expect changed=true)
|
|
mysql_user:
|
|
<<: *mysql_params
|
|
name: '{{ user_name_1 }}'
|
|
password: '{{ user_password_1 }}'
|
|
tls_requires:
|
|
X509:
|
|
|
|
- name: retrieve TLS requirements for users in old database version
|
|
command: "{{ mysql_command }} -L -N -s -e \"SHOW GRANTS for '{{ user_name_1 }}'@'localhost'\""
|
|
register: old_result
|
|
when: db_version.version.major <= 5 and db_version.version.minor <= 6 or db_version.version.major == 10 and db_version.version.minor < 2
|
|
|
|
- name: retrieve TLS requirements for users in new database version
|
|
command: "{{ mysql_command }} -L -N -s -e \"SHOW CREATE USER '{{ user_name_1 }}'@'localhost'\""
|
|
register: new_result
|
|
when: db_version.version.major == 5 and db_version.version.minor >= 7 or db_version.version.major > 5 and db_version.version.major < 10 or db_version.version.major == 10 and db_version.version.minor >= 2
|
|
|
|
- name: assert user1 TLS requirements
|
|
assert:
|
|
that: "'X509' in reqs"
|
|
vars:
|
|
- reqs: "{{(old_result is skipped | ternary(new_result, old_result)).stdout.split('REQUIRE')[1].split(separator)[0].strip()}}"
|
|
|
|
- name: remove TLS requirements from user (expect changed=true)
|
|
mysql_user:
|
|
<<: *mysql_params
|
|
name: '{{ user_name_1 }}'
|
|
password: '{{ user_password_1 }}'
|
|
tls_requires:
|
|
|
|
- name: retrieve TLS requirements for users
|
|
command: "{{ mysql_command }} -L -N -s -e \"SHOW CREATE USER '{{ user_name_1 }}'@'localhost'\""
|
|
register: result
|
|
|
|
- name: assert user1 TLS requirements
|
|
assert:
|
|
that: "'REQUIRE ' not in result.stdout or 'REQUIRE NONE' in result.stdout"
|
|
|
|
- include: remove_user.yml user_name={{user_name_1}} user_password={{ user_password_1 }}
|
|
|
|
- include: remove_user.yml user_name={{user_name_2}} user_password={{ user_password_1 }}
|
|
|
|
- include: remove_user.yml user_name={{user_name_3}} user_password={{ user_password_1 }}
|
|
|
|
- include: assert_no_user.yml user_name={{user_name_1}}
|
|
|
|
- include: assert_no_user.yml user_name={{user_name_2}}
|
|
|
|
- include: assert_no_user.yml user_name={{user_name_3}}
|