mirror of
https://github.com/ansible-collections/community.mysql.git
synced 2025-04-06 10:40:36 -07:00
Merge remote-tracking branch 'origin/main' into password_expiration_mysql_user
This commit is contained in:
commit
d506d833d9
5 changed files with 60 additions and 49 deletions
|
@ -56,8 +56,9 @@
|
||||||
- name: Assert that we run the expected ansible version
|
- name: Assert that we run the expected ansible version
|
||||||
assert:
|
assert:
|
||||||
that:
|
that:
|
||||||
- >
|
- ansible_running_version == test_ansible_version
|
||||||
"{{ ansible_version.major }}.{{ ansible_version.minor }}"
|
vars:
|
||||||
is version(test_ansible_version, '==')
|
ansible_running_version:
|
||||||
|
"{{ ansible_version.major }}.{{ ansible_version.minor }}"
|
||||||
when:
|
when:
|
||||||
- test_ansible_version != 'devel' # Devel will change overtime
|
- test_ansible_version != 'devel' # Devel will change overtime
|
||||||
|
|
|
@ -339,9 +339,7 @@
|
||||||
assert:
|
assert:
|
||||||
that:
|
that:
|
||||||
- result is changed
|
- result is changed
|
||||||
- result.db == db_name_value
|
- result.db == db_name
|
||||||
vars:
|
|
||||||
db_name_value: "{{ db_name }}"
|
|
||||||
|
|
||||||
# - name: Dump and Import | Assert database was backed up successfully
|
# - name: Dump and Import | Assert database was backed up successfully
|
||||||
# command: "file {{ db_file_name }}"
|
# command: "file {{ db_file_name }}"
|
||||||
|
|
|
@ -34,10 +34,14 @@
|
||||||
|
|
||||||
- assert:
|
- assert:
|
||||||
that:
|
that:
|
||||||
- result is changed
|
- result is changed
|
||||||
- result.queries == result_query
|
- result.queries == result_query
|
||||||
vars:
|
vars:
|
||||||
result_query: ["CHANGE MASTER TO MASTER_HOST='{{ mysql_host }}',MASTER_USER='{{ replication_user }}',MASTER_PASSWORD='********',MASTER_PORT={{ mysql_primary_port }},MASTER_LOG_FILE='{{ mysql_primary_status.File }}',MASTER_LOG_POS={{ mysql_primary_status.Position }} FOR CHANNEL '{{ test_channel }}'"]
|
result_query: ["CHANGE MASTER TO MASTER_HOST='{{ mysql_host }}',\
|
||||||
|
MASTER_USER='{{ replication_user }}',MASTER_PASSWORD='********',\
|
||||||
|
MASTER_PORT={{ mysql_primary_port }},MASTER_LOG_FILE=\
|
||||||
|
'{{ mysql_primary_status.File }}',MASTER_LOG_POS=\
|
||||||
|
{{ mysql_primary_status.Position }} FOR CHANNEL '{{ test_channel }}'"]
|
||||||
|
|
||||||
# Test startreplica mode:
|
# Test startreplica mode:
|
||||||
- name: Start replica with channel
|
- name: Start replica with channel
|
||||||
|
@ -50,11 +54,11 @@
|
||||||
|
|
||||||
- assert:
|
- assert:
|
||||||
that:
|
that:
|
||||||
- result is changed
|
- result is changed
|
||||||
- result.queries == result_query or result_query2
|
- result.queries == result_query or result_query2
|
||||||
vars:
|
vars:
|
||||||
result_query: ["START SLAVE FOR CHANNEL '{{ test_channel }}'"]
|
result_query: ["START SLAVE FOR CHANNEL '{{ test_channel }}'"]
|
||||||
result_query2: ["START REPLICA FOR CHANNEL '{{ test_channel }}'"]
|
result_query2: ["START REPLICA FOR CHANNEL '{{ test_channel }}'"]
|
||||||
|
|
||||||
# Test getreplica mode:
|
# Test getreplica mode:
|
||||||
- name: Get standby status with channel
|
- name: Get standby status with channel
|
||||||
|
@ -67,14 +71,18 @@
|
||||||
|
|
||||||
- assert:
|
- assert:
|
||||||
that:
|
that:
|
||||||
- replica_status.Is_Replica == true
|
- replica_status.Is_Replica is truthy(convert_bool=True)
|
||||||
- replica_status.Master_Host == mysql_host_value
|
- replica_status.Master_Host == mysql_host_value
|
||||||
- replica_status.Exec_Master_Log_Pos == mysql_primary_status.Position
|
- replica_status.Exec_Master_Log_Pos == mysql_primary_status.Position
|
||||||
- replica_status.Master_Port == mysql_primary_port_value
|
- replica_status.Master_Port == mysql_primary_port_value
|
||||||
- replica_status.Last_IO_Errno == 0
|
- replica_status.Last_IO_Errno == 0
|
||||||
- replica_status.Last_IO_Error == ''
|
- replica_status.Last_IO_Error == ''
|
||||||
- replica_status.Channel_Name == test_channel_value
|
- replica_status.Channel_Name == test_channel_value
|
||||||
- replica_status is not changed
|
- replica_status is not changed
|
||||||
|
vars:
|
||||||
|
mysql_host_value: '{{ mysql_host }}'
|
||||||
|
mysql_primary_port_value: '{{ mysql_primary_port }}'
|
||||||
|
test_channel_value: '{{ test_channel }}'
|
||||||
when: mysql8022_and_higher == false
|
when: mysql8022_and_higher == false
|
||||||
vars:
|
vars:
|
||||||
mysql_host_value: '{{ mysql_host }}'
|
mysql_host_value: '{{ mysql_host }}'
|
||||||
|
@ -83,14 +91,18 @@
|
||||||
|
|
||||||
- assert:
|
- assert:
|
||||||
that:
|
that:
|
||||||
- replica_status.Is_Replica == true
|
- replica_status.Is_Replica is truthy(convert_bool=True)
|
||||||
- replica_status.Source_Host == mysql_host_value
|
- replica_status.Source_Host == mysql_host_value
|
||||||
- replica_status.Exec_Source_Log_Pos == mysql_primary_status.Position
|
- replica_status.Exec_Source_Log_Pos == mysql_primary_status.Position
|
||||||
- replica_status.Source_Port == mysql_primary_port_value
|
- replica_status.Source_Port == mysql_primary_port_value
|
||||||
- replica_status.Last_IO_Errno == 0
|
- replica_status.Last_IO_Errno == 0
|
||||||
- replica_status.Last_IO_Error == ''
|
- replica_status.Last_IO_Error == ''
|
||||||
- replica_status.Channel_Name == test_channel_value
|
- replica_status.Channel_Name == test_channel_value
|
||||||
- replica_status is not changed
|
- replica_status is not changed
|
||||||
|
vars:
|
||||||
|
mysql_host_value: '{{ mysql_host }}'
|
||||||
|
mysql_primary_port_value: '{{ mysql_primary_port }}'
|
||||||
|
test_channel_value: '{{ test_channel }}'
|
||||||
when: mysql8022_and_higher == true
|
when: mysql8022_and_higher == true
|
||||||
vars:
|
vars:
|
||||||
mysql_host_value: '{{ mysql_host }}'
|
mysql_host_value: '{{ mysql_host }}'
|
||||||
|
@ -109,8 +121,8 @@
|
||||||
|
|
||||||
- assert:
|
- assert:
|
||||||
that:
|
that:
|
||||||
- result is changed
|
- result is changed
|
||||||
- result.queries == result_query or result.queries == result_query2
|
- result.queries == result_query or result.queries == result_query2
|
||||||
vars:
|
vars:
|
||||||
result_query: ["STOP SLAVE FOR CHANNEL '{{ test_channel }}'"]
|
result_query: ["STOP SLAVE FOR CHANNEL '{{ test_channel }}'"]
|
||||||
result_query2: ["STOP REPLICA FOR CHANNEL '{{ test_channel }}'"]
|
result_query2: ["STOP REPLICA FOR CHANNEL '{{ test_channel }}'"]
|
||||||
|
@ -126,8 +138,8 @@
|
||||||
|
|
||||||
- assert:
|
- assert:
|
||||||
that:
|
that:
|
||||||
- result is changed
|
- result is changed
|
||||||
- result.queries == result_query or result.queries == result_query2
|
- result.queries == result_query or result.queries == result_query2
|
||||||
vars:
|
vars:
|
||||||
result_query: ["RESET SLAVE FOR CHANNEL '{{ test_channel }}'"]
|
result_query: ["RESET SLAVE FOR CHANNEL '{{ test_channel }}'"]
|
||||||
result_query2: ["RESET REPLICA FOR CHANNEL '{{ test_channel }}'"]
|
result_query2: ["RESET REPLICA FOR CHANNEL '{{ test_channel }}'"]
|
||||||
|
@ -143,8 +155,8 @@
|
||||||
|
|
||||||
- assert:
|
- assert:
|
||||||
that:
|
that:
|
||||||
- result is changed
|
- result is changed
|
||||||
- result.queries == result_query or result.queries == result_query2
|
- result.queries == result_query or result.queries == result_query2
|
||||||
vars:
|
vars:
|
||||||
result_query: ["RESET SLAVE ALL FOR CHANNEL '{{ test_channel }}'"]
|
result_query: ["RESET SLAVE ALL FOR CHANNEL '{{ test_channel }}'"]
|
||||||
result_query2: ["RESET REPLICA ALL FOR CHANNEL '{{ test_channel }}'"]
|
result_query2: ["RESET REPLICA ALL FOR CHANNEL '{{ test_channel }}'"]
|
||||||
|
|
|
@ -158,9 +158,13 @@
|
||||||
assert:
|
assert:
|
||||||
that:
|
that:
|
||||||
- result is changed
|
- result is changed
|
||||||
- result.queries == result_query
|
- result.queries == expected_queries
|
||||||
vars:
|
vars:
|
||||||
result_query: ["CHANGE MASTER TO MASTER_HOST='{{ mysql_host }}',MASTER_USER='{{ replication_user }}',MASTER_PASSWORD='********',MASTER_PORT={{ mysql_primary_port }},MASTER_LOG_FILE='{{ mysql_primary_status.File }}',MASTER_LOG_POS={{ mysql_primary_status.Position }},MASTER_SSL=0,MASTER_SSL_CA=''"]
|
expected_queries: ["CHANGE MASTER TO MASTER_HOST='{{ mysql_host }}',\
|
||||||
|
MASTER_USER='{{ replication_user }}',MASTER_PASSWORD='********',\
|
||||||
|
MASTER_PORT={{ mysql_primary_port }},MASTER_LOG_FILE=\
|
||||||
|
'{{ mysql_primary_status.File }}',MASTER_LOG_POS=\
|
||||||
|
{{ mysql_primary_status.Position }},MASTER_SSL=0,MASTER_SSL_CA=''"]
|
||||||
|
|
||||||
# Test startreplica mode:
|
# Test startreplica mode:
|
||||||
- name: Start replica
|
- name: Start replica
|
||||||
|
@ -187,32 +191,32 @@
|
||||||
- name: Assert that getreplica returns expected values for MySQL older than 8.0.22 and Mariadb
|
- name: Assert that getreplica returns expected values for MySQL older than 8.0.22 and Mariadb
|
||||||
assert:
|
assert:
|
||||||
that:
|
that:
|
||||||
- replica_status.Is_Replica == true
|
- replica_status.Is_Replica is truthy(convert_bool=True)
|
||||||
- replica_status.Master_Host == mysql_host_value
|
- replica_status.Master_Host == mysql_host_value
|
||||||
- replica_status.Exec_Master_Log_Pos == mysql_primary_status.Position
|
- replica_status.Exec_Master_Log_Pos == mysql_primary_status.Position
|
||||||
- replica_status.Master_Port == mysql_primary_port_value
|
- replica_status.Master_Port == mysql_primary_port_value
|
||||||
- replica_status.Last_IO_Errno == 0
|
- replica_status.Last_IO_Errno == 0
|
||||||
- replica_status.Last_IO_Error == ''
|
- replica_status.Last_IO_Error == ''
|
||||||
- replica_status is not changed
|
- replica_status is not changed
|
||||||
when: mysql8022_and_higher == false
|
|
||||||
vars:
|
vars:
|
||||||
mysql_host_value: "{{ mysql_host }}"
|
mysql_host_value: "{{ mysql_host }}"
|
||||||
mysql_primary_port_value: "{{ mysql_primary_port }}"
|
mysql_primary_port_value: "{{ mysql_primary_port }}"
|
||||||
|
when: mysql8022_and_higher is falsy(convert_bool=True)
|
||||||
|
|
||||||
- name: Assert that getreplica returns expected values for MySQL newer than 8.0.22
|
- name: Assert that getreplica returns expected values for MySQL newer than 8.0.22
|
||||||
assert:
|
assert:
|
||||||
that:
|
that:
|
||||||
- replica_status.Is_Replica == true
|
- replica_status.Is_Replica is truthy(convert_bool=True)
|
||||||
- replica_status.Source_Host == mysql_host_value
|
- replica_status.Source_Host == mysql_host_value
|
||||||
- replica_status.Exec_Source_Log_Pos == mysql_primary_status.Position
|
- replica_status.Exec_Source_Log_Pos == mysql_primary_status.Position
|
||||||
- replica_status.Source_Port == mysql_primary_port_value
|
- replica_status.Source_Port == mysql_primary_port_value
|
||||||
- replica_status.Last_IO_Errno == 0
|
- replica_status.Last_IO_Errno == 0
|
||||||
- replica_status.Last_IO_Error == ''
|
- replica_status.Last_IO_Error == ''
|
||||||
- replica_status is not changed
|
- replica_status is not changed
|
||||||
when: mysql8022_and_higher == true
|
|
||||||
vars:
|
vars:
|
||||||
mysql_host_value: "{{ mysql_host }}"
|
mysql_host_value: "{{ mysql_host }}"
|
||||||
mysql_primary_port_value: "{{ mysql_primary_port }}"
|
mysql_primary_port_value: "{{ mysql_primary_port }}"
|
||||||
|
when: mysql8022_and_higher is truthy(convert_bool=True)
|
||||||
|
|
||||||
# Create test table and add data to it:
|
# Create test table and add data to it:
|
||||||
- name: Create test table
|
- name: Create test table
|
||||||
|
|
|
@ -119,10 +119,8 @@
|
||||||
- name: Assert grant access for user1 on multiple database
|
- name: Assert grant access for user1 on multiple database
|
||||||
assert:
|
assert:
|
||||||
that:
|
that:
|
||||||
- db_name in result.stdout
|
- item in result.stdout
|
||||||
with_items: "{{ db_names }}"
|
loop: "{{ db_names }}"
|
||||||
vars:
|
|
||||||
db_name: "{{ item }}"
|
|
||||||
|
|
||||||
- name: Show grants access for user2 on multiple database
|
- name: Show grants access for user2 on multiple database
|
||||||
command: "{{ mysql_command }} -e \"SHOW GRANTS FOR '{{ user_name_2 }}'@'localhost'\""
|
command: "{{ mysql_command }} -e \"SHOW GRANTS FOR '{{ user_name_2 }}'@'localhost'\""
|
||||||
|
@ -131,10 +129,8 @@
|
||||||
- name: Assert grant access for user2 on multiple database
|
- name: Assert grant access for user2 on multiple database
|
||||||
assert:
|
assert:
|
||||||
that:
|
that:
|
||||||
- db_name in result.stdout
|
- item in result.stdout
|
||||||
with_items: "{{db_names}}"
|
loop: "{{db_names}}"
|
||||||
vars:
|
|
||||||
db_name: "{{ item }}"
|
|
||||||
|
|
||||||
- include_tasks: utils/remove_user.yml
|
- include_tasks: utils/remove_user.yml
|
||||||
vars:
|
vars:
|
||||||
|
|
Loading…
Add table
Reference in a new issue