diff options
author | omnom62 <75066712+omnom62@users.noreply.github.com> | 2025-03-02 22:43:17 +1000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-03-02 07:43:17 -0500 |
commit | ad249c39c3259df8c2536dd80f62723eb9c364ef (patch) | |
tree | 36d1a9ef0a9eb4d60dea2c970c1c0f077c604791 /tests/unit | |
parent | cfc4c93253d57de953c4cae7acc5f2b2890614ac (diff) | |
download | vyos.vyos-ad249c39c3259df8c2536dd80f62723eb9c364ef.tar.gz vyos.vyos-ad249c39c3259df8c2536dd80f62723eb9c364ef.zip |
T7012 ospf_interfaces integration tests (#387)
* T7012 init strucuture for ospf_interfaces integration tests
* ospf_interfaces unit and integration tests fixes for 1.3-
* fixes to v1.4 ospf_interfaces parsers
* T7012 integration tests and 1.4+ support for ospf_interfaces
Diffstat (limited to 'tests/unit')
-rw-r--r-- | tests/unit/modules/network/vyos/fixtures/vyos_ospf_interfaces_config.cfg | 2 | ||||
-rw-r--r-- | tests/unit/modules/network/vyos/fixtures/vyos_ospf_interfaces_config_14.cfg | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/tests/unit/modules/network/vyos/fixtures/vyos_ospf_interfaces_config.cfg b/tests/unit/modules/network/vyos/fixtures/vyos_ospf_interfaces_config.cfg index 1fab55e3..2dfa661b 100644 --- a/tests/unit/modules/network/vyos/fixtures/vyos_ospf_interfaces_config.cfg +++ b/tests/unit/modules/network/vyos/fixtures/vyos_ospf_interfaces_config.cfg @@ -1,4 +1,4 @@ set interfaces ethernet eth0 ipv6 ospfv3 instance-id '33' -set interfaces ethernet eth0 ipv6 ospfv3 'mtu-ignore' +set interfaces ethernet eth0 ipv6 ospfv3 mtu-ignore set interfaces ethernet eth1 ip ospf cost '100' set interfaces ethernet eth1 ipv6 ospfv3 ifmtu '33' diff --git a/tests/unit/modules/network/vyos/fixtures/vyos_ospf_interfaces_config_14.cfg b/tests/unit/modules/network/vyos/fixtures/vyos_ospf_interfaces_config_14.cfg index d630d94c..0053877e 100644 --- a/tests/unit/modules/network/vyos/fixtures/vyos_ospf_interfaces_config_14.cfg +++ b/tests/unit/modules/network/vyos/fixtures/vyos_ospf_interfaces_config_14.cfg @@ -1,4 +1,4 @@ set protocols ospfv3 interface eth0 instance-id '33' -set protocols ospfv3 interface eth0 'mtu-ignore' +set protocols ospfv3 interface eth0 mtu-ignore set protocols ospf interface eth1 cost '100' set protocols ospfv3 interface eth1 ifmtu '33' |