summaryrefslogtreecommitdiff
path: root/test/integration/targets/nxos_bgp/tests/common/isolate.yaml
blob: dce603057a397d5dd2ce647b861052178d5bdd4f (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
69
70
71
72
73
74
75
76
77
78
---
- debug: msg="START connection={{ ansible_connection }} nxos_bgp parameter test"
- debug: msg="Using provider={{ connection.transport }}"
  when: ansible_connection == "local"


- debug: msg="This bgp_isolate is not supported on {{ image_version }}"
  when: imagetag is search("A8")
- set_fact: bgp_isolate="false"
- set_fact: bgp_isolate="true"
  when: imagetag is not search("A8")

- name: "Disable feature BGP"
  nxos_feature:
    feature: bgp
    state: disabled
  ignore_errors: yes

- name: "Enable feature BGP"
  nxos_feature:
    feature: bgp
    state: enabled
  ignore_errors: yes

- block:
  # these tasks will fail on n3k running A8
  # due to no support
  - name: "set isolate"
    nxos_bgp: &set1
      asn: 65535
      isolate: false
    register: result
    when: bgp_isolate

  - assert: &true
      that:
        - "result.changed == true"
    when: bgp_isolate

  - name: "Check Idempotence"
    nxos_bgp: *set1
    register: result
    when: bgp_isolate

  - assert: &false
      that:
        - "result.changed == false"
    when: bgp_isolate

  - name: "reset isolate"
    nxos_bgp: &reset1
      asn: 65535
      isolate: true
    register: result
    when: bgp_isolate

  - assert: *true
    when: bgp_isolate

  - name: "Check Idempotence"
    nxos_bgp: *reset1
    register: result
    when: bgp_isolate

  - assert: *false
    when: bgp_isolate

  rescue:
  - debug: msg="Tests can fail on A8 images"

  always:
  - name: "Disable feature bgp"
    nxos_feature:
      feature: bgp
      state: disabled
    ignore_errors: yes

  - debug: msg="END connection={{ ansible_connection }} nxos_bgp parameter test"