diff options
author | Gaige B Paulsen <gaige@cluetrust.com> | 2025-02-03 14:30:25 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-02-03 19:30:25 +0000 |
commit | 4b1cc399b285fbf3f2535424b444d8d3282515c5 (patch) | |
tree | 409e98733f2098f1e38b8070336fb927b3e8fa6b | |
parent | de7a0113b5d506bc0a44e286a9edc6d457238980 (diff) | |
download | vyos.vyos-4b1cc399b285fbf3f2535424b444d8d3282515c5.tar.gz vyos.vyos-4b1cc399b285fbf3f2535424b444d8d3282515c5.zip |
T7127: fix 1.3 vyos_interface int test (#384)
5 files changed, 6 insertions, 2 deletions
diff --git a/changelogs/fragments/T7127-fix-interface-integration-13.yaml b/changelogs/fragments/T7127-fix-interface-integration-13.yaml new file mode 100644 index 0000000..4339708 --- /dev/null +++ b/changelogs/fragments/T7127-fix-interface-integration-13.yaml @@ -0,0 +1,3 @@ +--- +minor_changes: + - vyos_interfaces - fix bug in RTT tests on 1.3 due to handling of MTUs diff --git a/tests/integration/targets/vyos_firewall_interfaces/tests/cli/_remove_config.yaml b/tests/integration/targets/vyos_firewall_interfaces/tests/cli/_remove_config.yaml index 9144919..31f527f 100644 --- a/tests/integration/targets/vyos_firewall_interfaces/tests/cli/_remove_config.yaml +++ b/tests/integration/targets/vyos_firewall_interfaces/tests/cli/_remove_config.yaml @@ -1,5 +1,4 @@ --- - - name: ensure facts include_tasks: _get_version.yaml diff --git a/tests/integration/targets/vyos_firewall_interfaces/tests/cli/_remove_firewall_config.yaml b/tests/integration/targets/vyos_firewall_interfaces/tests/cli/_remove_firewall_config.yaml index 1cd452b..afada4e 100644 --- a/tests/integration/targets/vyos_firewall_interfaces/tests/cli/_remove_firewall_config.yaml +++ b/tests/integration/targets/vyos_firewall_interfaces/tests/cli/_remove_firewall_config.yaml @@ -1,5 +1,4 @@ --- - - name: ensure facts include_tasks: _get_version.yaml diff --git a/tests/integration/targets/vyos_interfaces/tests/cli/rtt.yaml b/tests/integration/targets/vyos_interfaces/tests/cli/rtt.yaml index 2ec37f0..cfe1b0f 100644 --- a/tests/integration/targets/vyos_interfaces/tests/cli/rtt.yaml +++ b/tests/integration/targets/vyos_interfaces/tests/cli/rtt.yaml @@ -22,6 +22,7 @@ - vlan_id: 101 enabled: false + mtu: 1401 - name: eth2 description: Interface - 2 @@ -51,6 +52,7 @@ - vlan_id: 101 description: Eth1 - VIF 101 (WILL BE REMOVED) enabled: true + mtu: 1401 - name: eth2 description: Interface 2 (ADMIN DOWN) (WILL BE REVERTED) diff --git a/tests/integration/targets/vyos_interfaces/vars/main.yaml b/tests/integration/targets/vyos_interfaces/vars/main.yaml index be87cf8..4e66747 100644 --- a/tests/integration/targets/vyos_interfaces/vars/main.yaml +++ b/tests/integration/targets/vyos_interfaces/vars/main.yaml @@ -167,6 +167,7 @@ round_trip: - vlan_id: 101 description: Eth1 - VIF 101 (WILL BE REMOVED) enabled: true + mtu: 1401 - name: eth2 description: Interface 2 (ADMIN DOWN) (WILL BE REVERTED) mtu: 1406 |