summaryrefslogtreecommitdiff
path: root/test/integration/targets/junos_netconf/tests/cli/netconf.yaml
blob: 92c0a4f430a967edb5942df4f07cb1e97fc48a55 (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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
---
- debug: msg="START netconf/netconf.yaml"


- name: Ensure netconf is enabled
  junos_netconf:
    state: present
  register: result

- name: idempotent tests
  junos_netconf:
    state: present
  register: result

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

###################################

- name: Ensure we can communicate over netconf
  junos_command:
    rpcs: get-software-information
    provider: "{{ netconf }}"

# Disable netconf

- name: Disable netconf
  junos_netconf:
    state: absent
  register: result

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

- name: idempotent tests
  junos_netconf:
    state: absent
  register: result

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

- name: wait for persistent socket to timeout
  pause:
    seconds: 150

- name: Ensure we can NOT talk via netconf
  junos_command:
    rpcs: get-software-information
    provider: "{{ netconf }}"
  register: result
  ignore_errors: true

- assert:
    that:
      - "result.failed == true"
      - "'unable to open shell' in result.msg"

- name: re-enable netconf
  junos_netconf:
    state: present
  register: result


- debug: msg="END netconf/netconfg.yaml"