dc37b41b72
* [2.5] Update ios tests (#42509) * 192.168.0.1/24 conflicts with management IP * Images don't have the hostnames we expect (cherry picked from commit399d13d
) Co-authored-by: Nathaniel Case <this.is@nathanielca.se> * ios test cleanup pt 2 (#42570) * Remove local from ios_config to avoid needing to add provider * ios_smoke should test all with local to pick up the slack (cherry picked from commit381263ad99
)
58 lines
1.6 KiB
YAML
58 lines
1.6 KiB
YAML
---
|
|
- debug: msg="START cli/sublevel_block.yaml on connection={{ ansible_connection }}"
|
|
|
|
- name: setup
|
|
ios_config:
|
|
lines:
|
|
- permit ip host 1.1.1.1 any log
|
|
- permit ip host 2.2.2.2 any log
|
|
- permit ip host 3.3.3.3 any log
|
|
parents: ['ip access-list extended test']
|
|
before: ['no ip access-list extended test']
|
|
after: ['exit']
|
|
match: none
|
|
|
|
- name: configure sub level command using block resplace
|
|
ios_config:
|
|
lines:
|
|
- permit ip host 1.1.1.1 any log
|
|
- permit ip host 2.2.2.2 any log
|
|
- permit ip host 3.3.3.3 any log
|
|
- permit ip host 4.4.4.4 any log
|
|
parents: ['ip access-list extended test']
|
|
replace: block
|
|
after: ['exit']
|
|
register: result
|
|
|
|
- assert:
|
|
that:
|
|
- "result.changed == true"
|
|
- "'ip access-list extended test' in result.updates"
|
|
- "'permit ip host 1.1.1.1 any log' in result.updates"
|
|
- "'permit ip host 2.2.2.2 any log' in result.updates"
|
|
- "'permit ip host 3.3.3.3 any log' in result.updates"
|
|
- "'permit ip host 4.4.4.4 any log' in result.updates"
|
|
|
|
- name: check sub level command using block replace
|
|
ios_config:
|
|
lines:
|
|
- permit ip host 1.1.1.1 any log
|
|
- permit ip host 2.2.2.2 any log
|
|
- permit ip host 3.3.3.3 any log
|
|
- permit ip host 4.4.4.4 any log
|
|
parents: ['ip access-list extended test']
|
|
replace: block
|
|
after: ['exit']
|
|
register: result
|
|
|
|
- assert:
|
|
that:
|
|
- "result.changed == false"
|
|
|
|
- name: teardown
|
|
ios_config:
|
|
lines:
|
|
- no ip access-list extended test
|
|
match: none
|
|
|
|
- debug: msg="END cli/sublevel_block.yaml on connection={{ ansible_connection }}"
|