summaryrefslogtreecommitdiff
path: root/test/integration/targets/vyos_config/tests/cli_config/cli_comment.yaml
blob: 163f05ee417d3499eb57d074da3556d9713e02ab (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
---
- debug: msg="START cli_config/cli_comment.yaml on connection={{ ansible_connection }}"

- name: setup
  cli_config: &rm
    config: set system host-name {{ inventory_hostname_short }}

- name: configure using comment
  cli_config:
    config: set system host-name foo
    commit_comment: this is a test
  register: result

- assert:
    that:
      - "result.changed == true"

- name: collect system commits
  vyos_command:
    commands: show system commit
  register: result

- assert:
    that:
      - "'this is a test' in result.stdout_lines[0][1]"

- name: teardown
  cli_config: *rm

- debug: msg="END cli_config/cli_comment.yaml on connection={{ ansible_connection }}"