summaryrefslogtreecommitdiff
path: root/test/integration/targets/vyos_linkagg/tests/cli/net_linkagg.yaml
diff options
context:
space:
mode:
Diffstat (limited to 'test/integration/targets/vyos_linkagg/tests/cli/net_linkagg.yaml')
-rw-r--r--test/integration/targets/vyos_linkagg/tests/cli/net_linkagg.yaml31
1 files changed, 31 insertions, 0 deletions
diff --git a/test/integration/targets/vyos_linkagg/tests/cli/net_linkagg.yaml b/test/integration/targets/vyos_linkagg/tests/cli/net_linkagg.yaml
new file mode 100644
index 0000000..93f98e7
--- /dev/null
+++ b/test/integration/targets/vyos_linkagg/tests/cli/net_linkagg.yaml
@@ -0,0 +1,31 @@
+---
+- debug: msg="START vyos cli/net_linkagg.yaml on connection={{ ansible_connection }}"
+
+# Add minimal testcase to check args are passed correctly to
+# implementation module and module run is successful.
+
+- name: Remove linkagg - set
+ net_linkagg:
+ name: bond0
+ state: absent
+
+- name: Create linkagg using platform agnostic module
+ net_linkagg:
+ name: bond0
+ members:
+ - eth1
+ state: present
+ register: result
+
+- assert:
+ that:
+ - 'result.changed == true'
+ - '"set interfaces bonding bond0 mode 802.3ad" in result.commands'
+ - '"set interfaces ethernet eth1 bond-group bond0" in result.commands'
+
+- name: Remove linkagg - teardown
+ net_linkagg:
+ name: bond0
+ state: absent
+
+- debug: msg="END vyos cli/net_linkagg.yaml on connection={{ ansible_connection }}"