ansible/test/integration/targets/eos_lag_interfaces/tests/cli/replaced.yaml
Paul Belanger af3603f9ee Revert "Allow httpapi for resource modules (#62843)" (#66483)
While this does properly pass our testing for ansible/ansible devel
branch, it is currently breaking our collection testing for 2.10.

Specifically, this would mean ansible.netcommon would need to directly
import arista.eos or cisco.nxos collections, causing a circular dependency.

This reverts commit e266e5f8b6.
2020-01-15 12:25:38 -05:00

44 lines
1 KiB
YAML

---
- include_tasks: reset_config.yml
- set_fact:
config:
- name: "Port-Channel10"
members:
- member: Ethernet2
mode: "on"
other_config:
- name: "Port-Channel5"
members:
- member: Ethernet1
mode: "on"
- eos_facts:
gather_network_resources: lag_interfaces
become: yes
- name: Replace device configuration of specified LAGs with provided configuration.
eos_lag_interfaces:
config: "{{ config }}"
state: replaced
become: yes
register: result
- assert:
that:
- "ansible_facts.network_resources.lag_interfaces|symmetric_difference(result.before)|length == 0"
- eos_facts:
gather_network_resources: lag_interfaces
become: yes
- assert:
that:
- "ansible_facts.network_resources.lag_interfaces|symmetric_difference(result.after)|length == 0"
- set_fact:
expected_config: "{{ config }} + {{ other_config }}"
- assert:
that:
- "ansible_facts.network_resources.lag_interfaces|symmetric_difference(expected_config)|length == 0"