mirror of https://github.com/ansible/ansible.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
67 lines
2.5 KiB
YAML
67 lines
2.5 KiB
YAML
8 years ago
|
---
|
||
|
- debug: msg="START cli/sublevel_exact.yaml"
|
||
|
|
||
|
- name: setup
|
||
|
dellos9_config:
|
||
|
lines:
|
||
|
- seq 5 permit ip host 1.1.1.1 any log threshold-in-msgs 10 interval 5
|
||
|
- seq 10 permit ip host 2.2.2.2 any log threshold-in-msgs 10 interval 5
|
||
|
- seq 15 permit ip host 3.3.3.3 any log threshold-in-msgs 10 interval 5
|
||
|
- seq 20 permit ip host 4.4.4.4 any log threshold-in-msgs 10 interval 5
|
||
|
- seq 25 permit ip host 5.5.5.5 any log threshold-in-msgs 10 interval 5
|
||
|
parents: ['ip access-list extended test']
|
||
|
before: ['no ip access-list extended test']
|
||
|
after: ['exit']
|
||
|
provider: "{{ cli }}"
|
||
|
match: none
|
||
|
|
||
|
- name: configure sub level command using exact match
|
||
|
dellos9_config:
|
||
|
lines:
|
||
|
- seq 5 permit ip host 1.1.1.1 any log threshold-in-msgs 10 interval 5
|
||
|
- seq 10 permit ip host 2.2.2.2 any log threshold-in-msgs 10 interval 5
|
||
|
- seq 15 permit ip host 3.3.3.3 any log threshold-in-msgs 10 interval 5
|
||
|
- seq 20 permit ip host 4.4.4.4 any log threshold-in-msgs 10 interval 5
|
||
|
parents: ['ip access-list extended test']
|
||
|
after: ['exit']
|
||
|
match: exact
|
||
|
provider: "{{ cli }}"
|
||
|
register: result
|
||
|
|
||
|
- assert:
|
||
|
that:
|
||
|
- "result.changed == true"
|
||
|
- "'ip access-list extended test' in result.updates"
|
||
|
- "'seq 5 permit ip host 1.1.1.1 any log threshold-in-msgs 10 interval 5' in result.updates"
|
||
|
- "'seq 10 permit ip host 2.2.2.2 any log threshold-in-msgs 10 interval 5' in result.updates"
|
||
|
- "'seq 15 permit ip host 3.3.3.3 any log threshold-in-msgs 10 interval 5' in result.updates"
|
||
|
- "'seq 20 permit ip host 4.4.4.4 any log threshold-in-msgs 10 interval 5' in result.updates"
|
||
|
- "'seq 25 permit ip host 5.5.5.5 any log threshold-in-msgs 10 interval 5' not in result.updates"
|
||
|
|
||
|
- name: check sub level command using exact match
|
||
|
dellos9_config:
|
||
|
lines:
|
||
|
- seq 5 permit ip host 1.1.1.1 any log threshold-in-msgs 10 interval 5
|
||
|
- seq 10 permit ip host 2.2.2.2 any log threshold-in-msgs 10 interval 5
|
||
|
- seq 15 permit ip host 3.3.3.3 any log threshold-in-msgs 10 interval 5
|
||
|
- seq 20 permit ip host 4.4.4.4 any log threshold-in-msgs 10 interval 5
|
||
|
- seq 25 permit ip host 5.5.5.5 any log threshold-in-msgs 10 interval 5
|
||
|
parents: ['ip access-list extended test']
|
||
|
after: ['exit']
|
||
|
match: exact
|
||
|
provider: "{{ cli }}"
|
||
|
register: result
|
||
|
|
||
|
- assert:
|
||
|
that:
|
||
|
- "result.changed == false"
|
||
|
|
||
|
- name: teardown
|
||
|
dellos9_config:
|
||
|
lines:
|
||
|
- no ip access-list extended test
|
||
|
provider: "{{ cli }}"
|
||
|
match: none
|
||
|
|
||
|
- debug: msg="END cli/sublevel_exact.yaml"
|