mirror of
https://github.com/ansible-collections/community.mysql.git
synced 2025-08-28 00:41:46 -07:00
Add changes from stable-1 integrations tests (PR 418)
This commit is contained in:
parent
97318559e5
commit
aa7818f922
12 changed files with 47 additions and 24 deletions
|
@ -53,12 +53,12 @@
|
|||
- assert:
|
||||
that:
|
||||
- result is failed
|
||||
when: connector.name.0 is search('pymysql')
|
||||
when: connector_name is search('pymysql')
|
||||
|
||||
- assert:
|
||||
that:
|
||||
- result is succeeded
|
||||
when: connector.name.0 is not search('pymysql')
|
||||
when: connector_name is not search('pymysql')
|
||||
|
||||
- name: attempt connection with newly created user ignoring hostname
|
||||
mysql_user:
|
||||
|
|
|
@ -361,7 +361,13 @@
|
|||
register: pymysql_version
|
||||
|
||||
- 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:
|
||||
|
||||
- name: Create user with plugin auth (empty auth string)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue