diff options
Diffstat (limited to 'test/integration/targets/vyos_vlan/tests/cli/basic.yaml')
-rw-r--r-- | test/integration/targets/vyos_vlan/tests/cli/basic.yaml | 101 |
1 files changed, 101 insertions, 0 deletions
diff --git a/test/integration/targets/vyos_vlan/tests/cli/basic.yaml b/test/integration/targets/vyos_vlan/tests/cli/basic.yaml new file mode 100644 index 0000000..6e4417e --- /dev/null +++ b/test/integration/targets/vyos_vlan/tests/cli/basic.yaml @@ -0,0 +1,101 @@ +--- +- debug: msg="START cli/basic.yaml on connection={{ ansible_connection }}" + +- name: setup - remove vlan used in test + vyos.vyos.vyos_config: + lines: + - delete interfaces ethernet eth1 vif 100 + - delete interfaces ethernet eth0 vif 5 + - delete interfaces ethernet eth0 vif 100 + - delete interfaces ethernet eth0 vif 101 + - delete interfaces ethernet eth1 vif 201 + +- name: set vlan with name + vyos.vyos.vyos_vlan: &name + vlan_id: 100 + name: vlan-100 + interfaces: eth1 + register: result + +- assert: + that: + - "result.changed == true" + - "'set interfaces ethernet eth1 vif 100 description vlan-100' in result.commands" + +- name: set vlan with name(idempotence) + vyos.vyos.vyos_vlan: *name + register: result + +- assert: + that: + - "result.changed == false" + +- name: set vlan with address + vyos.vyos.vyos_vlan: &address + vlan_id: 5 + address: 192.168.5.12/24 + interfaces: eth0 + register: result + +- assert: + that: + - "result.changed == true" + - "'set interfaces ethernet eth0 vif 5 address 192.168.5.12/24' in result.commands" + +- name: set vlan with address(idempotence) + vyos.vyos.vyos_vlan: *address + register: result + +- assert: + that: + - "result.changed == false" + +- name: delete + vyos.vyos.vyos_vlan: &delete + vlan_id: 100 + interfaces: eth1 + state: absent + register: result + +- assert: + that: + - "result.changed == true" + - "'delete interfaces ethernet eth1 vif 100' in result.commands" + +- name: delete(idempotence) + vyos.vyos.vyos_vlan: *delete + register: result + +- assert: + that: + - "result.changed == false" + +- name: Create VLANs using aggregate + vyos.vyos.vyos_vlan: &agg_vlan + aggregate: + - { vlan_id: 101, name: voice, interfaces: "eth0" } + - { vlan_id: 201, name: mgm, interfaces: "eth1" } + state: present + register: result + +- assert: + that: + - "result.changed == true" + - "'set interfaces ethernet eth0 vif 101 description voice' in result.commands" + - "'set interfaces ethernet eth1 vif 201 description mgm' in result.commands" + +- name: Create VLANs using aggregate (idempotent) + vyos.vyos.vyos_vlan: *agg_vlan + register: result + +- assert: + that: + - "result.changed == false" + +- name: teardown + vyos.vyos.vyos_config: + lines: + - delete interfaces ethernet eth1 vif 100 + - delete interfaces ethernet eth0 vif 5 + - delete interfaces ethernet eth0 vif 101 + - delete interfaces ethernet eth1 vif 201 |