summaryrefslogtreecommitdiffstats
path: root/test/integration/targets/eos_l3_interface
diff options
context:
space:
mode:
authorGanesh Nalawade <ganesh634@gmail.com>2018-01-06 10:13:27 +0100
committerGitHub <noreply@github.com>2018-01-06 10:13:27 +0100
commit8e1671f3c5fee887d1056962fc86d2abc94524c9 (patch)
tree9bff6a3c24ca965ec0959dc22a2a5d40e1964f8d /test/integration/targets/eos_l3_interface
parentAdd fedora27py3 Dockerfile. (diff)
downloadansible-8e1671f3c5fee887d1056962fc86d2abc94524c9.tar.xz
ansible-8e1671f3c5fee887d1056962fc86d2abc94524c9.zip
Fix eos_l3_integration test failures (#34538)
Diffstat (limited to 'test/integration/targets/eos_l3_interface')
-rw-r--r--test/integration/targets/eos_l3_interface/tests/cli/basic.yaml30
1 files changed, 15 insertions, 15 deletions
diff --git a/test/integration/targets/eos_l3_interface/tests/cli/basic.yaml b/test/integration/targets/eos_l3_interface/tests/cli/basic.yaml
index 0756bd3cbc..3b700ea5a2 100644
--- a/test/integration/targets/eos_l3_interface/tests/cli/basic.yaml
+++ b/test/integration/targets/eos_l3_interface/tests/cli/basic.yaml
@@ -18,7 +18,7 @@
- name: Configure interface ipv4 address
eos_l3_interface:
name: "{{ test_interface_1 }}"
- ipv4: 192.168.0.1/24
+ ipv4: 192.108.0.1/24
state: present
authorize: yes
provider: "{{ cli }}"
@@ -29,12 +29,12 @@
that:
- 'result.changed == true'
- '"interface {{ test_interface_1 }}" in result.commands'
- - '"ip address 192.168.0.1/24" in result.commands'
+ - '"ip address 192.108.0.1/24" in result.commands'
- name: Configure interface ipv4 address (idempotent)
eos_l3_interface:
name: "{{ test_interface_1 }}"
- ipv4: 192.168.0.1/24
+ ipv4: 192.108.0.1/24
state: present
authorize: yes
provider: "{{ cli }}"
@@ -48,7 +48,7 @@
- name: Change interface ipv4 address
eos_l3_interface:
name: "{{ test_interface_1 }}"
- ipv4: 197.168.0.1/24
+ ipv4: 197.108.0.1/24
state: present
authorize: yes
provider: "{{ cli }}"
@@ -59,7 +59,7 @@
that:
- 'result.changed == true'
- '"interface {{ test_interface_1 }}" in result.commands'
- - '"ip address 197.168.0.1/24" in result.commands'
+ - '"ip address 197.108.0.1/24" in result.commands'
- name: Configure interface ipv6 address
eos_l3_interface:
@@ -144,8 +144,8 @@
- name: Configure ipv4 and ipv6 address using aggregate
eos_l3_interface:
aggregate:
- - { name: "{{ test_interface_1 }}", ipv4: 192.161.0.1/24, ipv6: "fd5d:12c9:2201:2::2/64" }
- - { name: "{{ test_interface_2 }}", ipv4: 192.162.0.2/16, ipv6: "fd5e:12c9:2201:3::3/32" }
+ - { name: "{{ test_interface_1 }}", ipv4: 192.108.0.1/24, ipv6: "fd5d:12c9:2201:2::2/64" }
+ - { name: "{{ test_interface_2 }}", ipv4: 192.109.0.2/16, ipv6: "fd5e:12c9:2201:3::3/32" }
authorize: yes
provider: "{{ cli }}"
become: yes
@@ -155,17 +155,17 @@
that:
- 'result.changed == true'
- '"interface {{ test_interface_1 }}" in result.commands'
- - '"ip address 192.161.0.1/24" in result.commands'
+ - '"ip address 192.108.0.1/24" in result.commands'
- '"ipv6 address fd5d:12c9:2201:2::2/64" in result.commands'
- '"interface {{ test_interface_2 }}" in result.commands'
- - '"ip address 192.162.0.2/16" in result.commands'
+ - '"ip address 192.109.0.2/16" in result.commands'
- '"ipv6 address fd5e:12c9:2201:3::3/32" in result.commands'
- name: Configure ipv4 and ipv6 address using aggregate (idempotent)
eos_l3_interface:
aggregate:
- - { name: "{{ test_interface_1 }}", ipv4: 192.161.0.1/24, ipv6: "fd5d:12c9:2201:2::2/64" }
- - { name: "{{ test_interface_2 }}", ipv4: 192.162.0.2/16, ipv6: "fd5e:12c9:2201:3::3/32" }
+ - { name: "{{ test_interface_1 }}", ipv4: 192.108.0.1/24, ipv6: "fd5d:12c9:2201:2::2/64" }
+ - { name: "{{ test_interface_2 }}", ipv4: 192.109.0.2/16, ipv6: "fd5e:12c9:2201:3::3/32" }
authorize: yes
provider: "{{ cli }}"
become: yes
@@ -178,8 +178,8 @@
- name: Change ipv4 and ipv6 address using aggregate
eos_l3_interface:
aggregate:
- - { name: "{{ test_interface_1 }}", ipv4: 193.167.1.1/8, ipv6: "fd5a:12c9:2201:4::4/32" }
- - { name: "{{ test_interface_2 }}", ipv4: 192.169.2.2/24, ipv6: "fd5b:12c9:2201:5::5/90" }
+ - { name: "{{ test_interface_1 }}", ipv4: 193.118.1.1/8, ipv6: "fd5a:12c9:2201:4::4/32" }
+ - { name: "{{ test_interface_2 }}", ipv4: 192.119.2.2/24, ipv6: "fd5b:12c9:2201:5::5/90" }
authorize: yes
provider: "{{ cli }}"
become: yes
@@ -189,10 +189,10 @@
that:
- 'result.changed == true'
- '"interface {{ test_interface_1 }}" in result.commands'
- - '"ip address 193.167.1.1/8" in result.commands'
+ - '"ip address 193.118.1.1/8" in result.commands'
- '"ipv6 address fd5a:12c9:2201:4::4/32" in result.commands'
- '"interface {{ test_interface_2 }}" in result.commands'
- - '"ip address 192.169.2.2/24" in result.commands'
+ - '"ip address 192.119.2.2/24" in result.commands'
- '"ipv6 address fd5b:12c9:2201:5::5/90" in result.commands'