summaryrefslogtreecommitdiff
path: root/test/integration/targets/iosxr_acls/tests/cli/parsed.yaml
blob: 5e6b4609fa98a83397afd87eacdced6bfdcde0b1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
---
- debug:
      msg: "START iosxr_acls parsed integration tests on connection={{ ansible_connection }}"

- name: Parse externally provided ACL config to agnostic model
  iosxr_acls:
    running_config: "{{ lookup('file', './fixtures/parsed.cfg') }}"
    state: parsed
  register: result

- name: Assert that config was correctly parsed
  assert:
    that:
      - "{{ parsed | symmetric_difference(result['parsed']) |length == 0 }}"