mirror of
https://github.com/ansible-collections/community.mysql.git
synced 2025-08-27 16:31:47 -07:00
Refactor filtering of tasks using connector's vars sets during setup
This commit is contained in:
parent
369c0bcb53
commit
4a87771a77
11 changed files with 54 additions and 45 deletions
|
@ -11,27 +11,40 @@
|
||||||
- name: Add fake port to config file
|
- name: Add fake port to config file
|
||||||
shell: 'echo "port = {{ fake_port }}" >> {{ config_file }}'
|
shell: 'echo "port = {{ fake_port }}" >> {{ config_file }}'
|
||||||
|
|
||||||
- name: Get pymysql version
|
|
||||||
shell: pip show pymysql | awk '/Version/ {print $2}'
|
|
||||||
register: pymysql_version
|
|
||||||
|
|
||||||
- name: Add blank line
|
- name: Add blank line
|
||||||
shell: 'echo "" >> {{ config_file }}'
|
shell: 'echo "" >> {{ config_file }}'
|
||||||
when: (pymysql_version.stdout | default('1000', true)) is version('0.9.3', '>=')
|
when:
|
||||||
|
- >
|
||||||
|
connector_name is not search('pymysql')
|
||||||
|
or (
|
||||||
|
connector_name is search('pymysql')
|
||||||
|
and connector_ver is version('0.9.3', '>=')
|
||||||
|
)
|
||||||
- name: Create include_dir
|
- name: Create include_dir
|
||||||
file:
|
file:
|
||||||
path: '{{ include_dir }}'
|
path: '{{ include_dir }}'
|
||||||
state: directory
|
state: directory
|
||||||
mode: '0777'
|
mode: '0777'
|
||||||
when: (pymysql_version.stdout | default('1000', true)) is version('0.9.3', '>=')
|
when:
|
||||||
|
- >
|
||||||
|
connector_name is not search('pymysql')
|
||||||
|
or (
|
||||||
|
connector_name is search('pymysql')
|
||||||
|
and connector_ver is version('0.9.3', '>=')
|
||||||
|
)
|
||||||
|
|
||||||
- name: Add include_dir
|
- name: Add include_dir
|
||||||
lineinfile:
|
lineinfile:
|
||||||
path: '{{ config_file }}'
|
path: '{{ config_file }}'
|
||||||
line: '!includedir {{ include_dir }}'
|
line: '!includedir {{ include_dir }}'
|
||||||
insertafter: EOF
|
insertafter: EOF
|
||||||
when: (pymysql_version.stdout | default('1000', true)) is version('0.9.3', '>=')
|
when:
|
||||||
|
- >
|
||||||
|
connector_name is not search('pymysql')
|
||||||
|
or (
|
||||||
|
connector_name is search('pymysql')
|
||||||
|
and connector_ver is version('0.9.3', '>=')
|
||||||
|
)
|
||||||
|
|
||||||
- name: Create database using fake port to connect to, must fail
|
- name: Create database using fake port to connect to, must fail
|
||||||
mysql_db:
|
mysql_db:
|
||||||
|
|
|
@ -9,8 +9,6 @@
|
||||||
block:
|
block:
|
||||||
|
|
||||||
# ============================================================
|
# ============================================================
|
||||||
- shell: pip show pymysql | awk '/Version/ {print $2}'
|
|
||||||
register: pymysql_version
|
|
||||||
|
|
||||||
- name: get server certificate
|
- name: get server certificate
|
||||||
copy:
|
copy:
|
||||||
|
@ -49,12 +47,12 @@
|
||||||
- assert:
|
- assert:
|
||||||
that:
|
that:
|
||||||
- result is failed
|
- result is failed
|
||||||
when: pymysql_version.stdout != ""
|
when: connector_name is search('pymysql')
|
||||||
|
|
||||||
- assert:
|
- assert:
|
||||||
that:
|
that:
|
||||||
- result is succeeded
|
- result is succeeded
|
||||||
when: pymysql_version.stdout == ""
|
when: connector_name is not search('pymysql')
|
||||||
|
|
||||||
- name: attempt connection with newly created user ignoring hostname
|
- name: attempt connection with newly created user ignoring hostname
|
||||||
mysql_db:
|
mysql_db:
|
||||||
|
|
|
@ -9,8 +9,6 @@
|
||||||
block:
|
block:
|
||||||
|
|
||||||
# ============================================================
|
# ============================================================
|
||||||
- shell: pip show pymysql | awk '/Version/ {print $2}'
|
|
||||||
register: pymysql_version
|
|
||||||
|
|
||||||
- name: get server certificate
|
- name: get server certificate
|
||||||
copy:
|
copy:
|
||||||
|
@ -47,12 +45,12 @@
|
||||||
- assert:
|
- assert:
|
||||||
that:
|
that:
|
||||||
- result is failed
|
- result is failed
|
||||||
when: pymysql_version.stdout != ""
|
when: connector_name is search('pymysql')
|
||||||
|
|
||||||
- assert:
|
- assert:
|
||||||
that:
|
that:
|
||||||
- result is succeeded
|
- result is succeeded
|
||||||
when: pymysql_version.stdout == ""
|
when: connector_name is not search('pymysql')
|
||||||
|
|
||||||
- name: attempt connection with newly created user ignoring hostname
|
- name: attempt connection with newly created user ignoring hostname
|
||||||
mysql_info:
|
mysql_info:
|
||||||
|
|
|
@ -9,8 +9,6 @@
|
||||||
block:
|
block:
|
||||||
|
|
||||||
# ============================================================
|
# ============================================================
|
||||||
- shell: pip show pymysql | awk '/Version/ {print $2}'
|
|
||||||
register: pymysql_version
|
|
||||||
|
|
||||||
- name: get server certificate
|
- name: get server certificate
|
||||||
copy:
|
copy:
|
||||||
|
@ -47,12 +45,12 @@
|
||||||
- assert:
|
- assert:
|
||||||
that:
|
that:
|
||||||
- result is failed
|
- result is failed
|
||||||
when: pymysql_version.stdout != ""
|
when: connector_name is search('pymysql')
|
||||||
|
|
||||||
- assert:
|
- assert:
|
||||||
that:
|
that:
|
||||||
- result is succeeded
|
- result is succeeded
|
||||||
when: pymysql_version.stdout == ""
|
when: connector_name is not search('pymysql')
|
||||||
|
|
||||||
- name: attempt connection with newly created user ignoring hostname
|
- name: attempt connection with newly created user ignoring hostname
|
||||||
mysql_query:
|
mysql_query:
|
||||||
|
|
|
@ -9,8 +9,6 @@
|
||||||
block:
|
block:
|
||||||
|
|
||||||
# ============================================================
|
# ============================================================
|
||||||
- shell: pip show pymysql | awk '/Version/ {print $2}'
|
|
||||||
register: pymysql_version
|
|
||||||
|
|
||||||
- name: get server certificate
|
- name: get server certificate
|
||||||
copy:
|
copy:
|
||||||
|
@ -48,12 +46,12 @@
|
||||||
- assert:
|
- assert:
|
||||||
that:
|
that:
|
||||||
- result is failed
|
- result is failed
|
||||||
when: pymysql_version.stdout != ""
|
when: connector_name is search('pymysql')
|
||||||
|
|
||||||
- assert:
|
- assert:
|
||||||
that:
|
that:
|
||||||
- result is succeeded
|
- result is succeeded
|
||||||
when: pymysql_version.stdout == ""
|
when: connector_name is not search('pymysql')
|
||||||
|
|
||||||
- name: attempt connection with newly created user ignoring hostname
|
- name: attempt connection with newly created user ignoring hostname
|
||||||
mysql_replication:
|
mysql_replication:
|
||||||
|
|
|
@ -199,9 +199,6 @@
|
||||||
- replica_status.Exec_Source_Log_Pos != mysql_primary_status.Position
|
- replica_status.Exec_Source_Log_Pos != mysql_primary_status.Position
|
||||||
when: mysql8022_and_higher == true
|
when: mysql8022_and_higher == true
|
||||||
|
|
||||||
- shell: pip show pymysql | awk '/Version/ {print $2}'
|
|
||||||
register: pymysql_version
|
|
||||||
|
|
||||||
- name: Start replica that is already running
|
- name: Start replica that is already running
|
||||||
mysql_replication:
|
mysql_replication:
|
||||||
<<: *mysql_params
|
<<: *mysql_params
|
||||||
|
@ -213,7 +210,13 @@
|
||||||
- assert:
|
- assert:
|
||||||
that:
|
that:
|
||||||
- result is not changed
|
- result is not changed
|
||||||
when: (pymysql_version.stdout | default('1000', true)) is version('0.9.3', '<=')
|
when:
|
||||||
|
- >
|
||||||
|
connector_name is not search('pymysql')
|
||||||
|
or (
|
||||||
|
connector_name is search('pymysql')
|
||||||
|
and connector_ver is version('0.9.3', '<=')
|
||||||
|
)
|
||||||
|
|
||||||
# Test stopreplica mode:
|
# Test stopreplica mode:
|
||||||
- name: Stop replica using deprecated stopslave choice
|
- name: Stop replica using deprecated stopslave choice
|
||||||
|
@ -240,4 +243,10 @@
|
||||||
- assert:
|
- assert:
|
||||||
that:
|
that:
|
||||||
- result is not changed
|
- result is not changed
|
||||||
when: (pymysql_version.stdout | default('1000', true)) is version('0.9.3', '<=')
|
when:
|
||||||
|
- >
|
||||||
|
connector_name is not search('pymysql')
|
||||||
|
or (
|
||||||
|
connector_name is search('pymysql')
|
||||||
|
and connector_ver is version('0.9.3', '<=')
|
||||||
|
)
|
||||||
|
|
|
@ -9,8 +9,6 @@
|
||||||
block:
|
block:
|
||||||
|
|
||||||
# ============================================================
|
# ============================================================
|
||||||
- shell: pip show pymysql | awk '/Version/ {print $2}'
|
|
||||||
register: pymysql_version
|
|
||||||
|
|
||||||
- name: get server certificate
|
- name: get server certificate
|
||||||
copy:
|
copy:
|
||||||
|
|
|
@ -9,8 +9,6 @@
|
||||||
block:
|
block:
|
||||||
|
|
||||||
# ============================================================
|
# ============================================================
|
||||||
- shell: pip show pymysql | awk '/Version/ {print $2}'
|
|
||||||
register: pymysql_version
|
|
||||||
|
|
||||||
- name: get server certificate
|
- name: get server certificate
|
||||||
copy:
|
copy:
|
||||||
|
@ -50,12 +48,12 @@
|
||||||
- assert:
|
- assert:
|
||||||
that:
|
that:
|
||||||
- result is failed
|
- result is failed
|
||||||
when: pymysql_version.stdout != ""
|
when: connector_name is search('pymysql')
|
||||||
|
|
||||||
- assert:
|
- assert:
|
||||||
that:
|
that:
|
||||||
- result is succeeded
|
- result is succeeded
|
||||||
when: pymysql_version.stdout == ""
|
when: connector_name is not search('pymysql')
|
||||||
|
|
||||||
- name: attempt connection with newly created user ignoring hostname
|
- name: attempt connection with newly created user ignoring hostname
|
||||||
mysql_user:
|
mysql_user:
|
||||||
|
|
|
@ -334,12 +334,15 @@
|
||||||
# plugins that are loaded by default are sha2*, but these aren't compatible with pymysql < 0.9, so skip these tests
|
# plugins that are loaded by default are sha2*, but these aren't compatible with pymysql < 0.9, so skip these tests
|
||||||
# for those versions.
|
# for those versions.
|
||||||
#
|
#
|
||||||
- name: Get pymysql version
|
|
||||||
shell: pip show pymysql | awk '/Version/ {print $2}'
|
|
||||||
register: pymysql_version
|
|
||||||
|
|
||||||
- name: Test plugin auth switching which doesn't work on pymysql < 0.9
|
- name: Test plugin auth switching which doesn't work on pymysql < 0.9
|
||||||
when: pymysql_version.stdout == "" or (pymysql_version.stdout != "" and pymysql_version.stdout is version('0.9', '>='))
|
when:
|
||||||
|
- >
|
||||||
|
connector_name is not search('pymysql')
|
||||||
|
or (
|
||||||
|
connector_name is search('pymysql')
|
||||||
|
and connector_ver is version('0.9', '>=')
|
||||||
|
)
|
||||||
block:
|
block:
|
||||||
|
|
||||||
- name: Create user with plugin auth (empty auth string)
|
- name: Create user with plugin auth (empty auth string)
|
||||||
|
|
|
@ -9,8 +9,6 @@
|
||||||
block:
|
block:
|
||||||
|
|
||||||
# ============================================================
|
# ============================================================
|
||||||
- shell: pip show pymysql | awk '/Version/ {print $2}'
|
|
||||||
register: pymysql_version
|
|
||||||
|
|
||||||
- name: get server certificate
|
- name: get server certificate
|
||||||
copy:
|
copy:
|
||||||
|
|
|
@ -151,8 +151,6 @@
|
||||||
# ============================================================
|
# ============================================================
|
||||||
# Verify mysql_variable fails when setting an incorrect value (out of range)
|
# Verify mysql_variable fails when setting an incorrect value (out of range)
|
||||||
#
|
#
|
||||||
- shell: pip show pymysql | awk '/Version/ {print $2}'
|
|
||||||
register: pymysql_version
|
|
||||||
|
|
||||||
- name: set mysql variable value to a number out of range
|
- name: set mysql variable value to a number out of range
|
||||||
mysql_variables:
|
mysql_variables:
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue