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

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

- name: Run vyos lsmod command
  vyos.vyos.vyos_command:
    commands:
      - lsmod
  register: lsmod_out

- name: Set up - delete interface
  net_interface:
    name: eth1
    state: absent

- name: Create interface using platform agnostic module
  net_interface:
    name: eth1
    state: present
    description: test-interface
  register: result

- assert:
    that:
      - 'result.changed == true'
      - '"set interfaces ethernet eth1" in result.commands'
      - '"set interfaces ethernet eth1 description ''test-interface''" in result.commands'

- name: Configure interface params using platform agnostic module
  net_interface:
    name: eth1
    state: present
    description: test-interface-1
    speed: 100
    duplex: half
    mtu: 256
  when: "'virtio_net' not in lsmod_out.stdout[0]"
  register: result

- assert:
    that:
      - 'result.changed == true'
      - '"set interfaces ethernet eth1 description ''test-interface-1''" in result.commands'
      - '"set interfaces ethernet eth1 speed 100" in result.commands'
      - '"set interfaces ethernet eth1 duplex half" in result.commands'
      - '"set interfaces ethernet eth1 mtu 256" in result.commands'
  when: "'virtio_net' not in lsmod_out.stdout[0]"

- name: teardown - delete interface
  net_interface:
    name: eth1
    state: absent

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