mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-10-03 23:14:02 -07:00
parent
bc99432f89
commit
eaa5e07b28
247 changed files with 7318 additions and 7375 deletions
|
@ -6,28 +6,28 @@
|
|||
- hosts: localhost
|
||||
gather_facts: false
|
||||
tasks:
|
||||
- name: Call random_words plugin
|
||||
set_fact:
|
||||
result1: "{{ query('community.general.random_words') }}"
|
||||
result2: "{{ query('community.general.random_words', min_length=5, max_length=5) }}"
|
||||
result3: "{{ query('community.general.random_words', delimiter='!') }}"
|
||||
result4: "{{ query('community.general.random_words', numwords=3, delimiter='-', case='capitalize') }}"
|
||||
result5: "{{ query('community.general.random_words', min_length=5, max_length=5, numwords=3, delimiter='') }}"
|
||||
- name: Call random_words plugin
|
||||
set_fact:
|
||||
result1: "{{ query('community.general.random_words') }}"
|
||||
result2: "{{ query('community.general.random_words', min_length=5, max_length=5) }}"
|
||||
result3: "{{ query('community.general.random_words', delimiter='!') }}"
|
||||
result4: "{{ query('community.general.random_words', numwords=3, delimiter='-', case='capitalize') }}"
|
||||
result5: "{{ query('community.general.random_words', min_length=5, max_length=5, numwords=3, delimiter='') }}"
|
||||
|
||||
- name: Check results
|
||||
assert:
|
||||
that:
|
||||
- result1 | length == 1
|
||||
- result1[0] | length >= 35
|
||||
- result2 | length == 1
|
||||
- result2[0] | length == 35
|
||||
- result3 | length == 1
|
||||
- result3[0].count("!") == 5
|
||||
- result4 | length == 1
|
||||
- result4[0] | length >= 17
|
||||
- result4[0] | length <= 29
|
||||
- result4[0] | regex_findall("[A-Z]") | length == 3
|
||||
# If one of the random words is 't-shirt', there are more than 2 dashes...
|
||||
- result4[0].count("-") == 2 or "t-shirt" in result4[0].lower()
|
||||
- result5 | length == 1
|
||||
- result5[0] | length == 15
|
||||
- name: Check results
|
||||
assert:
|
||||
that:
|
||||
- result1 | length == 1
|
||||
- result1[0] | length >= 35
|
||||
- result2 | length == 1
|
||||
- result2[0] | length == 35
|
||||
- result3 | length == 1
|
||||
- result3[0].count("!") == 5
|
||||
- result4 | length == 1
|
||||
- result4[0] | length >= 17
|
||||
- result4[0] | length <= 29
|
||||
- result4[0] | regex_findall("[A-Z]") | length == 3
|
||||
# If one of the random words is 't-shirt', there are more than 2 dashes...
|
||||
- result4[0].count("-") == 2 or "t-shirt" in result4[0].lower()
|
||||
- result5 | length == 1
|
||||
- result5[0] | length == 15
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue