summaryrefslogtreecommitdiff
path: root/test/integration/targets/asa_command/tests/cli/contains.yaml
blob: c08d89c2736aeca2ca9e9da1d34c1af4a8783789 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
---
- debug: msg="START cli/contains.yaml"

- name: test contains operator
  asa_command:
    commands:
      - show version
      - show interface
    wait_for:
      - "result[0] contains 'Cisco Adaptive Security Appliance Software Version'"
      - "result[1] contains 'Hardware'"
    provider: "{{ cli }}"
  register: result

- assert:
    that:
      - "result.changed == false"
      - "result.stdout is defined"

- debug: msg="END cli/contains.yaml"