summaryrefslogtreecommitdiff
path: root/test/integration/targets/eos_l3_interface/tests/cli/net_l3_interface.yaml
blob: 4e63075e6cf9f079d9e6a534ce00dea6f1bf15ad (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
---
- debug: msg="START eos cli/net_l3_interface.yaml on connection={{ ansible_connection }}"

# Add minimal testcase to check args are passed correctly to
# implementation module and module run is successful.

- name: Set test interface
  set_fact:
    test_interface_1: ethernet1

- name: Delete interface ipv4 and ipv6 address(setup)
  net_l3_interface:
    name: "{{ test_interface_1 }}"
    state: absent
  become: yes
  register: result

- name: Configure interface ipv4 address using platform agnostic module
  net_l3_interface:
    name: "{{ test_interface_1 }}"
    ipv4: 192.108.0.1/24
    state: present
  become: yes
  register: result

- assert:
    that:
      - 'result.changed == true'
      - '"interface {{ test_interface_1 }}" in result.commands'
      - '"ip address 192.108.0.1/24" in result.commands'

- name: Delete interface ipv4 and ipv6 address(teardown)
  net_l3_interface:
    name: "{{ test_interface_1 }}"
    state: absent
  become: yes
  register: result

- debug: msg="END eos cli/net_l3_interface.yaml on connection={{ ansible_connection }}"