diff --git a/doc/testing.md b/doc/testing.md index 60303faa..a41d9e6a 100644 --- a/doc/testing.md +++ b/doc/testing.md @@ -93,14 +93,14 @@ Each test case is a separate executable, which can be run without arguments: ``` -11:42:53 infamy0:test # ./case/infix_dhcp/dhcp_basic.py +11:42:53 infamy0:test # ./case/dhcp/dhcp_basic.py ``` To run a suite of tests, e.g., only the DHCP client tests, pass the suite as an argument to [9PM][]: ``` -11:42:53 infamy0:test # ./9pm/9pm.py case/infix_dhcp/infix_dhcp.yaml +11:42:53 infamy0:test # ./9pm/9pm.py case/dhcp/dhcp.yaml ``` To run the suite of all tests: @@ -234,12 +234,12 @@ your test and run it as normal. Once Python executes the call, it will drop you into the Python debugger: ``` -11:42:58 infamy0:test # ./case/infix_dhcp/dhcp_basic.py +11:42:58 infamy0:test # ./case/dhcp/dhcp_basic.py # Starting (2024-02-10 11:42:59) # Probing dut1 on port d1a for IPv6LL mgmt address ... # Connecting to mgmt IP fe80::ff:fe00:0%d1a:830 ... ok 1 - Initialize -> /home/jocke/src/infix/test/case/infix_dhcp/dhcp_basic.py(44)() +> /home/jocke/src/infix/test/case/dhcp/dhcp_basic.py(44)() (Pdb) ``` @@ -252,7 +252,7 @@ want to setup breakpoints without modifying the source, or simply step through the code: ``` -11:42:58 infamy0:test # python -m pdb case/infix_dhcp/dhcp_basic.py +11:42:58 infamy0:test # python -m pdb case/dhcp/dhcp_basic.py ``` ### Deterministic Topology Mappings @@ -296,7 +296,7 @@ This is useful because this value can then be used to rerun a test (or the whole suite) with identical topology mappings: ``` -$ make PYTHONHASHSEED=3773822171 TESTS=case/ietf_system/hostname.py test +$ make PYTHONHASHSEED=3773822171 TESTS=case/system/hostname.py test ``` ### Deterministic Transport Protocol @@ -307,14 +307,14 @@ you get the same protocol used for that hash. But if you want to choose the protocol, add extra arguments to Infamy: ``` -$ make INFAMY_EXTRA_ARGS="--transport=restconf" TESTS=case/ietf_system/hostname.py test +$ make INFAMY_EXTRA_ARGS="--transport=restconf" TESTS=case/system/hostname.py test ``` or, when running interactively: ``` $ make test-sh -09:08:17 infamy0:test # ./9pm/9pm.py -o"--transport=restconf" case/ietf_system/hostname.py +09:08:17 infamy0:test # ./9pm/9pm.py -o"--transport=restconf" case/system/hostname.py ``` ### Test specification @@ -360,7 +360,7 @@ to start by reviewing an existing test case. All tests are located in the `infix/test/case` repository and are grouped by the features they verify. For example, -`infix/test/case/infix_services` contains tests for various Infix +`infix/test/case/services` contains tests for various Infix services, such as LLDP and mDNS. While test grouping is flexible, each test should be placed in a @@ -372,12 +372,12 @@ suite](#running-subsets-of-tests): ``` - name: infix-services - suite: infix_services/infix_services.yaml + suite: services/services.yaml ``` A new test (e.g., lldp_enable_disable) should be added to the corresponding test group .yaml file, such as -`infix/test/cases/infix_services.yaml`: +`infix/test/cases/services.yaml`: ``` - name: lldp_enable_disable @@ -385,7 +385,7 @@ corresponding test group .yaml file, such as ``` It is necessary to include the test in -`infix/test/case/infix_services/Readme.adoc` to ensure proper test +`infix/test/case/services/Readme.adoc` to ensure proper test specification generation: ``` @@ -393,7 +393,7 @@ include::lldp_enable_disable/Readme.adoc[] ``` Each test case should have its own directory under, -`infix/test/case/infix_services`, containing: +`infix/test/case/services`, containing: - `test.py` - the test script - `topology.dot` - the logical topology definition. diff --git a/test/case/all.yaml b/test/case/all.yaml index 40fbbb75..1f698711 100644 --- a/test/case/all.yaml +++ b/test/case/all.yaml @@ -18,37 +18,37 @@ suite: misc/all.yaml -- name: "IETF System" - suite: ietf_system/all.yaml +- name: "System" + suite: system/all.yaml # Upgrade may leave wrong boot order - case: meta/bootorder.py infamy: specification: False -- name: "IETF Syslog" - suite: ietf_syslog/all.yaml +- name: "Syslog" + suite: syslog/all.yaml -- name: "IETF Interfaces" - suite: ietf_interfaces/all.yaml +- name: "Interfaces" + suite: interfaces/all.yaml -- name: "IETF Routing" - suite: ietf_routing/all.yaml +- name: "Routing" + suite: routing/all.yaml -- name: "Infix Firewall" - suite: infix_firewall/all.yaml +- name: "Firewall" + suite: firewall/all.yaml -- name: "Infix Containers" - suite: infix_containers/all.yaml +- name: "Containers" + suite: containers/all.yaml -- name: "Infix DHCP" - suite: infix_dhcp/all.yaml +- name: "DHCP" + suite: dhcp/all.yaml -- name: "IETF Hardware" - suite: ietf_hardware/all.yaml +- name: "Hardware" + suite: hardware/all.yaml -- name: "Infix Services" - suite: infix_services/all.yaml +- name: "Services" + suite: services/all.yaml - name: "Use Case Tests" suite: use_case/all.yaml diff --git a/test/case/infix_containers/Readme.adoc b/test/case/containers/Readme.adoc similarity index 91% rename from test/case/infix_containers/Readme.adoc rename to test/case/containers/Readme.adoc index 6574e45a..a0e1fb32 100644 --- a/test/case/infix_containers/Readme.adoc +++ b/test/case/containers/Readme.adoc @@ -1,7 +1,7 @@ :testgroup: -== infix-containers +== Containers -Tests verifying Infix Docker container support: +Tests verifying link:https://opencontainers.org/[OCI container] support: - Basic web server container running in host network mode - Container enable/disable functionality via configuration diff --git a/test/case/infix_containers/all.yaml b/test/case/containers/all.yaml similarity index 100% rename from test/case/infix_containers/all.yaml rename to test/case/containers/all.yaml diff --git a/test/case/ietf_hardware/usb/Readme.adoc b/test/case/containers/basic/Readme.adoc similarity index 100% rename from test/case/ietf_hardware/usb/Readme.adoc rename to test/case/containers/basic/Readme.adoc diff --git a/test/case/infix_containers/basic/test.adoc b/test/case/containers/basic/test.adoc similarity index 91% rename from test/case/infix_containers/basic/test.adoc rename to test/case/containers/basic/test.adoc index e76cd18c..48ce26d7 100644 --- a/test/case/infix_containers/basic/test.adoc +++ b/test/case/containers/basic/test.adoc @@ -1,6 +1,6 @@ === Container basic -ifdef::topdoc[:imagesdir: {topdoc}../../test/case/infix_containers/basic] +ifdef::topdoc[:imagesdir: {topdoc}../../test/case/containers/basic] ==== Description diff --git a/test/case/infix_containers/basic/test.py b/test/case/containers/basic/test.py similarity index 100% rename from test/case/infix_containers/basic/test.py rename to test/case/containers/basic/test.py diff --git a/test/case/ietf_interfaces/dual_bridge/topology.dot b/test/case/containers/basic/topology.dot similarity index 100% rename from test/case/ietf_interfaces/dual_bridge/topology.dot rename to test/case/containers/basic/topology.dot diff --git a/test/case/ietf_interfaces/dual_bridge/topology.svg b/test/case/containers/basic/topology.svg similarity index 100% rename from test/case/ietf_interfaces/dual_bridge/topology.svg rename to test/case/containers/basic/topology.svg diff --git a/test/case/ietf_hardware/usb_two_ports/Readme.adoc b/test/case/containers/bridge/Readme.adoc similarity index 100% rename from test/case/ietf_hardware/usb_two_ports/Readme.adoc rename to test/case/containers/bridge/Readme.adoc diff --git a/test/case/infix_containers/bridge/test.adoc b/test/case/containers/bridge/test.adoc similarity index 90% rename from test/case/infix_containers/bridge/test.adoc rename to test/case/containers/bridge/test.adoc index c50ff86f..a99dc091 100644 --- a/test/case/infix_containers/bridge/test.adoc +++ b/test/case/containers/bridge/test.adoc @@ -1,6 +1,6 @@ === Container with bridge network -ifdef::topdoc[:imagesdir: {topdoc}../../test/case/infix_containers/bridge] +ifdef::topdoc[:imagesdir: {topdoc}../../test/case/containers/bridge] ==== Description diff --git a/test/case/infix_containers/bridge/test.py b/test/case/containers/bridge/test.py similarity index 100% rename from test/case/infix_containers/bridge/test.py rename to test/case/containers/bridge/test.py diff --git a/test/case/infix_containers/bridge/topology.dot b/test/case/containers/bridge/topology.dot similarity index 100% rename from test/case/infix_containers/bridge/topology.dot rename to test/case/containers/bridge/topology.dot diff --git a/test/case/infix_containers/bridge/topology.svg b/test/case/containers/bridge/topology.svg similarity index 100% rename from test/case/infix_containers/bridge/topology.svg rename to test/case/containers/bridge/topology.svg diff --git a/test/case/ietf_interfaces/bridge_basic/Readme.adoc b/test/case/containers/enabled/Readme.adoc similarity index 100% rename from test/case/ietf_interfaces/bridge_basic/Readme.adoc rename to test/case/containers/enabled/Readme.adoc diff --git a/test/case/infix_containers/enabled/test.adoc b/test/case/containers/enabled/test.adoc similarity index 91% rename from test/case/infix_containers/enabled/test.adoc rename to test/case/containers/enabled/test.adoc index ea10606a..574e2d93 100644 --- a/test/case/infix_containers/enabled/test.adoc +++ b/test/case/containers/enabled/test.adoc @@ -1,6 +1,6 @@ === Container enabled/disabled -ifdef::topdoc[:imagesdir: {topdoc}../../test/case/infix_containers/enabled] +ifdef::topdoc[:imagesdir: {topdoc}../../test/case/containers/enabled] ==== Description diff --git a/test/case/infix_containers/enabled/test.py b/test/case/containers/enabled/test.py similarity index 100% rename from test/case/infix_containers/enabled/test.py rename to test/case/containers/enabled/test.py diff --git a/test/case/infix_containers/enabled/topology.dot b/test/case/containers/enabled/topology.dot similarity index 100% rename from test/case/infix_containers/enabled/topology.dot rename to test/case/containers/enabled/topology.dot diff --git a/test/case/ietf_hardware/usb/topology.svg b/test/case/containers/enabled/topology.svg similarity index 100% rename from test/case/ietf_hardware/usb/topology.svg rename to test/case/containers/enabled/topology.svg diff --git a/test/case/ietf_interfaces/bridge_fwd_dual_dut/Readme.adoc b/test/case/containers/environment/Readme.adoc similarity index 100% rename from test/case/ietf_interfaces/bridge_fwd_dual_dut/Readme.adoc rename to test/case/containers/environment/Readme.adoc diff --git a/test/case/infix_containers/environment/test.adoc b/test/case/containers/environment/test.adoc similarity index 90% rename from test/case/infix_containers/environment/test.adoc rename to test/case/containers/environment/test.adoc index 2de6e5c4..4b300a6b 100644 --- a/test/case/infix_containers/environment/test.adoc +++ b/test/case/containers/environment/test.adoc @@ -1,6 +1,6 @@ === Container environment variables -ifdef::topdoc[:imagesdir: {topdoc}../../test/case/infix_containers/environment] +ifdef::topdoc[:imagesdir: {topdoc}../../test/case/containers/environment] ==== Description diff --git a/test/case/infix_containers/environment/test.py b/test/case/containers/environment/test.py similarity index 100% rename from test/case/infix_containers/environment/test.py rename to test/case/containers/environment/test.py diff --git a/test/case/infix_containers/environment/topology.dot b/test/case/containers/environment/topology.dot similarity index 100% rename from test/case/infix_containers/environment/topology.dot rename to test/case/containers/environment/topology.dot diff --git a/test/case/ietf_interfaces/iface_phys_address/topology.svg b/test/case/containers/environment/topology.svg similarity index 100% rename from test/case/ietf_interfaces/iface_phys_address/topology.svg rename to test/case/containers/environment/topology.svg diff --git a/test/case/ietf_interfaces/bridge_fwd_sgl_dut/Readme.adoc b/test/case/containers/firewall_basic/Readme.adoc similarity index 100% rename from test/case/ietf_interfaces/bridge_fwd_sgl_dut/Readme.adoc rename to test/case/containers/firewall_basic/Readme.adoc diff --git a/test/case/infix_containers/firewall_basic/test.adoc b/test/case/containers/firewall_basic/test.adoc similarity index 95% rename from test/case/infix_containers/firewall_basic/test.adoc rename to test/case/containers/firewall_basic/test.adoc index 3b1d8e33..ce31e4de 100644 --- a/test/case/infix_containers/firewall_basic/test.adoc +++ b/test/case/containers/firewall_basic/test.adoc @@ -1,6 +1,6 @@ === Basic Firewall Container -ifdef::topdoc[:imagesdir: {topdoc}../../test/case/infix_containers/firewall_basic] +ifdef::topdoc[:imagesdir: {topdoc}../../test/case/containers/firewall_basic] ==== Description diff --git a/test/case/infix_containers/firewall_basic/test.py b/test/case/containers/firewall_basic/test.py similarity index 100% rename from test/case/infix_containers/firewall_basic/test.py rename to test/case/containers/firewall_basic/test.py diff --git a/test/case/infix_containers/firewall_basic/topology.dot b/test/case/containers/firewall_basic/topology.dot similarity index 100% rename from test/case/infix_containers/firewall_basic/topology.dot rename to test/case/containers/firewall_basic/topology.dot diff --git a/test/case/infix_containers/firewall_basic/topology.svg b/test/case/containers/firewall_basic/topology.svg similarity index 100% rename from test/case/infix_containers/firewall_basic/topology.svg rename to test/case/containers/firewall_basic/topology.svg diff --git a/test/case/ietf_interfaces/bridge_stp_basic/Readme.adoc b/test/case/containers/host_commands/Readme.adoc similarity index 100% rename from test/case/ietf_interfaces/bridge_stp_basic/Readme.adoc rename to test/case/containers/host_commands/Readme.adoc diff --git a/test/case/infix_containers/host_commands/test.adoc b/test/case/containers/host_commands/test.adoc similarity index 59% rename from test/case/infix_containers/host_commands/test.adoc rename to test/case/containers/host_commands/test.adoc index ac74d43e..4f0489f3 100644 --- a/test/case/infix_containers/host_commands/test.adoc +++ b/test/case/containers/host_commands/test.adoc @@ -1,12 +1,13 @@ === Host Command Execution from Container -ifdef::topdoc[:imagesdir: {topdoc}../../test/case/infix_containers/host_commands] +ifdef::topdoc[:imagesdir: {topdoc}../../test/case/containers/host_commands] ==== Description -This test verifies that a container running on Infix can execute commands -that affect the host system. Specifically, it confirms that the container -can change the hostname of the host. +This test verifies that a container in privileged mode can break out of +the container to execute commands that affect the host system. +Specifically, it confirms that the container can change the hostname of +the host. ==== Topology diff --git a/test/case/infix_containers/host_commands/test.py b/test/case/containers/host_commands/test.py similarity index 100% rename from test/case/infix_containers/host_commands/test.py rename to test/case/containers/host_commands/test.py diff --git a/test/case/ietf_hardware/usb/topology.dot b/test/case/containers/host_commands/topology.dot similarity index 100% rename from test/case/ietf_hardware/usb/topology.dot rename to test/case/containers/host_commands/topology.dot diff --git a/test/case/ietf_hardware/usb_two_ports/topology.svg b/test/case/containers/host_commands/topology.svg similarity index 100% rename from test/case/ietf_hardware/usb_two_ports/topology.svg rename to test/case/containers/host_commands/topology.svg diff --git a/test/case/ietf_interfaces/bridge_veth/Readme.adoc b/test/case/containers/phys/Readme.adoc similarity index 100% rename from test/case/ietf_interfaces/bridge_veth/Readme.adoc rename to test/case/containers/phys/Readme.adoc diff --git a/test/case/infix_containers/phys/test.adoc b/test/case/containers/phys/test.adoc similarity index 89% rename from test/case/infix_containers/phys/test.adoc rename to test/case/containers/phys/test.adoc index 6d0390f2..4a221454 100644 --- a/test/case/infix_containers/phys/test.adoc +++ b/test/case/containers/phys/test.adoc @@ -1,6 +1,6 @@ === Container with physical interface -ifdef::topdoc[:imagesdir: {topdoc}../../test/case/infix_containers/phys] +ifdef::topdoc[:imagesdir: {topdoc}../../test/case/containers/phys] ==== Description diff --git a/test/case/infix_containers/phys/test.py b/test/case/containers/phys/test.py similarity index 100% rename from test/case/infix_containers/phys/test.py rename to test/case/containers/phys/test.py diff --git a/test/case/infix_containers/phys/topology.dot b/test/case/containers/phys/topology.dot similarity index 100% rename from test/case/infix_containers/phys/topology.dot rename to test/case/containers/phys/topology.dot diff --git a/test/case/infix_containers/phys/topology.svg b/test/case/containers/phys/topology.svg similarity index 100% rename from test/case/infix_containers/phys/topology.svg rename to test/case/containers/phys/topology.svg diff --git a/test/case/ietf_interfaces/bridge_vlan/Readme.adoc b/test/case/containers/upgrade/Readme.adoc similarity index 100% rename from test/case/ietf_interfaces/bridge_vlan/Readme.adoc rename to test/case/containers/upgrade/Readme.adoc diff --git a/test/case/infix_containers/upgrade/download.sh b/test/case/containers/upgrade/download.sh similarity index 100% rename from test/case/infix_containers/upgrade/download.sh rename to test/case/containers/upgrade/download.sh diff --git a/test/case/infix_containers/upgrade/test.adoc b/test/case/containers/upgrade/test.adoc similarity index 93% rename from test/case/infix_containers/upgrade/test.adoc rename to test/case/containers/upgrade/test.adoc index 59c24940..e841e53b 100644 --- a/test/case/infix_containers/upgrade/test.adoc +++ b/test/case/containers/upgrade/test.adoc @@ -1,6 +1,6 @@ === Container Upgrade -ifdef::topdoc[:imagesdir: {topdoc}../../test/case/infix_containers/upgrade] +ifdef::topdoc[:imagesdir: {topdoc}../../test/case/containers/upgrade] ==== Description diff --git a/test/case/infix_containers/upgrade/test.py b/test/case/containers/upgrade/test.py similarity index 100% rename from test/case/infix_containers/upgrade/test.py rename to test/case/containers/upgrade/test.py diff --git a/test/case/infix_containers/upgrade/topology.dot b/test/case/containers/upgrade/topology.dot similarity index 100% rename from test/case/infix_containers/upgrade/topology.dot rename to test/case/containers/upgrade/topology.dot diff --git a/test/case/ietf_interfaces/ifalias/topology.svg b/test/case/containers/upgrade/topology.svg similarity index 100% rename from test/case/ietf_interfaces/ifalias/topology.svg rename to test/case/containers/upgrade/topology.svg diff --git a/test/case/ietf_interfaces/bridge_vlan_separation/Readme.adoc b/test/case/containers/veth/Readme.adoc similarity index 100% rename from test/case/ietf_interfaces/bridge_vlan_separation/Readme.adoc rename to test/case/containers/veth/Readme.adoc diff --git a/test/case/infix_containers/veth/network_diagram.svg b/test/case/containers/veth/network_diagram.svg similarity index 100% rename from test/case/infix_containers/veth/network_diagram.svg rename to test/case/containers/veth/network_diagram.svg diff --git a/test/case/infix_containers/veth/test.adoc b/test/case/containers/veth/test.adoc similarity index 93% rename from test/case/infix_containers/veth/test.adoc rename to test/case/containers/veth/test.adoc index c5de9312..dd557d04 100644 --- a/test/case/infix_containers/veth/test.adoc +++ b/test/case/containers/veth/test.adoc @@ -1,6 +1,6 @@ === Container with VETH pair -ifdef::topdoc[:imagesdir: {topdoc}../../test/case/infix_containers/veth] +ifdef::topdoc[:imagesdir: {topdoc}../../test/case/containers/veth] ==== Description diff --git a/test/case/infix_containers/veth/test.py b/test/case/containers/veth/test.py similarity index 100% rename from test/case/infix_containers/veth/test.py rename to test/case/containers/veth/test.py diff --git a/test/case/infix_containers/veth/topology.dot b/test/case/containers/veth/topology.dot similarity index 100% rename from test/case/infix_containers/veth/topology.dot rename to test/case/containers/veth/topology.dot diff --git a/test/case/infix_containers/veth/topology.svg b/test/case/containers/veth/topology.svg similarity index 100% rename from test/case/infix_containers/veth/topology.svg rename to test/case/containers/veth/topology.svg diff --git a/test/case/ietf_interfaces/dual_bridge/Readme.adoc b/test/case/containers/volume/Readme.adoc similarity index 100% rename from test/case/ietf_interfaces/dual_bridge/Readme.adoc rename to test/case/containers/volume/Readme.adoc diff --git a/test/case/infix_containers/volume/test.adoc b/test/case/containers/volume/test.adoc similarity index 89% rename from test/case/infix_containers/volume/test.adoc rename to test/case/containers/volume/test.adoc index b5be4eda..6123f017 100644 --- a/test/case/infix_containers/volume/test.adoc +++ b/test/case/containers/volume/test.adoc @@ -1,6 +1,6 @@ === Container Volume Persistence -ifdef::topdoc[:imagesdir: {topdoc}../../test/case/infix_containers/volume] +ifdef::topdoc[:imagesdir: {topdoc}../../test/case/containers/volume] ==== Description diff --git a/test/case/infix_containers/volume/test.py b/test/case/containers/volume/test.py similarity index 100% rename from test/case/infix_containers/volume/test.py rename to test/case/containers/volume/test.py diff --git a/test/case/ietf_interfaces/iface_phys_address/topology.dot b/test/case/containers/volume/topology.dot similarity index 100% rename from test/case/ietf_interfaces/iface_phys_address/topology.dot rename to test/case/containers/volume/topology.dot diff --git a/test/case/ietf_interfaces/ipv4_autoconf/topology.svg b/test/case/containers/volume/topology.svg similarity index 100% rename from test/case/ietf_interfaces/ipv4_autoconf/topology.svg rename to test/case/containers/volume/topology.svg diff --git a/test/case/infix_dhcp/Readme.adoc b/test/case/dhcp/Readme.adoc similarity index 91% rename from test/case/infix_dhcp/Readme.adoc rename to test/case/dhcp/Readme.adoc index 3ba34b26..8f21546a 100644 --- a/test/case/infix_dhcp/Readme.adoc +++ b/test/case/dhcp/Readme.adoc @@ -1,7 +1,7 @@ :testgroup: -== infix-dhcp +== DHCP -Tests verifying DHCPv4/DHCPv6 client and server functionality in Infix: +Tests verifying DHCPv4/DHCPv6 client and server functionality: - Basic DHCPv4 client lease acquisition and configuration - DHCPv4 client with default gateway assignment diff --git a/test/case/infix_dhcp/all.yaml b/test/case/dhcp/all.yaml similarity index 100% rename from test/case/infix_dhcp/all.yaml rename to test/case/dhcp/all.yaml diff --git a/test/case/ietf_interfaces/iface_enable_disable/Readme.adoc b/test/case/dhcp/client6_basic/Readme.adoc similarity index 100% rename from test/case/ietf_interfaces/iface_enable_disable/Readme.adoc rename to test/case/dhcp/client6_basic/Readme.adoc diff --git a/test/case/infix_dhcp/client6_basic/test.py b/test/case/dhcp/client6_basic/test.py similarity index 100% rename from test/case/infix_dhcp/client6_basic/test.py rename to test/case/dhcp/client6_basic/test.py diff --git a/test/case/infix_dhcp/client6_basic/topology.dot b/test/case/dhcp/client6_basic/topology.dot similarity index 100% rename from test/case/infix_dhcp/client6_basic/topology.dot rename to test/case/dhcp/client6_basic/topology.dot diff --git a/test/case/ietf_interfaces/iface_phys_address/Readme.adoc b/test/case/dhcp/client6_prefix_delegation/Readme.adoc similarity index 100% rename from test/case/ietf_interfaces/iface_phys_address/Readme.adoc rename to test/case/dhcp/client6_prefix_delegation/Readme.adoc diff --git a/test/case/infix_dhcp/client6_prefix_delegation/test.py b/test/case/dhcp/client6_prefix_delegation/test.py similarity index 100% rename from test/case/infix_dhcp/client6_prefix_delegation/test.py rename to test/case/dhcp/client6_prefix_delegation/test.py diff --git a/test/case/infix_dhcp/client6_prefix_delegation/topology.dot b/test/case/dhcp/client6_prefix_delegation/topology.dot similarity index 100% rename from test/case/infix_dhcp/client6_prefix_delegation/topology.dot rename to test/case/dhcp/client6_prefix_delegation/topology.dot diff --git a/test/case/ietf_interfaces/ifalias/Readme.adoc b/test/case/dhcp/client_basic/Readme.adoc similarity index 100% rename from test/case/ietf_interfaces/ifalias/Readme.adoc rename to test/case/dhcp/client_basic/Readme.adoc diff --git a/test/case/infix_dhcp/client_basic/test.adoc b/test/case/dhcp/client_basic/test.adoc similarity index 80% rename from test/case/infix_dhcp/client_basic/test.adoc rename to test/case/dhcp/client_basic/test.adoc index 439c6ad6..ea9efd0f 100644 --- a/test/case/infix_dhcp/client_basic/test.adoc +++ b/test/case/dhcp/client_basic/test.adoc @@ -1,6 +1,6 @@ === DHCP Basic -ifdef::topdoc[:imagesdir: {topdoc}../../test/case/infix_dhcp/client_basic] +ifdef::topdoc[:imagesdir: {topdoc}../../test/case/dhcp/client_basic] ==== Description diff --git a/test/case/infix_dhcp/client_basic/test.py b/test/case/dhcp/client_basic/test.py similarity index 100% rename from test/case/infix_dhcp/client_basic/test.py rename to test/case/dhcp/client_basic/test.py diff --git a/test/case/infix_dhcp/client_basic/topology.dot b/test/case/dhcp/client_basic/topology.dot similarity index 100% rename from test/case/infix_dhcp/client_basic/topology.dot rename to test/case/dhcp/client_basic/topology.dot diff --git a/test/case/infix_dhcp/client_basic/topology.svg b/test/case/dhcp/client_basic/topology.svg similarity index 100% rename from test/case/infix_dhcp/client_basic/topology.svg rename to test/case/dhcp/client_basic/topology.svg diff --git a/test/case/ietf_interfaces/igmp_basic/Readme.adoc b/test/case/dhcp/client_default_gw/Readme.adoc similarity index 100% rename from test/case/ietf_interfaces/igmp_basic/Readme.adoc rename to test/case/dhcp/client_default_gw/Readme.adoc diff --git a/test/case/infix_dhcp/client_default_gw/test.adoc b/test/case/dhcp/client_default_gw/test.adoc similarity index 86% rename from test/case/infix_dhcp/client_default_gw/test.adoc rename to test/case/dhcp/client_default_gw/test.adoc index 1174f16c..5032cba1 100644 --- a/test/case/infix_dhcp/client_default_gw/test.adoc +++ b/test/case/dhcp/client_default_gw/test.adoc @@ -1,6 +1,6 @@ === DHCP Router -ifdef::topdoc[:imagesdir: {topdoc}../../test/case/infix_dhcp/client_default_gw] +ifdef::topdoc[:imagesdir: {topdoc}../../test/case/dhcp/client_default_gw] ==== Description diff --git a/test/case/infix_dhcp/client_default_gw/test.py b/test/case/dhcp/client_default_gw/test.py similarity index 100% rename from test/case/infix_dhcp/client_default_gw/test.py rename to test/case/dhcp/client_default_gw/test.py diff --git a/test/case/infix_dhcp/client_default_gw/topology.dot b/test/case/dhcp/client_default_gw/topology.dot similarity index 100% rename from test/case/infix_dhcp/client_default_gw/topology.dot rename to test/case/dhcp/client_default_gw/topology.dot diff --git a/test/case/infix_dhcp/client_default_gw/topology.svg b/test/case/dhcp/client_default_gw/topology.svg similarity index 100% rename from test/case/infix_dhcp/client_default_gw/topology.svg rename to test/case/dhcp/client_default_gw/topology.svg diff --git a/test/case/ietf_interfaces/igmp_vlan/Readme.adoc b/test/case/dhcp/client_hostname/Readme.adoc similarity index 100% rename from test/case/ietf_interfaces/igmp_vlan/Readme.adoc rename to test/case/dhcp/client_hostname/Readme.adoc diff --git a/test/case/infix_dhcp/client_hostname/test.adoc b/test/case/dhcp/client_hostname/test.adoc similarity index 89% rename from test/case/infix_dhcp/client_hostname/test.adoc rename to test/case/dhcp/client_hostname/test.adoc index 55756a6c..407800ff 100644 --- a/test/case/infix_dhcp/client_hostname/test.adoc +++ b/test/case/dhcp/client_hostname/test.adoc @@ -1,6 +1,6 @@ === DHCP Hostname Priority -ifdef::topdoc[:imagesdir: {topdoc}../../test/case/infix_dhcp/client_hostname] +ifdef::topdoc[:imagesdir: {topdoc}../../test/case/dhcp/client_hostname] ==== Description diff --git a/test/case/infix_dhcp/client_hostname/test.py b/test/case/dhcp/client_hostname/test.py similarity index 100% rename from test/case/infix_dhcp/client_hostname/test.py rename to test/case/dhcp/client_hostname/test.py diff --git a/test/case/infix_dhcp/client_hostname/topology.dot b/test/case/dhcp/client_hostname/topology.dot similarity index 100% rename from test/case/infix_dhcp/client_hostname/topology.dot rename to test/case/dhcp/client_hostname/topology.dot diff --git a/test/case/infix_dhcp/client_hostname/topology.svg b/test/case/dhcp/client_hostname/topology.svg similarity index 100% rename from test/case/infix_dhcp/client_hostname/topology.svg rename to test/case/dhcp/client_hostname/topology.svg diff --git a/test/case/ietf_interfaces/ipv4_address/Readme.adoc b/test/case/dhcp/client_routes/Readme.adoc similarity index 100% rename from test/case/ietf_interfaces/ipv4_address/Readme.adoc rename to test/case/dhcp/client_routes/Readme.adoc diff --git a/test/case/infix_dhcp/client_routes/test.adoc b/test/case/dhcp/client_routes/test.adoc similarity index 93% rename from test/case/infix_dhcp/client_routes/test.adoc rename to test/case/dhcp/client_routes/test.adoc index a4f288e1..5a35e4f4 100644 --- a/test/case/infix_dhcp/client_routes/test.adoc +++ b/test/case/dhcp/client_routes/test.adoc @@ -1,6 +1,6 @@ === DHCP option 121 vs option 3 -ifdef::topdoc[:imagesdir: {topdoc}../../test/case/infix_dhcp/client_routes] +ifdef::topdoc[:imagesdir: {topdoc}../../test/case/dhcp/client_routes] ==== Description diff --git a/test/case/infix_dhcp/client_routes/test.py b/test/case/dhcp/client_routes/test.py similarity index 100% rename from test/case/infix_dhcp/client_routes/test.py rename to test/case/dhcp/client_routes/test.py diff --git a/test/case/infix_dhcp/client_routes/topology.dot b/test/case/dhcp/client_routes/topology.dot similarity index 100% rename from test/case/infix_dhcp/client_routes/topology.dot rename to test/case/dhcp/client_routes/topology.dot diff --git a/test/case/infix_dhcp/client_routes/topology.svg b/test/case/dhcp/client_routes/topology.svg similarity index 100% rename from test/case/infix_dhcp/client_routes/topology.svg rename to test/case/dhcp/client_routes/topology.svg diff --git a/test/case/infix_dhcp/dhcp_client.yaml b/test/case/dhcp/dhcp_client.yaml similarity index 100% rename from test/case/infix_dhcp/dhcp_client.yaml rename to test/case/dhcp/dhcp_client.yaml diff --git a/test/case/infix_dhcp/dhcp_server.yaml b/test/case/dhcp/dhcp_server.yaml similarity index 100% rename from test/case/infix_dhcp/dhcp_server.yaml rename to test/case/dhcp/dhcp_server.yaml diff --git a/test/case/ietf_interfaces/ipv4_autoconf/Readme.adoc b/test/case/dhcp/server_basic/Readme.adoc similarity index 100% rename from test/case/ietf_interfaces/ipv4_autoconf/Readme.adoc rename to test/case/dhcp/server_basic/Readme.adoc diff --git a/test/case/infix_dhcp/server_basic/test.adoc b/test/case/dhcp/server_basic/test.adoc similarity index 90% rename from test/case/infix_dhcp/server_basic/test.adoc rename to test/case/dhcp/server_basic/test.adoc index e4a82c7e..d0b55b73 100644 --- a/test/case/infix_dhcp/server_basic/test.adoc +++ b/test/case/dhcp/server_basic/test.adoc @@ -1,6 +1,6 @@ === DHCP Server -ifdef::topdoc[:imagesdir: {topdoc}../../test/case/infix_dhcp/server_basic] +ifdef::topdoc[:imagesdir: {topdoc}../../test/case/dhcp/server_basic] ==== Description diff --git a/test/case/infix_dhcp/server_basic/test.py b/test/case/dhcp/server_basic/test.py similarity index 100% rename from test/case/infix_dhcp/server_basic/test.py rename to test/case/dhcp/server_basic/test.py diff --git a/test/case/infix_dhcp/server_basic/topology.dot b/test/case/dhcp/server_basic/topology.dot similarity index 100% rename from test/case/infix_dhcp/server_basic/topology.dot rename to test/case/dhcp/server_basic/topology.dot diff --git a/test/case/infix_dhcp/server_basic/topology.svg b/test/case/dhcp/server_basic/topology.svg similarity index 100% rename from test/case/infix_dhcp/server_basic/topology.svg rename to test/case/dhcp/server_basic/topology.svg diff --git a/test/case/ietf_interfaces/ipv6_address/Readme.adoc b/test/case/dhcp/server_host/Readme.adoc similarity index 100% rename from test/case/ietf_interfaces/ipv6_address/Readme.adoc rename to test/case/dhcp/server_host/Readme.adoc diff --git a/test/case/infix_dhcp/server_host/test.adoc b/test/case/dhcp/server_host/test.adoc similarity index 90% rename from test/case/infix_dhcp/server_host/test.adoc rename to test/case/dhcp/server_host/test.adoc index f2f699f7..2e636e0a 100644 --- a/test/case/infix_dhcp/server_host/test.adoc +++ b/test/case/dhcp/server_host/test.adoc @@ -1,6 +1,6 @@ === DHCP Server Static Host -ifdef::topdoc[:imagesdir: {topdoc}../../test/case/infix_dhcp/server_host] +ifdef::topdoc[:imagesdir: {topdoc}../../test/case/dhcp/server_host] ==== Description diff --git a/test/case/infix_dhcp/server_host/test.py b/test/case/dhcp/server_host/test.py similarity index 100% rename from test/case/infix_dhcp/server_host/test.py rename to test/case/dhcp/server_host/test.py diff --git a/test/case/infix_dhcp/server_host/topology.dot b/test/case/dhcp/server_host/topology.dot similarity index 100% rename from test/case/infix_dhcp/server_host/topology.dot rename to test/case/dhcp/server_host/topology.dot diff --git a/test/case/infix_dhcp/server_host/topology.svg b/test/case/dhcp/server_host/topology.svg similarity index 100% rename from test/case/infix_dhcp/server_host/topology.svg rename to test/case/dhcp/server_host/topology.svg diff --git a/test/case/ietf_interfaces/lag_basic/Readme.adoc b/test/case/dhcp/server_subnets/Readme.adoc similarity index 100% rename from test/case/ietf_interfaces/lag_basic/Readme.adoc rename to test/case/dhcp/server_subnets/Readme.adoc diff --git a/test/case/infix_dhcp/server_subnets/dhcp-subnets.svg b/test/case/dhcp/server_subnets/dhcp-subnets.svg similarity index 100% rename from test/case/infix_dhcp/server_subnets/dhcp-subnets.svg rename to test/case/dhcp/server_subnets/dhcp-subnets.svg diff --git a/test/case/infix_dhcp/server_subnets/test.adoc b/test/case/dhcp/server_subnets/test.adoc similarity index 95% rename from test/case/infix_dhcp/server_subnets/test.adoc rename to test/case/dhcp/server_subnets/test.adoc index b545553d..c5086704 100644 --- a/test/case/infix_dhcp/server_subnets/test.adoc +++ b/test/case/dhcp/server_subnets/test.adoc @@ -1,6 +1,6 @@ === DHCP Server Multiple Subnets -ifdef::topdoc[:imagesdir: {topdoc}../../test/case/infix_dhcp/server_subnets] +ifdef::topdoc[:imagesdir: {topdoc}../../test/case/dhcp/server_subnets] ==== Description diff --git a/test/case/infix_dhcp/server_subnets/test.py b/test/case/dhcp/server_subnets/test.py similarity index 100% rename from test/case/infix_dhcp/server_subnets/test.py rename to test/case/dhcp/server_subnets/test.py diff --git a/test/case/infix_dhcp/server_subnets/topology.dot b/test/case/dhcp/server_subnets/topology.dot similarity index 100% rename from test/case/infix_dhcp/server_subnets/topology.dot rename to test/case/dhcp/server_subnets/topology.dot diff --git a/test/case/infix_dhcp/server_subnets/topology.svg b/test/case/dhcp/server_subnets/topology.svg similarity index 100% rename from test/case/infix_dhcp/server_subnets/topology.svg rename to test/case/dhcp/server_subnets/topology.svg diff --git a/test/case/infix_firewall/Readme.adoc b/test/case/firewall/Readme.adoc similarity index 92% rename from test/case/infix_firewall/Readme.adoc rename to test/case/firewall/Readme.adoc index fd3e888c..5b9d9092 100644 --- a/test/case/infix_firewall/Readme.adoc +++ b/test/case/firewall/Readme.adoc @@ -1,5 +1,5 @@ :testgroup: -== infix-firewall +== Firewall <<< diff --git a/test/case/infix_firewall/all.yaml b/test/case/firewall/all.yaml similarity index 100% rename from test/case/infix_firewall/all.yaml rename to test/case/firewall/all.yaml diff --git a/test/case/ietf_interfaces/lag_failure/Readme.adoc b/test/case/firewall/basic/Readme.adoc similarity index 100% rename from test/case/ietf_interfaces/lag_failure/Readme.adoc rename to test/case/firewall/basic/Readme.adoc diff --git a/test/case/infix_firewall/basic/basic.svg b/test/case/firewall/basic/basic.svg similarity index 100% rename from test/case/infix_firewall/basic/basic.svg rename to test/case/firewall/basic/basic.svg diff --git a/test/case/infix_firewall/basic/test.adoc b/test/case/firewall/basic/test.adoc similarity index 92% rename from test/case/infix_firewall/basic/test.adoc rename to test/case/firewall/basic/test.adoc index 015e9a4c..78ec4c4a 100644 --- a/test/case/infix_firewall/basic/test.adoc +++ b/test/case/firewall/basic/test.adoc @@ -1,6 +1,6 @@ === Basic Firewall for End Devices -ifdef::topdoc[:imagesdir: {topdoc}../../test/case/infix_firewall/basic] +ifdef::topdoc[:imagesdir: {topdoc}../../test/case/firewall/basic] ==== Description diff --git a/test/case/infix_firewall/basic/test.py b/test/case/firewall/basic/test.py similarity index 100% rename from test/case/infix_firewall/basic/test.py rename to test/case/firewall/basic/test.py diff --git a/test/case/infix_firewall/basic/topology.dot b/test/case/firewall/basic/topology.dot similarity index 100% rename from test/case/infix_firewall/basic/topology.dot rename to test/case/firewall/basic/topology.dot diff --git a/test/case/infix_firewall/basic/topology.svg b/test/case/firewall/basic/topology.svg similarity index 100% rename from test/case/infix_firewall/basic/topology.svg rename to test/case/firewall/basic/topology.svg diff --git a/test/case/ietf_interfaces/routing_basic/Readme.adoc b/test/case/firewall/ipv6-lan-wan/Readme.adoc similarity index 100% rename from test/case/ietf_interfaces/routing_basic/Readme.adoc rename to test/case/firewall/ipv6-lan-wan/Readme.adoc diff --git a/test/case/infix_firewall/ipv6-lan-wan/lan-wan.svg b/test/case/firewall/ipv6-lan-wan/lan-wan.svg similarity index 100% rename from test/case/infix_firewall/ipv6-lan-wan/lan-wan.svg rename to test/case/firewall/ipv6-lan-wan/lan-wan.svg diff --git a/test/case/infix_firewall/ipv6-lan-wan/test.adoc b/test/case/firewall/ipv6-lan-wan/test.adoc similarity index 91% rename from test/case/infix_firewall/ipv6-lan-wan/test.adoc rename to test/case/firewall/ipv6-lan-wan/test.adoc index daf54e3d..8abe7413 100644 --- a/test/case/infix_firewall/ipv6-lan-wan/test.adoc +++ b/test/case/firewall/ipv6-lan-wan/test.adoc @@ -1,6 +1,6 @@ === IPv6 LAN-WAN Firewall -ifdef::topdoc[:imagesdir: {topdoc}../../test/case/infix_firewall/ipv6-lan-wan] +ifdef::topdoc[:imagesdir: {topdoc}../../test/case/firewall/ipv6-lan-wan] ==== Description diff --git a/test/case/infix_firewall/ipv6-lan-wan/test.py b/test/case/firewall/ipv6-lan-wan/test.py similarity index 100% rename from test/case/infix_firewall/ipv6-lan-wan/test.py rename to test/case/firewall/ipv6-lan-wan/test.py diff --git a/test/case/infix_firewall/ipv6-lan-wan/topology.dot b/test/case/firewall/ipv6-lan-wan/topology.dot similarity index 100% rename from test/case/infix_firewall/ipv6-lan-wan/topology.dot rename to test/case/firewall/ipv6-lan-wan/topology.dot diff --git a/test/case/infix_firewall/ipv6-lan-wan/topology.svg b/test/case/firewall/ipv6-lan-wan/topology.svg similarity index 100% rename from test/case/infix_firewall/ipv6-lan-wan/topology.svg rename to test/case/firewall/ipv6-lan-wan/topology.svg diff --git a/test/case/ietf_interfaces/speed_duplex_copper/Readme.adoc b/test/case/firewall/ipv6-zone-migration/Readme.adoc similarity index 100% rename from test/case/ietf_interfaces/speed_duplex_copper/Readme.adoc rename to test/case/firewall/ipv6-zone-migration/Readme.adoc diff --git a/test/case/infix_firewall/ipv6-zone-migration/test.adoc b/test/case/firewall/ipv6-zone-migration/test.adoc similarity index 91% rename from test/case/infix_firewall/ipv6-zone-migration/test.adoc rename to test/case/firewall/ipv6-zone-migration/test.adoc index a39387d2..e6a0e6f5 100644 --- a/test/case/infix_firewall/ipv6-zone-migration/test.adoc +++ b/test/case/firewall/ipv6-zone-migration/test.adoc @@ -1,6 +1,6 @@ === IPv6 Zone Migration with Custom Services -ifdef::topdoc[:imagesdir: {topdoc}../../test/case/infix_firewall/ipv6-zone-migration] +ifdef::topdoc[:imagesdir: {topdoc}../../test/case/firewall/ipv6-zone-migration] ==== Description diff --git a/test/case/infix_firewall/ipv6-zone-migration/test.py b/test/case/firewall/ipv6-zone-migration/test.py similarity index 100% rename from test/case/infix_firewall/ipv6-zone-migration/test.py rename to test/case/firewall/ipv6-zone-migration/test.py diff --git a/test/case/infix_firewall/ipv6-zone-migration/topology.dot b/test/case/firewall/ipv6-zone-migration/topology.dot similarity index 100% rename from test/case/infix_firewall/ipv6-zone-migration/topology.dot rename to test/case/firewall/ipv6-zone-migration/topology.dot diff --git a/test/case/infix_firewall/ipv6-zone-migration/topology.svg b/test/case/firewall/ipv6-zone-migration/topology.svg similarity index 100% rename from test/case/infix_firewall/ipv6-zone-migration/topology.svg rename to test/case/firewall/ipv6-zone-migration/topology.svg diff --git a/test/case/ietf_interfaces/static_multicast_filters/Readme.adoc b/test/case/firewall/lan-wan/Readme.adoc similarity index 100% rename from test/case/ietf_interfaces/static_multicast_filters/Readme.adoc rename to test/case/firewall/lan-wan/Readme.adoc diff --git a/test/case/infix_firewall/lan-wan/lan-wan.svg b/test/case/firewall/lan-wan/lan-wan.svg similarity index 100% rename from test/case/infix_firewall/lan-wan/lan-wan.svg rename to test/case/firewall/lan-wan/lan-wan.svg diff --git a/test/case/infix_firewall/lan-wan/test.adoc b/test/case/firewall/lan-wan/test.adoc similarity index 92% rename from test/case/infix_firewall/lan-wan/test.adoc rename to test/case/firewall/lan-wan/test.adoc index 666cd496..714e90a4 100644 --- a/test/case/infix_firewall/lan-wan/test.adoc +++ b/test/case/firewall/lan-wan/test.adoc @@ -1,6 +1,6 @@ === LAN-WAN Firewall with Masquerading -ifdef::topdoc[:imagesdir: {topdoc}../../test/case/infix_firewall/lan-wan] +ifdef::topdoc[:imagesdir: {topdoc}../../test/case/firewall/lan-wan] ==== Description diff --git a/test/case/infix_firewall/lan-wan/test.py b/test/case/firewall/lan-wan/test.py similarity index 100% rename from test/case/infix_firewall/lan-wan/test.py rename to test/case/firewall/lan-wan/test.py diff --git a/test/case/infix_firewall/lan-wan/topology.dot b/test/case/firewall/lan-wan/topology.dot similarity index 100% rename from test/case/infix_firewall/lan-wan/topology.dot rename to test/case/firewall/lan-wan/topology.dot diff --git a/test/case/infix_firewall/lan-wan/topology.svg b/test/case/firewall/lan-wan/topology.svg similarity index 100% rename from test/case/infix_firewall/lan-wan/topology.svg rename to test/case/firewall/lan-wan/topology.svg diff --git a/test/case/ietf_interfaces/verify_all_interface_types/Readme.adoc b/test/case/firewall/wan-dmz-lan/Readme.adoc similarity index 100% rename from test/case/ietf_interfaces/verify_all_interface_types/Readme.adoc rename to test/case/firewall/wan-dmz-lan/Readme.adoc diff --git a/test/case/infix_firewall/wan-dmz-lan/test.adoc b/test/case/firewall/wan-dmz-lan/test.adoc similarity index 92% rename from test/case/infix_firewall/wan-dmz-lan/test.adoc rename to test/case/firewall/wan-dmz-lan/test.adoc index 1b533a11..dc525556 100644 --- a/test/case/infix_firewall/wan-dmz-lan/test.adoc +++ b/test/case/firewall/wan-dmz-lan/test.adoc @@ -1,6 +1,6 @@ === WAN-DMZ-LAN Firewall with Port Forwarding -ifdef::topdoc[:imagesdir: {topdoc}../../test/case/infix_firewall/wan-dmz-lan] +ifdef::topdoc[:imagesdir: {topdoc}../../test/case/firewall/wan-dmz-lan] ==== Description diff --git a/test/case/infix_firewall/wan-dmz-lan/test.py b/test/case/firewall/wan-dmz-lan/test.py similarity index 100% rename from test/case/infix_firewall/wan-dmz-lan/test.py rename to test/case/firewall/wan-dmz-lan/test.py diff --git a/test/case/infix_firewall/wan-dmz-lan/topology.dot b/test/case/firewall/wan-dmz-lan/topology.dot similarity index 100% rename from test/case/infix_firewall/wan-dmz-lan/topology.dot rename to test/case/firewall/wan-dmz-lan/topology.dot diff --git a/test/case/infix_firewall/wan-dmz-lan/topology.svg b/test/case/firewall/wan-dmz-lan/topology.svg similarity index 100% rename from test/case/infix_firewall/wan-dmz-lan/topology.svg rename to test/case/firewall/wan-dmz-lan/topology.svg diff --git a/test/case/infix_firewall/wan-dmz-lan/wan-dmz-lan.svg b/test/case/firewall/wan-dmz-lan/wan-dmz-lan.svg similarity index 100% rename from test/case/infix_firewall/wan-dmz-lan/wan-dmz-lan.svg rename to test/case/firewall/wan-dmz-lan/wan-dmz-lan.svg diff --git a/test/case/ietf_hardware/Readme.adoc b/test/case/hardware/Readme.adoc similarity index 67% rename from test/case/ietf_hardware/Readme.adoc rename to test/case/hardware/Readme.adoc index 9f6199cb..088069b1 100644 --- a/test/case/ietf_hardware/Readme.adoc +++ b/test/case/hardware/Readme.adoc @@ -1,7 +1,7 @@ :testgroup: -== ietf-hardware +== Hardware -Tests verifying IETF standard hardware monitoring and management: +Tests verifying hardware monitoring and management: - USB device detection and enumeration - Multiple USB port management and device handling diff --git a/test/case/ietf_hardware/all.yaml b/test/case/hardware/all.yaml similarity index 100% rename from test/case/ietf_hardware/all.yaml rename to test/case/hardware/all.yaml diff --git a/test/case/ietf_interfaces/veth_delete/Readme.adoc b/test/case/hardware/usb/Readme.adoc similarity index 100% rename from test/case/ietf_interfaces/veth_delete/Readme.adoc rename to test/case/hardware/usb/Readme.adoc diff --git a/test/case/ietf_hardware/usb/test.adoc b/test/case/hardware/usb/test.adoc similarity index 93% rename from test/case/ietf_hardware/usb/test.adoc rename to test/case/hardware/usb/test.adoc index 991aaa50..69d0c01f 100644 --- a/test/case/ietf_hardware/usb/test.adoc +++ b/test/case/hardware/usb/test.adoc @@ -1,6 +1,6 @@ === USB configuration -ifdef::topdoc[:imagesdir: {topdoc}../../test/case/ietf_hardware/usb] +ifdef::topdoc[:imagesdir: {topdoc}../../test/case/hardware/usb] ==== Description diff --git a/test/case/ietf_hardware/usb/test.py b/test/case/hardware/usb/test.py similarity index 100% rename from test/case/ietf_hardware/usb/test.py rename to test/case/hardware/usb/test.py diff --git a/test/case/ietf_hardware/usb_two_ports/topology.dot b/test/case/hardware/usb/topology.dot similarity index 100% rename from test/case/ietf_hardware/usb_two_ports/topology.dot rename to test/case/hardware/usb/topology.dot diff --git a/test/case/ietf_interfaces/ipv4_address/topology.svg b/test/case/hardware/usb/topology.svg similarity index 100% rename from test/case/ietf_interfaces/ipv4_address/topology.svg rename to test/case/hardware/usb/topology.svg diff --git a/test/case/ietf_interfaces/vlan_iface_termination/Readme.adoc b/test/case/hardware/usb_two_ports/Readme.adoc similarity index 100% rename from test/case/ietf_interfaces/vlan_iface_termination/Readme.adoc rename to test/case/hardware/usb_two_ports/Readme.adoc diff --git a/test/case/ietf_hardware/usb_two_ports/test.adoc b/test/case/hardware/usb_two_ports/test.adoc similarity index 88% rename from test/case/ietf_hardware/usb_two_ports/test.adoc rename to test/case/hardware/usb_two_ports/test.adoc index b9579f37..98d10f66 100644 --- a/test/case/ietf_hardware/usb_two_ports/test.adoc +++ b/test/case/hardware/usb_two_ports/test.adoc @@ -1,6 +1,6 @@ === USB configuration with two USB ports -ifdef::topdoc[:imagesdir: {topdoc}../../test/case/ietf_hardware/usb_two_ports] +ifdef::topdoc[:imagesdir: {topdoc}../../test/case/hardware/usb_two_ports] ==== Description diff --git a/test/case/ietf_hardware/usb_two_ports/test.py b/test/case/hardware/usb_two_ports/test.py similarity index 100% rename from test/case/ietf_hardware/usb_two_ports/test.py rename to test/case/hardware/usb_two_ports/test.py diff --git a/test/case/ietf_interfaces/ipv4_address/topology.dot b/test/case/hardware/usb_two_ports/topology.dot similarity index 100% rename from test/case/ietf_interfaces/ipv4_address/topology.dot rename to test/case/hardware/usb_two_ports/topology.dot diff --git a/test/case/ietf_syslog/advanced_compare/topology.svg b/test/case/hardware/usb_two_ports/topology.svg similarity index 100% rename from test/case/ietf_syslog/advanced_compare/topology.svg rename to test/case/hardware/usb_two_ports/topology.svg diff --git a/test/case/ietf_interfaces/Readme.adoc b/test/case/interfaces/Readme.adoc similarity index 95% rename from test/case/ietf_interfaces/Readme.adoc rename to test/case/interfaces/Readme.adoc index 34dbcc57..ad2d20f8 100644 --- a/test/case/ietf_interfaces/Readme.adoc +++ b/test/case/interfaces/Readme.adoc @@ -1,7 +1,7 @@ :testgroup: -== ietf-interfaces +== Interfaces -Tests verifying IETF standard interface configuration and management: +Tests verifying interface configuration and management: - VLAN interface configuration and connectivity - IPv4 and IPv6 address assignment and management diff --git a/test/case/ietf_interfaces/all.yaml b/test/case/interfaces/all.yaml similarity index 100% rename from test/case/ietf_interfaces/all.yaml rename to test/case/interfaces/all.yaml diff --git a/test/case/ietf_interfaces/bridge.yaml b/test/case/interfaces/bridge.yaml similarity index 100% rename from test/case/ietf_interfaces/bridge.yaml rename to test/case/interfaces/bridge.yaml diff --git a/test/case/ietf_interfaces/vlan_ping/Readme.adoc b/test/case/interfaces/bridge_basic/Readme.adoc similarity index 100% rename from test/case/ietf_interfaces/vlan_ping/Readme.adoc rename to test/case/interfaces/bridge_basic/Readme.adoc diff --git a/test/case/ietf_interfaces/bridge_basic/test.adoc b/test/case/interfaces/bridge_basic/test.adoc similarity index 85% rename from test/case/ietf_interfaces/bridge_basic/test.adoc rename to test/case/interfaces/bridge_basic/test.adoc index 89c130a2..58ee1c23 100644 --- a/test/case/ietf_interfaces/bridge_basic/test.adoc +++ b/test/case/interfaces/bridge_basic/test.adoc @@ -1,6 +1,6 @@ === Bridge basic -ifdef::topdoc[:imagesdir: {topdoc}../../test/case/ietf_interfaces/bridge_basic] +ifdef::topdoc[:imagesdir: {topdoc}../../test/case/interfaces/bridge_basic] ==== Description diff --git a/test/case/ietf_interfaces/bridge_basic/test.py b/test/case/interfaces/bridge_basic/test.py similarity index 100% rename from test/case/ietf_interfaces/bridge_basic/test.py rename to test/case/interfaces/bridge_basic/test.py diff --git a/test/case/ietf_interfaces/bridge_basic/topology.dot b/test/case/interfaces/bridge_basic/topology.dot similarity index 100% rename from test/case/ietf_interfaces/bridge_basic/topology.dot rename to test/case/interfaces/bridge_basic/topology.dot diff --git a/test/case/ietf_interfaces/bridge_basic/topology.svg b/test/case/interfaces/bridge_basic/topology.svg similarity index 100% rename from test/case/ietf_interfaces/bridge_basic/topology.svg rename to test/case/interfaces/bridge_basic/topology.svg diff --git a/test/case/ietf_interfaces/vlan_qos/Readme.adoc b/test/case/interfaces/bridge_fwd_dual_dut/Readme.adoc similarity index 100% rename from test/case/ietf_interfaces/vlan_qos/Readme.adoc rename to test/case/interfaces/bridge_fwd_dual_dut/Readme.adoc diff --git a/test/case/ietf_interfaces/bridge_fwd_dual_dut/test.adoc b/test/case/interfaces/bridge_fwd_dual_dut/test.adoc similarity index 93% rename from test/case/ietf_interfaces/bridge_fwd_dual_dut/test.adoc rename to test/case/interfaces/bridge_fwd_dual_dut/test.adoc index a597fd0a..aa6f1e77 100644 --- a/test/case/ietf_interfaces/bridge_fwd_dual_dut/test.adoc +++ b/test/case/interfaces/bridge_fwd_dual_dut/test.adoc @@ -1,6 +1,6 @@ === Bridge forwarding dual DUTs -ifdef::topdoc[:imagesdir: {topdoc}../../test/case/ietf_interfaces/bridge_fwd_dual_dut] +ifdef::topdoc[:imagesdir: {topdoc}../../test/case/interfaces/bridge_fwd_dual_dut] ==== Description diff --git a/test/case/ietf_interfaces/bridge_fwd_dual_dut/test.py b/test/case/interfaces/bridge_fwd_dual_dut/test.py similarity index 100% rename from test/case/ietf_interfaces/bridge_fwd_dual_dut/test.py rename to test/case/interfaces/bridge_fwd_dual_dut/test.py diff --git a/test/case/ietf_interfaces/bridge_fwd_dual_dut/topology.dot b/test/case/interfaces/bridge_fwd_dual_dut/topology.dot similarity index 100% rename from test/case/ietf_interfaces/bridge_fwd_dual_dut/topology.dot rename to test/case/interfaces/bridge_fwd_dual_dut/topology.dot diff --git a/test/case/ietf_interfaces/bridge_fwd_dual_dut/topology.svg b/test/case/interfaces/bridge_fwd_dual_dut/topology.svg similarity index 100% rename from test/case/ietf_interfaces/bridge_fwd_dual_dut/topology.svg rename to test/case/interfaces/bridge_fwd_dual_dut/topology.svg diff --git a/test/case/ietf_routing/ospf_basic/Readme.adoc b/test/case/interfaces/bridge_fwd_sgl_dut/Readme.adoc similarity index 100% rename from test/case/ietf_routing/ospf_basic/Readme.adoc rename to test/case/interfaces/bridge_fwd_sgl_dut/Readme.adoc diff --git a/test/case/ietf_interfaces/bridge_fwd_sgl_dut/test.adoc b/test/case/interfaces/bridge_fwd_sgl_dut/test.adoc similarity index 92% rename from test/case/ietf_interfaces/bridge_fwd_sgl_dut/test.adoc rename to test/case/interfaces/bridge_fwd_sgl_dut/test.adoc index a7092895..3469e71e 100644 --- a/test/case/ietf_interfaces/bridge_fwd_sgl_dut/test.adoc +++ b/test/case/interfaces/bridge_fwd_sgl_dut/test.adoc @@ -1,6 +1,6 @@ === Bridge forwarding single DUTs -ifdef::topdoc[:imagesdir: {topdoc}../../test/case/ietf_interfaces/bridge_fwd_sgl_dut] +ifdef::topdoc[:imagesdir: {topdoc}../../test/case/interfaces/bridge_fwd_sgl_dut] ==== Description diff --git a/test/case/ietf_interfaces/bridge_fwd_sgl_dut/test.py b/test/case/interfaces/bridge_fwd_sgl_dut/test.py similarity index 100% rename from test/case/ietf_interfaces/bridge_fwd_sgl_dut/test.py rename to test/case/interfaces/bridge_fwd_sgl_dut/test.py diff --git a/test/case/ietf_interfaces/bridge_fwd_sgl_dut/topology.dot b/test/case/interfaces/bridge_fwd_sgl_dut/topology.dot similarity index 100% rename from test/case/ietf_interfaces/bridge_fwd_sgl_dut/topology.dot rename to test/case/interfaces/bridge_fwd_sgl_dut/topology.dot diff --git a/test/case/ietf_interfaces/bridge_fwd_sgl_dut/topology.svg b/test/case/interfaces/bridge_fwd_sgl_dut/topology.svg similarity index 100% rename from test/case/ietf_interfaces/bridge_fwd_sgl_dut/topology.svg rename to test/case/interfaces/bridge_fwd_sgl_dut/topology.svg diff --git a/test/case/ietf_routing/ospf_bfd/Readme.adoc b/test/case/interfaces/bridge_stp_basic/Readme.adoc similarity index 100% rename from test/case/ietf_routing/ospf_bfd/Readme.adoc rename to test/case/interfaces/bridge_stp_basic/Readme.adoc diff --git a/test/case/ietf_interfaces/bridge_stp_basic/test.adoc b/test/case/interfaces/bridge_stp_basic/test.adoc similarity index 92% rename from test/case/ietf_interfaces/bridge_stp_basic/test.adoc rename to test/case/interfaces/bridge_stp_basic/test.adoc index 8ef9ecaa..b51e2b84 100644 --- a/test/case/ietf_interfaces/bridge_stp_basic/test.adoc +++ b/test/case/interfaces/bridge_stp_basic/test.adoc @@ -1,6 +1,6 @@ === Bridge STP Basic -ifdef::topdoc[:imagesdir: {topdoc}../../test/case/ietf_interfaces/bridge_stp_basic] +ifdef::topdoc[:imagesdir: {topdoc}../../test/case/interfaces/bridge_stp_basic] ==== Description diff --git a/test/case/ietf_interfaces/bridge_stp_basic/test.py b/test/case/interfaces/bridge_stp_basic/test.py similarity index 100% rename from test/case/ietf_interfaces/bridge_stp_basic/test.py rename to test/case/interfaces/bridge_stp_basic/test.py diff --git a/test/case/ietf_interfaces/bridge_stp_basic/topology.dot b/test/case/interfaces/bridge_stp_basic/topology.dot similarity index 100% rename from test/case/ietf_interfaces/bridge_stp_basic/topology.dot rename to test/case/interfaces/bridge_stp_basic/topology.dot diff --git a/test/case/ietf_interfaces/bridge_stp_basic/topology.svg b/test/case/interfaces/bridge_stp_basic/topology.svg similarity index 100% rename from test/case/ietf_interfaces/bridge_stp_basic/topology.svg rename to test/case/interfaces/bridge_stp_basic/topology.svg diff --git a/test/case/ietf_routing/ospf_default_route_advertise/Readme.adoc b/test/case/interfaces/bridge_veth/Readme.adoc similarity index 100% rename from test/case/ietf_routing/ospf_default_route_advertise/Readme.adoc rename to test/case/interfaces/bridge_veth/Readme.adoc diff --git a/test/case/ietf_interfaces/bridge_veth/test.adoc b/test/case/interfaces/bridge_veth/test.adoc similarity index 88% rename from test/case/ietf_interfaces/bridge_veth/test.adoc rename to test/case/interfaces/bridge_veth/test.adoc index 4625012b..b3826e90 100644 --- a/test/case/ietf_interfaces/bridge_veth/test.adoc +++ b/test/case/interfaces/bridge_veth/test.adoc @@ -1,6 +1,6 @@ === Bridge with a physical port and a veth -ifdef::topdoc[:imagesdir: {topdoc}../../test/case/ietf_interfaces/bridge_veth] +ifdef::topdoc[:imagesdir: {topdoc}../../test/case/interfaces/bridge_veth] ==== Description diff --git a/test/case/ietf_interfaces/bridge_veth/test.py b/test/case/interfaces/bridge_veth/test.py similarity index 100% rename from test/case/ietf_interfaces/bridge_veth/test.py rename to test/case/interfaces/bridge_veth/test.py diff --git a/test/case/ietf_interfaces/bridge_veth/topology.dot b/test/case/interfaces/bridge_veth/topology.dot similarity index 100% rename from test/case/ietf_interfaces/bridge_veth/topology.dot rename to test/case/interfaces/bridge_veth/topology.dot diff --git a/test/case/ietf_interfaces/bridge_veth/topology.svg b/test/case/interfaces/bridge_veth/topology.svg similarity index 100% rename from test/case/ietf_interfaces/bridge_veth/topology.svg rename to test/case/interfaces/bridge_veth/topology.svg diff --git a/test/case/ietf_routing/ospf_multiarea/Readme.adoc b/test/case/interfaces/bridge_vlan/Readme.adoc similarity index 100% rename from test/case/ietf_routing/ospf_multiarea/Readme.adoc rename to test/case/interfaces/bridge_vlan/Readme.adoc diff --git a/test/case/ietf_interfaces/bridge_vlan/bridge-vlan.svg b/test/case/interfaces/bridge_vlan/bridge-vlan.svg similarity index 100% rename from test/case/ietf_interfaces/bridge_vlan/bridge-vlan.svg rename to test/case/interfaces/bridge_vlan/bridge-vlan.svg diff --git a/test/case/ietf_interfaces/bridge_vlan/test.adoc b/test/case/interfaces/bridge_vlan/test.adoc similarity index 85% rename from test/case/ietf_interfaces/bridge_vlan/test.adoc rename to test/case/interfaces/bridge_vlan/test.adoc index a6deb7cb..dc19a724 100644 --- a/test/case/ietf_interfaces/bridge_vlan/test.adoc +++ b/test/case/interfaces/bridge_vlan/test.adoc @@ -1,6 +1,6 @@ === Bridge VLAN -ifdef::topdoc[:imagesdir: {topdoc}../../test/case/ietf_interfaces/bridge_vlan] +ifdef::topdoc[:imagesdir: {topdoc}../../test/case/interfaces/bridge_vlan] ==== Description diff --git a/test/case/ietf_interfaces/bridge_vlan/test.py b/test/case/interfaces/bridge_vlan/test.py similarity index 100% rename from test/case/ietf_interfaces/bridge_vlan/test.py rename to test/case/interfaces/bridge_vlan/test.py diff --git a/test/case/ietf_interfaces/bridge_vlan/topology.dot b/test/case/interfaces/bridge_vlan/topology.dot similarity index 100% rename from test/case/ietf_interfaces/bridge_vlan/topology.dot rename to test/case/interfaces/bridge_vlan/topology.dot diff --git a/test/case/ietf_interfaces/bridge_vlan/topology.svg b/test/case/interfaces/bridge_vlan/topology.svg similarity index 100% rename from test/case/ietf_interfaces/bridge_vlan/topology.svg rename to test/case/interfaces/bridge_vlan/topology.svg diff --git a/test/case/ietf_routing/ospf_unnumbered_interface/Readme.adoc b/test/case/interfaces/bridge_vlan_separation/Readme.adoc similarity index 100% rename from test/case/ietf_routing/ospf_unnumbered_interface/Readme.adoc rename to test/case/interfaces/bridge_vlan_separation/Readme.adoc diff --git a/test/case/ietf_interfaces/bridge_vlan_separation/test.adoc b/test/case/interfaces/bridge_vlan_separation/test.adoc similarity index 95% rename from test/case/ietf_interfaces/bridge_vlan_separation/test.adoc rename to test/case/interfaces/bridge_vlan_separation/test.adoc index 12d6aab7..ae06a6e1 100644 --- a/test/case/ietf_interfaces/bridge_vlan_separation/test.adoc +++ b/test/case/interfaces/bridge_vlan_separation/test.adoc @@ -1,6 +1,6 @@ === Bridge VLAN separation -ifdef::topdoc[:imagesdir: {topdoc}../../test/case/ietf_interfaces/bridge_vlan_separation] +ifdef::topdoc[:imagesdir: {topdoc}../../test/case/interfaces/bridge_vlan_separation] ==== Description diff --git a/test/case/ietf_interfaces/bridge_vlan_separation/test.py b/test/case/interfaces/bridge_vlan_separation/test.py similarity index 100% rename from test/case/ietf_interfaces/bridge_vlan_separation/test.py rename to test/case/interfaces/bridge_vlan_separation/test.py diff --git a/test/case/ietf_interfaces/bridge_vlan_separation/topology.dot b/test/case/interfaces/bridge_vlan_separation/topology.dot similarity index 100% rename from test/case/ietf_interfaces/bridge_vlan_separation/topology.dot rename to test/case/interfaces/bridge_vlan_separation/topology.dot diff --git a/test/case/ietf_interfaces/bridge_vlan_separation/topology.svg b/test/case/interfaces/bridge_vlan_separation/topology.svg similarity index 100% rename from test/case/ietf_interfaces/bridge_vlan_separation/topology.svg rename to test/case/interfaces/bridge_vlan_separation/topology.svg diff --git a/test/case/ietf_routing/route_pref_255/Readme.adoc b/test/case/interfaces/dual_bridge/Readme.adoc similarity index 100% rename from test/case/ietf_routing/route_pref_255/Readme.adoc rename to test/case/interfaces/dual_bridge/Readme.adoc diff --git a/test/case/ietf_interfaces/dual_bridge/test.adoc b/test/case/interfaces/dual_bridge/test.adoc similarity index 87% rename from test/case/ietf_interfaces/dual_bridge/test.adoc rename to test/case/interfaces/dual_bridge/test.adoc index 3e9f03e1..440e6b11 100644 --- a/test/case/ietf_interfaces/dual_bridge/test.adoc +++ b/test/case/interfaces/dual_bridge/test.adoc @@ -1,6 +1,6 @@ === Dual bridges on one device -ifdef::topdoc[:imagesdir: {topdoc}../../test/case/ietf_interfaces/dual_bridge] +ifdef::topdoc[:imagesdir: {topdoc}../../test/case/interfaces/dual_bridge] ==== Description diff --git a/test/case/ietf_interfaces/dual_bridge/test.py b/test/case/interfaces/dual_bridge/test.py similarity index 100% rename from test/case/ietf_interfaces/dual_bridge/test.py rename to test/case/interfaces/dual_bridge/test.py diff --git a/test/case/ietf_interfaces/ifalias/topology.dot b/test/case/interfaces/dual_bridge/topology.dot similarity index 100% rename from test/case/ietf_interfaces/ifalias/topology.dot rename to test/case/interfaces/dual_bridge/topology.dot diff --git a/test/case/ietf_interfaces/ipv6_address/topology.svg b/test/case/interfaces/dual_bridge/topology.svg similarity index 100% rename from test/case/ietf_interfaces/ipv6_address/topology.svg rename to test/case/interfaces/dual_bridge/topology.svg diff --git a/test/case/ietf_routing/route_pref_dhcp/Readme.adoc b/test/case/interfaces/iface_enable_disable/Readme.adoc similarity index 100% rename from test/case/ietf_routing/route_pref_dhcp/Readme.adoc rename to test/case/interfaces/iface_enable_disable/Readme.adoc diff --git a/test/case/ietf_interfaces/iface_enable_disable/test.adoc b/test/case/interfaces/iface_enable_disable/test.adoc similarity index 87% rename from test/case/ietf_interfaces/iface_enable_disable/test.adoc rename to test/case/interfaces/iface_enable_disable/test.adoc index da3fff3e..ba0abf80 100644 --- a/test/case/ietf_interfaces/iface_enable_disable/test.adoc +++ b/test/case/interfaces/iface_enable_disable/test.adoc @@ -1,6 +1,6 @@ === Interface status -ifdef::topdoc[:imagesdir: {topdoc}../../test/case/ietf_interfaces/iface_enable_disable] +ifdef::topdoc[:imagesdir: {topdoc}../../test/case/interfaces/iface_enable_disable] ==== Description diff --git a/test/case/ietf_interfaces/iface_enable_disable/test.py b/test/case/interfaces/iface_enable_disable/test.py similarity index 100% rename from test/case/ietf_interfaces/iface_enable_disable/test.py rename to test/case/interfaces/iface_enable_disable/test.py diff --git a/test/case/ietf_interfaces/iface_enable_disable/topology.dot b/test/case/interfaces/iface_enable_disable/topology.dot similarity index 100% rename from test/case/ietf_interfaces/iface_enable_disable/topology.dot rename to test/case/interfaces/iface_enable_disable/topology.dot diff --git a/test/case/ietf_interfaces/iface_enable_disable/topology.svg b/test/case/interfaces/iface_enable_disable/topology.svg similarity index 100% rename from test/case/ietf_interfaces/iface_enable_disable/topology.svg rename to test/case/interfaces/iface_enable_disable/topology.svg diff --git a/test/case/ietf_routing/route_pref_ospf/Readme.adoc b/test/case/interfaces/iface_phys_address/Readme.adoc similarity index 100% rename from test/case/ietf_routing/route_pref_ospf/Readme.adoc rename to test/case/interfaces/iface_phys_address/Readme.adoc diff --git a/test/case/ietf_interfaces/iface_phys_address/test.adoc b/test/case/interfaces/iface_phys_address/test.adoc similarity index 90% rename from test/case/ietf_interfaces/iface_phys_address/test.adoc rename to test/case/interfaces/iface_phys_address/test.adoc index 31101b38..a78817a9 100644 --- a/test/case/ietf_interfaces/iface_phys_address/test.adoc +++ b/test/case/interfaces/iface_phys_address/test.adoc @@ -1,6 +1,6 @@ === Custom MAC address on interface -ifdef::topdoc[:imagesdir: {topdoc}../../test/case/ietf_interfaces/iface_phys_address] +ifdef::topdoc[:imagesdir: {topdoc}../../test/case/interfaces/iface_phys_address] ==== Description diff --git a/test/case/ietf_interfaces/iface_phys_address/test.py b/test/case/interfaces/iface_phys_address/test.py similarity index 100% rename from test/case/ietf_interfaces/iface_phys_address/test.py rename to test/case/interfaces/iface_phys_address/test.py diff --git a/test/case/ietf_interfaces/ipv4_autoconf/topology.dot b/test/case/interfaces/iface_phys_address/topology.dot similarity index 100% rename from test/case/ietf_interfaces/ipv4_autoconf/topology.dot rename to test/case/interfaces/iface_phys_address/topology.dot diff --git a/test/case/ietf_interfaces/speed_duplex_copper/topology.svg b/test/case/interfaces/iface_phys_address/topology.svg similarity index 100% rename from test/case/ietf_interfaces/speed_duplex_copper/topology.svg rename to test/case/interfaces/iface_phys_address/topology.svg diff --git a/test/case/ietf_routing/static_routing/Readme.adoc b/test/case/interfaces/ifalias/Readme.adoc similarity index 100% rename from test/case/ietf_routing/static_routing/Readme.adoc rename to test/case/interfaces/ifalias/Readme.adoc diff --git a/test/case/ietf_interfaces/ifalias/test.adoc b/test/case/interfaces/ifalias/test.adoc similarity index 85% rename from test/case/ietf_interfaces/ifalias/test.adoc rename to test/case/interfaces/ifalias/test.adoc index 0f8062a7..a46ccbb3 100644 --- a/test/case/ietf_interfaces/ifalias/test.adoc +++ b/test/case/interfaces/ifalias/test.adoc @@ -1,6 +1,6 @@ === Interface Description (ifAlias) -ifdef::topdoc[:imagesdir: {topdoc}../../test/case/ietf_interfaces/ifalias] +ifdef::topdoc[:imagesdir: {topdoc}../../test/case/interfaces/ifalias] ==== Description diff --git a/test/case/ietf_interfaces/ifalias/test.py b/test/case/interfaces/ifalias/test.py similarity index 100% rename from test/case/ietf_interfaces/ifalias/test.py rename to test/case/interfaces/ifalias/test.py diff --git a/test/case/ietf_interfaces/ipv6_address/topology.dot b/test/case/interfaces/ifalias/topology.dot similarity index 100% rename from test/case/ietf_interfaces/ipv6_address/topology.dot rename to test/case/interfaces/ifalias/topology.dot diff --git a/test/case/ietf_system/upgrade/topology.svg b/test/case/interfaces/ifalias/topology.svg similarity index 100% rename from test/case/ietf_system/upgrade/topology.svg rename to test/case/interfaces/ifalias/topology.svg diff --git a/test/case/ietf_interfaces/igmp.yaml b/test/case/interfaces/igmp.yaml similarity index 100% rename from test/case/ietf_interfaces/igmp.yaml rename to test/case/interfaces/igmp.yaml diff --git a/test/case/ietf_syslog/advanced_compare/Readme.adoc b/test/case/interfaces/igmp_basic/Readme.adoc similarity index 100% rename from test/case/ietf_syslog/advanced_compare/Readme.adoc rename to test/case/interfaces/igmp_basic/Readme.adoc diff --git a/test/case/ietf_interfaces/igmp_basic/test.adoc b/test/case/interfaces/igmp_basic/test.adoc similarity index 92% rename from test/case/ietf_interfaces/igmp_basic/test.adoc rename to test/case/interfaces/igmp_basic/test.adoc index 976c110e..502aaa42 100644 --- a/test/case/ietf_interfaces/igmp_basic/test.adoc +++ b/test/case/interfaces/igmp_basic/test.adoc @@ -1,6 +1,6 @@ === IGMP basic -ifdef::topdoc[:imagesdir: {topdoc}../../test/case/ietf_interfaces/igmp_basic] +ifdef::topdoc[:imagesdir: {topdoc}../../test/case/interfaces/igmp_basic] ==== Description diff --git a/test/case/ietf_interfaces/igmp_basic/test.py b/test/case/interfaces/igmp_basic/test.py similarity index 100% rename from test/case/ietf_interfaces/igmp_basic/test.py rename to test/case/interfaces/igmp_basic/test.py diff --git a/test/case/ietf_interfaces/igmp_basic/topology.dot b/test/case/interfaces/igmp_basic/topology.dot similarity index 100% rename from test/case/ietf_interfaces/igmp_basic/topology.dot rename to test/case/interfaces/igmp_basic/topology.dot diff --git a/test/case/ietf_interfaces/igmp_basic/topology.svg b/test/case/interfaces/igmp_basic/topology.svg similarity index 100% rename from test/case/ietf_interfaces/igmp_basic/topology.svg rename to test/case/interfaces/igmp_basic/topology.svg diff --git a/test/case/ietf_syslog/basic/Readme.adoc b/test/case/interfaces/igmp_vlan/Readme.adoc similarity index 100% rename from test/case/ietf_syslog/basic/Readme.adoc rename to test/case/interfaces/igmp_vlan/Readme.adoc diff --git a/test/case/ietf_interfaces/igmp_vlan/test.adoc b/test/case/interfaces/igmp_vlan/test.adoc similarity index 95% rename from test/case/ietf_interfaces/igmp_vlan/test.adoc rename to test/case/interfaces/igmp_vlan/test.adoc index 4b8bc856..eb81bd8c 100644 --- a/test/case/ietf_interfaces/igmp_vlan/test.adoc +++ b/test/case/interfaces/igmp_vlan/test.adoc @@ -1,6 +1,6 @@ === IGMP VLAN -ifdef::topdoc[:imagesdir: {topdoc}../../test/case/ietf_interfaces/igmp_vlan] +ifdef::topdoc[:imagesdir: {topdoc}../../test/case/interfaces/igmp_vlan] ==== Description diff --git a/test/case/ietf_interfaces/igmp_vlan/test.py b/test/case/interfaces/igmp_vlan/test.py similarity index 100% rename from test/case/ietf_interfaces/igmp_vlan/test.py rename to test/case/interfaces/igmp_vlan/test.py diff --git a/test/case/ietf_interfaces/igmp_vlan/topology.dot b/test/case/interfaces/igmp_vlan/topology.dot similarity index 100% rename from test/case/ietf_interfaces/igmp_vlan/topology.dot rename to test/case/interfaces/igmp_vlan/topology.dot diff --git a/test/case/ietf_interfaces/igmp_vlan/topology.svg b/test/case/interfaces/igmp_vlan/topology.svg similarity index 100% rename from test/case/ietf_interfaces/igmp_vlan/topology.svg rename to test/case/interfaces/igmp_vlan/topology.svg diff --git a/test/case/ietf_syslog/hostname_filter/Readme.adoc b/test/case/interfaces/ipv4_address/Readme.adoc similarity index 100% rename from test/case/ietf_syslog/hostname_filter/Readme.adoc rename to test/case/interfaces/ipv4_address/Readme.adoc diff --git a/test/case/ietf_interfaces/ipv4_address/test.adoc b/test/case/interfaces/ipv4_address/test.adoc similarity index 85% rename from test/case/ietf_interfaces/ipv4_address/test.adoc rename to test/case/interfaces/ipv4_address/test.adoc index 5d9ed8b3..da1b2857 100644 --- a/test/case/ietf_interfaces/ipv4_address/test.adoc +++ b/test/case/interfaces/ipv4_address/test.adoc @@ -1,6 +1,6 @@ === Interface with IPv4 -ifdef::topdoc[:imagesdir: {topdoc}../../test/case/ietf_interfaces/ipv4_address] +ifdef::topdoc[:imagesdir: {topdoc}../../test/case/interfaces/ipv4_address] ==== Description diff --git a/test/case/ietf_interfaces/ipv4_address/test.py b/test/case/interfaces/ipv4_address/test.py similarity index 100% rename from test/case/ietf_interfaces/ipv4_address/test.py rename to test/case/interfaces/ipv4_address/test.py diff --git a/test/case/ietf_syslog/advanced_compare/topology.dot b/test/case/interfaces/ipv4_address/topology.dot similarity index 100% rename from test/case/ietf_syslog/advanced_compare/topology.dot rename to test/case/interfaces/ipv4_address/topology.dot diff --git a/test/case/ietf_syslog/basic/topology.svg b/test/case/interfaces/ipv4_address/topology.svg similarity index 100% rename from test/case/ietf_syslog/basic/topology.svg rename to test/case/interfaces/ipv4_address/topology.svg diff --git a/test/case/ietf_syslog/pattern_match/Readme.adoc b/test/case/interfaces/ipv4_autoconf/Readme.adoc similarity index 100% rename from test/case/ietf_syslog/pattern_match/Readme.adoc rename to test/case/interfaces/ipv4_autoconf/Readme.adoc diff --git a/test/case/ietf_interfaces/ipv4_autoconf/test.adoc b/test/case/interfaces/ipv4_autoconf/test.adoc similarity index 89% rename from test/case/ietf_interfaces/ipv4_autoconf/test.adoc rename to test/case/interfaces/ipv4_autoconf/test.adoc index 32943a63..f63a71c4 100644 --- a/test/case/ietf_interfaces/ipv4_autoconf/test.adoc +++ b/test/case/interfaces/ipv4_autoconf/test.adoc @@ -1,6 +1,6 @@ === IPv4 link-local -ifdef::topdoc[:imagesdir: {topdoc}../../test/case/ietf_interfaces/ipv4_autoconf] +ifdef::topdoc[:imagesdir: {topdoc}../../test/case/interfaces/ipv4_autoconf] ==== Description diff --git a/test/case/ietf_interfaces/ipv4_autoconf/test.py b/test/case/interfaces/ipv4_autoconf/test.py similarity index 100% rename from test/case/ietf_interfaces/ipv4_autoconf/test.py rename to test/case/interfaces/ipv4_autoconf/test.py diff --git a/test/case/ietf_system/upgrade/topology.dot b/test/case/interfaces/ipv4_autoconf/topology.dot similarity index 100% rename from test/case/ietf_system/upgrade/topology.dot rename to test/case/interfaces/ipv4_autoconf/topology.dot diff --git a/test/case/infix_containers/basic/topology.svg b/test/case/interfaces/ipv4_autoconf/topology.svg similarity index 100% rename from test/case/infix_containers/basic/topology.svg rename to test/case/interfaces/ipv4_autoconf/topology.svg diff --git a/test/case/ietf_syslog/property_filter/Readme.adoc b/test/case/interfaces/ipv6_address/Readme.adoc similarity index 100% rename from test/case/ietf_syslog/property_filter/Readme.adoc rename to test/case/interfaces/ipv6_address/Readme.adoc diff --git a/test/case/ietf_interfaces/ipv6_address/test.adoc b/test/case/interfaces/ipv6_address/test.adoc similarity index 85% rename from test/case/ietf_interfaces/ipv6_address/test.adoc rename to test/case/interfaces/ipv6_address/test.adoc index de19c0ef..048e1c39 100644 --- a/test/case/ietf_interfaces/ipv6_address/test.adoc +++ b/test/case/interfaces/ipv6_address/test.adoc @@ -1,6 +1,6 @@ === Interface IPv6 autoconf for bridges -ifdef::topdoc[:imagesdir: {topdoc}../../test/case/ietf_interfaces/ipv6_address] +ifdef::topdoc[:imagesdir: {topdoc}../../test/case/interfaces/ipv6_address] ==== Description diff --git a/test/case/ietf_interfaces/ipv6_address/test.py b/test/case/interfaces/ipv6_address/test.py similarity index 100% rename from test/case/ietf_interfaces/ipv6_address/test.py rename to test/case/interfaces/ipv6_address/test.py diff --git a/test/case/infix_containers/basic/topology.dot b/test/case/interfaces/ipv6_address/topology.dot similarity index 100% rename from test/case/infix_containers/basic/topology.dot rename to test/case/interfaces/ipv6_address/topology.dot diff --git a/test/case/infix_containers/environment/topology.svg b/test/case/interfaces/ipv6_address/topology.svg similarity index 100% rename from test/case/infix_containers/environment/topology.svg rename to test/case/interfaces/ipv6_address/topology.svg diff --git a/test/case/ietf_interfaces/lag.yaml b/test/case/interfaces/lag.yaml similarity index 100% rename from test/case/ietf_interfaces/lag.yaml rename to test/case/interfaces/lag.yaml diff --git a/test/case/ietf_syslog/remote/Readme.adoc b/test/case/interfaces/lag_basic/Readme.adoc similarity index 100% rename from test/case/ietf_syslog/remote/Readme.adoc rename to test/case/interfaces/lag_basic/Readme.adoc diff --git a/test/case/ietf_interfaces/lag_basic/lag-basic.svg b/test/case/interfaces/lag_basic/lag-basic.svg similarity index 100% rename from test/case/ietf_interfaces/lag_basic/lag-basic.svg rename to test/case/interfaces/lag_basic/lag-basic.svg diff --git a/test/case/ietf_interfaces/lag_basic/test.adoc b/test/case/interfaces/lag_basic/test.adoc similarity index 90% rename from test/case/ietf_interfaces/lag_basic/test.adoc rename to test/case/interfaces/lag_basic/test.adoc index 9985f2a3..443928d8 100644 --- a/test/case/ietf_interfaces/lag_basic/test.adoc +++ b/test/case/interfaces/lag_basic/test.adoc @@ -1,6 +1,6 @@ === Ling Aggregation Basic -ifdef::topdoc[:imagesdir: {topdoc}../../test/case/ietf_interfaces/lag_basic] +ifdef::topdoc[:imagesdir: {topdoc}../../test/case/interfaces/lag_basic] ==== Description diff --git a/test/case/ietf_interfaces/lag_basic/test.py b/test/case/interfaces/lag_basic/test.py similarity index 100% rename from test/case/ietf_interfaces/lag_basic/test.py rename to test/case/interfaces/lag_basic/test.py diff --git a/test/case/ietf_interfaces/lag_basic/topology.dot b/test/case/interfaces/lag_basic/topology.dot similarity index 100% rename from test/case/ietf_interfaces/lag_basic/topology.dot rename to test/case/interfaces/lag_basic/topology.dot diff --git a/test/case/ietf_interfaces/lag_basic/topology.svg b/test/case/interfaces/lag_basic/topology.svg similarity index 100% rename from test/case/ietf_interfaces/lag_basic/topology.svg rename to test/case/interfaces/lag_basic/topology.svg diff --git a/test/case/ietf_system/add_delete_user/Readme.adoc b/test/case/interfaces/lag_failure/Readme.adoc similarity index 100% rename from test/case/ietf_system/add_delete_user/Readme.adoc rename to test/case/interfaces/lag_failure/Readme.adoc diff --git a/test/case/ietf_interfaces/lag_failure/lag-failure.svg b/test/case/interfaces/lag_failure/lag-failure.svg similarity index 100% rename from test/case/ietf_interfaces/lag_failure/lag-failure.svg rename to test/case/interfaces/lag_failure/lag-failure.svg diff --git a/test/case/ietf_interfaces/lag_failure/test.adoc b/test/case/interfaces/lag_failure/test.adoc similarity index 90% rename from test/case/ietf_interfaces/lag_failure/test.adoc rename to test/case/interfaces/lag_failure/test.adoc index d50a375a..eed97320 100644 --- a/test/case/ietf_interfaces/lag_failure/test.adoc +++ b/test/case/interfaces/lag_failure/test.adoc @@ -1,6 +1,6 @@ === LACP Aggregate w/ Degraded Link -ifdef::topdoc[:imagesdir: {topdoc}../../test/case/ietf_interfaces/lag_failure] +ifdef::topdoc[:imagesdir: {topdoc}../../test/case/interfaces/lag_failure] ==== Description diff --git a/test/case/ietf_interfaces/lag_failure/test.py b/test/case/interfaces/lag_failure/test.py similarity index 100% rename from test/case/ietf_interfaces/lag_failure/test.py rename to test/case/interfaces/lag_failure/test.py diff --git a/test/case/ietf_interfaces/lag_failure/topology.dot b/test/case/interfaces/lag_failure/topology.dot similarity index 100% rename from test/case/ietf_interfaces/lag_failure/topology.dot rename to test/case/interfaces/lag_failure/topology.dot diff --git a/test/case/ietf_interfaces/lag_failure/topology.svg b/test/case/interfaces/lag_failure/topology.svg similarity index 100% rename from test/case/ietf_interfaces/lag_failure/topology.svg rename to test/case/interfaces/lag_failure/topology.svg diff --git a/test/case/ietf_system/hostname/Readme.adoc b/test/case/interfaces/routing_basic/Readme.adoc similarity index 100% rename from test/case/ietf_system/hostname/Readme.adoc rename to test/case/interfaces/routing_basic/Readme.adoc diff --git a/test/case/ietf_interfaces/routing_basic/test.adoc b/test/case/interfaces/routing_basic/test.adoc similarity index 88% rename from test/case/ietf_interfaces/routing_basic/test.adoc rename to test/case/interfaces/routing_basic/test.adoc index facaab42..fb1ce7aa 100644 --- a/test/case/ietf_interfaces/routing_basic/test.adoc +++ b/test/case/interfaces/routing_basic/test.adoc @@ -1,6 +1,6 @@ === Routing basic -ifdef::topdoc[:imagesdir: {topdoc}../../test/case/ietf_interfaces/routing_basic] +ifdef::topdoc[:imagesdir: {topdoc}../../test/case/interfaces/routing_basic] ==== Description diff --git a/test/case/ietf_interfaces/routing_basic/test.py b/test/case/interfaces/routing_basic/test.py similarity index 100% rename from test/case/ietf_interfaces/routing_basic/test.py rename to test/case/interfaces/routing_basic/test.py diff --git a/test/case/ietf_interfaces/routing_basic/topology.dot b/test/case/interfaces/routing_basic/topology.dot similarity index 100% rename from test/case/ietf_interfaces/routing_basic/topology.dot rename to test/case/interfaces/routing_basic/topology.dot diff --git a/test/case/ietf_interfaces/routing_basic/topology.svg b/test/case/interfaces/routing_basic/topology.svg similarity index 100% rename from test/case/ietf_interfaces/routing_basic/topology.svg rename to test/case/interfaces/routing_basic/topology.svg diff --git a/test/case/ietf_system/ntp_client/Readme.adoc b/test/case/interfaces/speed_duplex_copper/Readme.adoc similarity index 100% rename from test/case/ietf_system/ntp_client/Readme.adoc rename to test/case/interfaces/speed_duplex_copper/Readme.adoc diff --git a/test/case/ietf_interfaces/speed_duplex_copper/test.adoc b/test/case/interfaces/speed_duplex_copper/test.adoc similarity index 92% rename from test/case/ietf_interfaces/speed_duplex_copper/test.adoc rename to test/case/interfaces/speed_duplex_copper/test.adoc index c4fbbd9b..8e8848d7 100644 --- a/test/case/ietf_interfaces/speed_duplex_copper/test.adoc +++ b/test/case/interfaces/speed_duplex_copper/test.adoc @@ -1,6 +1,6 @@ === Interface Speed Duplex (Copper) -ifdef::topdoc[:imagesdir: {topdoc}../../test/case/ietf_interfaces/speed_duplex_copper] +ifdef::topdoc[:imagesdir: {topdoc}../../test/case/interfaces/speed_duplex_copper] ==== Description diff --git a/test/case/ietf_interfaces/speed_duplex_copper/test.py b/test/case/interfaces/speed_duplex_copper/test.py similarity index 100% rename from test/case/ietf_interfaces/speed_duplex_copper/test.py rename to test/case/interfaces/speed_duplex_copper/test.py diff --git a/test/case/ietf_interfaces/speed_duplex_copper/topology.dot b/test/case/interfaces/speed_duplex_copper/topology.dot similarity index 100% rename from test/case/ietf_interfaces/speed_duplex_copper/topology.dot rename to test/case/interfaces/speed_duplex_copper/topology.dot diff --git a/test/case/infix_containers/upgrade/topology.svg b/test/case/interfaces/speed_duplex_copper/topology.svg similarity index 100% rename from test/case/infix_containers/upgrade/topology.svg rename to test/case/interfaces/speed_duplex_copper/topology.svg diff --git a/test/case/ietf_system/timezone/Readme.adoc b/test/case/interfaces/static_multicast_filters/Readme.adoc similarity index 100% rename from test/case/ietf_system/timezone/Readme.adoc rename to test/case/interfaces/static_multicast_filters/Readme.adoc diff --git a/test/case/ietf_interfaces/static_multicast_filters/test.adoc b/test/case/interfaces/static_multicast_filters/test.adoc similarity index 93% rename from test/case/ietf_interfaces/static_multicast_filters/test.adoc rename to test/case/interfaces/static_multicast_filters/test.adoc index 9ffa6c28..e36f9156 100644 --- a/test/case/ietf_interfaces/static_multicast_filters/test.adoc +++ b/test/case/interfaces/static_multicast_filters/test.adoc @@ -1,6 +1,6 @@ === Static multicast filters -ifdef::topdoc[:imagesdir: {topdoc}../../test/case/ietf_interfaces/static_multicast_filters] +ifdef::topdoc[:imagesdir: {topdoc}../../test/case/interfaces/static_multicast_filters] ==== Description diff --git a/test/case/ietf_interfaces/static_multicast_filters/test.py b/test/case/interfaces/static_multicast_filters/test.py similarity index 100% rename from test/case/ietf_interfaces/static_multicast_filters/test.py rename to test/case/interfaces/static_multicast_filters/test.py diff --git a/test/case/ietf_interfaces/static_multicast_filters/topology.dot b/test/case/interfaces/static_multicast_filters/topology.dot similarity index 100% rename from test/case/ietf_interfaces/static_multicast_filters/topology.dot rename to test/case/interfaces/static_multicast_filters/topology.dot diff --git a/test/case/ietf_interfaces/static_multicast_filters/topology.svg b/test/case/interfaces/static_multicast_filters/topology.svg similarity index 100% rename from test/case/ietf_interfaces/static_multicast_filters/topology.svg rename to test/case/interfaces/static_multicast_filters/topology.svg diff --git a/test/case/ietf_interfaces/tunnel_basic/Readme.adoc b/test/case/interfaces/tunnel_basic/Readme.adoc similarity index 100% rename from test/case/ietf_interfaces/tunnel_basic/Readme.adoc rename to test/case/interfaces/tunnel_basic/Readme.adoc diff --git a/test/case/ietf_interfaces/tunnel_basic/gre.adoc b/test/case/interfaces/tunnel_basic/gre.adoc similarity index 89% rename from test/case/ietf_interfaces/tunnel_basic/gre.adoc rename to test/case/interfaces/tunnel_basic/gre.adoc index 96fcbbbe..745f8ec9 100644 --- a/test/case/ietf_interfaces/tunnel_basic/gre.adoc +++ b/test/case/interfaces/tunnel_basic/gre.adoc @@ -1,6 +1,6 @@ === GRE point-to-point -ifdef::topdoc[:imagesdir: {topdoc}../../test/case/ietf_interfaces/tunnel_basic] +ifdef::topdoc[:imagesdir: {topdoc}../../test/case/interfaces/tunnel_basic] ==== Description diff --git a/test/case/ietf_interfaces/tunnel_basic/gre.py b/test/case/interfaces/tunnel_basic/gre.py similarity index 100% rename from test/case/ietf_interfaces/tunnel_basic/gre.py rename to test/case/interfaces/tunnel_basic/gre.py diff --git a/test/case/ietf_interfaces/tunnel_basic/gretap.adoc b/test/case/interfaces/tunnel_basic/gretap.adoc similarity index 89% rename from test/case/ietf_interfaces/tunnel_basic/gretap.adoc rename to test/case/interfaces/tunnel_basic/gretap.adoc index d08dfeb1..b358f766 100644 --- a/test/case/ietf_interfaces/tunnel_basic/gretap.adoc +++ b/test/case/interfaces/tunnel_basic/gretap.adoc @@ -1,6 +1,6 @@ === GRETAP point-to-point -ifdef::topdoc[:imagesdir: {topdoc}../../test/case/ietf_interfaces/tunnel_basic] +ifdef::topdoc[:imagesdir: {topdoc}../../test/case/interfaces/tunnel_basic] ==== Description diff --git a/test/case/ietf_interfaces/tunnel_basic/gretap.py b/test/case/interfaces/tunnel_basic/gretap.py similarity index 100% rename from test/case/ietf_interfaces/tunnel_basic/gretap.py rename to test/case/interfaces/tunnel_basic/gretap.py diff --git a/test/case/ietf_interfaces/tunnel_basic/test.py b/test/case/interfaces/tunnel_basic/test.py similarity index 100% rename from test/case/ietf_interfaces/tunnel_basic/test.py rename to test/case/interfaces/tunnel_basic/test.py diff --git a/test/case/ietf_interfaces/tunnel_basic/test.yaml b/test/case/interfaces/tunnel_basic/test.yaml similarity index 100% rename from test/case/ietf_interfaces/tunnel_basic/test.yaml rename to test/case/interfaces/tunnel_basic/test.yaml diff --git a/test/case/ietf_interfaces/tunnel_basic/topology.dot b/test/case/interfaces/tunnel_basic/topology.dot similarity index 100% rename from test/case/ietf_interfaces/tunnel_basic/topology.dot rename to test/case/interfaces/tunnel_basic/topology.dot diff --git a/test/case/ietf_interfaces/tunnel_basic/topology.svg b/test/case/interfaces/tunnel_basic/topology.svg similarity index 100% rename from test/case/ietf_interfaces/tunnel_basic/topology.svg rename to test/case/interfaces/tunnel_basic/topology.svg diff --git a/test/case/ietf_interfaces/tunnel_basic/vxlan.adoc b/test/case/interfaces/tunnel_basic/vxlan.adoc similarity index 89% rename from test/case/ietf_interfaces/tunnel_basic/vxlan.adoc rename to test/case/interfaces/tunnel_basic/vxlan.adoc index 900f08a0..3b4cba0f 100644 --- a/test/case/ietf_interfaces/tunnel_basic/vxlan.adoc +++ b/test/case/interfaces/tunnel_basic/vxlan.adoc @@ -1,6 +1,6 @@ === VXLAN point-to-point -ifdef::topdoc[:imagesdir: {topdoc}../../test/case/ietf_interfaces/tunnel_basic] +ifdef::topdoc[:imagesdir: {topdoc}../../test/case/interfaces/tunnel_basic] ==== Description diff --git a/test/case/ietf_interfaces/tunnel_basic/vxlan.py b/test/case/interfaces/tunnel_basic/vxlan.py similarity index 100% rename from test/case/ietf_interfaces/tunnel_basic/vxlan.py rename to test/case/interfaces/tunnel_basic/vxlan.py diff --git a/test/case/ietf_interfaces/tunnel_bridged/Readme.adoc b/test/case/interfaces/tunnel_bridged/Readme.adoc similarity index 100% rename from test/case/ietf_interfaces/tunnel_bridged/Readme.adoc rename to test/case/interfaces/tunnel_bridged/Readme.adoc diff --git a/test/case/ietf_interfaces/tunnel_bridged/gretap.adoc b/test/case/interfaces/tunnel_bridged/gretap.adoc similarity index 88% rename from test/case/ietf_interfaces/tunnel_bridged/gretap.adoc rename to test/case/interfaces/tunnel_bridged/gretap.adoc index 3c0f984d..e664f3f8 100644 --- a/test/case/ietf_interfaces/tunnel_bridged/gretap.adoc +++ b/test/case/interfaces/tunnel_bridged/gretap.adoc @@ -1,6 +1,6 @@ === GRETAP bridged with physical interface -ifdef::topdoc[:imagesdir: {topdoc}../../test/case/ietf_interfaces/tunnel_bridged] +ifdef::topdoc[:imagesdir: {topdoc}../../test/case/interfaces/tunnel_bridged] ==== Description diff --git a/test/case/ietf_interfaces/tunnel_bridged/gretap.py b/test/case/interfaces/tunnel_bridged/gretap.py similarity index 100% rename from test/case/ietf_interfaces/tunnel_bridged/gretap.py rename to test/case/interfaces/tunnel_bridged/gretap.py diff --git a/test/case/ietf_interfaces/tunnel_bridged/test.py b/test/case/interfaces/tunnel_bridged/test.py similarity index 100% rename from test/case/ietf_interfaces/tunnel_bridged/test.py rename to test/case/interfaces/tunnel_bridged/test.py diff --git a/test/case/ietf_interfaces/tunnel_bridged/test.yaml b/test/case/interfaces/tunnel_bridged/test.yaml similarity index 100% rename from test/case/ietf_interfaces/tunnel_bridged/test.yaml rename to test/case/interfaces/tunnel_bridged/test.yaml diff --git a/test/case/ietf_interfaces/tunnel_bridged/topology.dot b/test/case/interfaces/tunnel_bridged/topology.dot similarity index 100% rename from test/case/ietf_interfaces/tunnel_bridged/topology.dot rename to test/case/interfaces/tunnel_bridged/topology.dot diff --git a/test/case/ietf_interfaces/tunnel_bridged/topology.svg b/test/case/interfaces/tunnel_bridged/topology.svg similarity index 100% rename from test/case/ietf_interfaces/tunnel_bridged/topology.svg rename to test/case/interfaces/tunnel_bridged/topology.svg diff --git a/test/case/ietf_interfaces/tunnel_bridged/vxlan.adoc b/test/case/interfaces/tunnel_bridged/vxlan.adoc similarity index 88% rename from test/case/ietf_interfaces/tunnel_bridged/vxlan.adoc rename to test/case/interfaces/tunnel_bridged/vxlan.adoc index 7f6c8a25..d6a463d6 100644 --- a/test/case/ietf_interfaces/tunnel_bridged/vxlan.adoc +++ b/test/case/interfaces/tunnel_bridged/vxlan.adoc @@ -1,6 +1,6 @@ === VXLAN bridged with physical interface -ifdef::topdoc[:imagesdir: {topdoc}../../test/case/ietf_interfaces/tunnel_bridged] +ifdef::topdoc[:imagesdir: {topdoc}../../test/case/interfaces/tunnel_bridged] ==== Description diff --git a/test/case/ietf_interfaces/tunnel_bridged/vxlan.py b/test/case/interfaces/tunnel_bridged/vxlan.py similarity index 100% rename from test/case/ietf_interfaces/tunnel_bridged/vxlan.py rename to test/case/interfaces/tunnel_bridged/vxlan.py diff --git a/test/case/ietf_interfaces/tunnel_ttl/Readme.adoc b/test/case/interfaces/tunnel_ttl/Readme.adoc similarity index 100% rename from test/case/ietf_interfaces/tunnel_ttl/Readme.adoc rename to test/case/interfaces/tunnel_ttl/Readme.adoc diff --git a/test/case/ietf_interfaces/tunnel_ttl/gre.adoc b/test/case/interfaces/tunnel_ttl/gre.adoc similarity index 92% rename from test/case/ietf_interfaces/tunnel_ttl/gre.adoc rename to test/case/interfaces/tunnel_ttl/gre.adoc index 6b42cc0a..fcbfa296 100644 --- a/test/case/ietf_interfaces/tunnel_ttl/gre.adoc +++ b/test/case/interfaces/tunnel_ttl/gre.adoc @@ -1,6 +1,6 @@ === GRE Tunnel TTL verification -ifdef::topdoc[:imagesdir: {topdoc}../../test/case/ietf_interfaces/tunnel_ttl] +ifdef::topdoc[:imagesdir: {topdoc}../../test/case/interfaces/tunnel_ttl] ==== Description diff --git a/test/case/ietf_interfaces/tunnel_ttl/gre.py b/test/case/interfaces/tunnel_ttl/gre.py similarity index 100% rename from test/case/ietf_interfaces/tunnel_ttl/gre.py rename to test/case/interfaces/tunnel_ttl/gre.py diff --git a/test/case/ietf_interfaces/tunnel_ttl/test.py b/test/case/interfaces/tunnel_ttl/test.py similarity index 100% rename from test/case/ietf_interfaces/tunnel_ttl/test.py rename to test/case/interfaces/tunnel_ttl/test.py diff --git a/test/case/ietf_interfaces/tunnel_ttl/test.yaml b/test/case/interfaces/tunnel_ttl/test.yaml similarity index 100% rename from test/case/ietf_interfaces/tunnel_ttl/test.yaml rename to test/case/interfaces/tunnel_ttl/test.yaml diff --git a/test/case/ietf_interfaces/tunnel_ttl/topology.dot b/test/case/interfaces/tunnel_ttl/topology.dot similarity index 100% rename from test/case/ietf_interfaces/tunnel_ttl/topology.dot rename to test/case/interfaces/tunnel_ttl/topology.dot diff --git a/test/case/ietf_interfaces/tunnel_ttl/topology.svg b/test/case/interfaces/tunnel_ttl/topology.svg similarity index 100% rename from test/case/ietf_interfaces/tunnel_ttl/topology.svg rename to test/case/interfaces/tunnel_ttl/topology.svg diff --git a/test/case/ietf_interfaces/tunnel_ttl/vxlan.adoc b/test/case/interfaces/tunnel_ttl/vxlan.adoc similarity index 92% rename from test/case/ietf_interfaces/tunnel_ttl/vxlan.adoc rename to test/case/interfaces/tunnel_ttl/vxlan.adoc index 5e89c57e..022df7c7 100644 --- a/test/case/ietf_interfaces/tunnel_ttl/vxlan.adoc +++ b/test/case/interfaces/tunnel_ttl/vxlan.adoc @@ -1,6 +1,6 @@ === VXLAN Tunnel TTL verification -ifdef::topdoc[:imagesdir: {topdoc}../../test/case/ietf_interfaces/tunnel_ttl] +ifdef::topdoc[:imagesdir: {topdoc}../../test/case/interfaces/tunnel_ttl] ==== Description diff --git a/test/case/ietf_interfaces/tunnel_ttl/vxlan.py b/test/case/interfaces/tunnel_ttl/vxlan.py similarity index 100% rename from test/case/ietf_interfaces/tunnel_ttl/vxlan.py rename to test/case/interfaces/tunnel_ttl/vxlan.py diff --git a/test/case/ietf_interfaces/tunnels.yaml b/test/case/interfaces/tunnels.yaml similarity index 100% rename from test/case/ietf_interfaces/tunnels.yaml rename to test/case/interfaces/tunnels.yaml diff --git a/test/case/ietf_system/timezone_utc_offset/Readme.adoc b/test/case/interfaces/verify_all_interface_types/Readme.adoc similarity index 100% rename from test/case/ietf_system/timezone_utc_offset/Readme.adoc rename to test/case/interfaces/verify_all_interface_types/Readme.adoc diff --git a/test/case/ietf_interfaces/verify_all_interface_types/test.adoc b/test/case/interfaces/verify_all_interface_types/test.adoc similarity index 94% rename from test/case/ietf_interfaces/verify_all_interface_types/test.adoc rename to test/case/interfaces/verify_all_interface_types/test.adoc index 5392a3bb..fc15c7d0 100644 --- a/test/case/ietf_interfaces/verify_all_interface_types/test.adoc +++ b/test/case/interfaces/verify_all_interface_types/test.adoc @@ -1,6 +1,6 @@ === Verify that all interface types can be created -ifdef::topdoc[:imagesdir: {topdoc}../../test/case/ietf_interfaces/verify_all_interface_types] +ifdef::topdoc[:imagesdir: {topdoc}../../test/case/interfaces/verify_all_interface_types] ==== Description diff --git a/test/case/ietf_interfaces/verify_all_interface_types/test.py b/test/case/interfaces/verify_all_interface_types/test.py similarity index 100% rename from test/case/ietf_interfaces/verify_all_interface_types/test.py rename to test/case/interfaces/verify_all_interface_types/test.py diff --git a/test/case/ietf_interfaces/verify_all_interface_types/topology.dot b/test/case/interfaces/verify_all_interface_types/topology.dot similarity index 100% rename from test/case/ietf_interfaces/verify_all_interface_types/topology.dot rename to test/case/interfaces/verify_all_interface_types/topology.dot diff --git a/test/case/ietf_interfaces/verify_all_interface_types/topology.svg b/test/case/interfaces/verify_all_interface_types/topology.svg similarity index 100% rename from test/case/ietf_interfaces/verify_all_interface_types/topology.svg rename to test/case/interfaces/verify_all_interface_types/topology.svg diff --git a/test/case/ietf_system/upgrade/Readme.adoc b/test/case/interfaces/veth_delete/Readme.adoc similarity index 100% rename from test/case/ietf_system/upgrade/Readme.adoc rename to test/case/interfaces/veth_delete/Readme.adoc diff --git a/test/case/ietf_interfaces/veth_delete/test.adoc b/test/case/interfaces/veth_delete/test.adoc similarity index 90% rename from test/case/ietf_interfaces/veth_delete/test.adoc rename to test/case/interfaces/veth_delete/test.adoc index 0053ae6a..95b9992e 100644 --- a/test/case/ietf_interfaces/veth_delete/test.adoc +++ b/test/case/interfaces/veth_delete/test.adoc @@ -1,6 +1,6 @@ === Verify that VETH pairs can be deleted -ifdef::topdoc[:imagesdir: {topdoc}../../test/case/ietf_interfaces/veth_delete] +ifdef::topdoc[:imagesdir: {topdoc}../../test/case/interfaces/veth_delete] ==== Description diff --git a/test/case/ietf_interfaces/veth_delete/test.py b/test/case/interfaces/veth_delete/test.py similarity index 100% rename from test/case/ietf_interfaces/veth_delete/test.py rename to test/case/interfaces/veth_delete/test.py diff --git a/test/case/ietf_interfaces/veth_delete/topology.dot b/test/case/interfaces/veth_delete/topology.dot similarity index 100% rename from test/case/ietf_interfaces/veth_delete/topology.dot rename to test/case/interfaces/veth_delete/topology.dot diff --git a/test/case/ietf_interfaces/veth_delete/topology.svg b/test/case/interfaces/veth_delete/topology.svg similarity index 100% rename from test/case/ietf_interfaces/veth_delete/topology.svg rename to test/case/interfaces/veth_delete/topology.svg diff --git a/test/case/ietf_system/user_admin/Readme.adoc b/test/case/interfaces/vlan_iface_termination/Readme.adoc similarity index 100% rename from test/case/ietf_system/user_admin/Readme.adoc rename to test/case/interfaces/vlan_iface_termination/Readme.adoc diff --git a/test/case/ietf_interfaces/vlan_iface_termination/test.adoc b/test/case/interfaces/vlan_iface_termination/test.adoc similarity index 93% rename from test/case/ietf_interfaces/vlan_iface_termination/test.adoc rename to test/case/interfaces/vlan_iface_termination/test.adoc index ed1a8939..18e2da1b 100644 --- a/test/case/ietf_interfaces/vlan_iface_termination/test.adoc +++ b/test/case/interfaces/vlan_iface_termination/test.adoc @@ -1,6 +1,6 @@ === VLAN Interface Termination -ifdef::topdoc[:imagesdir: {topdoc}../../test/case/ietf_interfaces/vlan_iface_termination] +ifdef::topdoc[:imagesdir: {topdoc}../../test/case/interfaces/vlan_iface_termination] ==== Description diff --git a/test/case/ietf_interfaces/vlan_iface_termination/test.py b/test/case/interfaces/vlan_iface_termination/test.py similarity index 100% rename from test/case/ietf_interfaces/vlan_iface_termination/test.py rename to test/case/interfaces/vlan_iface_termination/test.py diff --git a/test/case/ietf_interfaces/vlan_iface_termination/topology.dot b/test/case/interfaces/vlan_iface_termination/topology.dot similarity index 100% rename from test/case/ietf_interfaces/vlan_iface_termination/topology.dot rename to test/case/interfaces/vlan_iface_termination/topology.dot diff --git a/test/case/ietf_interfaces/vlan_iface_termination/topology.svg b/test/case/interfaces/vlan_iface_termination/topology.svg similarity index 100% rename from test/case/ietf_interfaces/vlan_iface_termination/topology.svg rename to test/case/interfaces/vlan_iface_termination/topology.svg diff --git a/test/case/infix_containers/basic/Readme.adoc b/test/case/interfaces/vlan_ping/Readme.adoc similarity index 100% rename from test/case/infix_containers/basic/Readme.adoc rename to test/case/interfaces/vlan_ping/Readme.adoc diff --git a/test/case/ietf_interfaces/vlan_ping/test.adoc b/test/case/interfaces/vlan_ping/test.adoc similarity index 87% rename from test/case/ietf_interfaces/vlan_ping/test.adoc rename to test/case/interfaces/vlan_ping/test.adoc index fb2f10e6..2b4a211b 100644 --- a/test/case/ietf_interfaces/vlan_ping/test.adoc +++ b/test/case/interfaces/vlan_ping/test.adoc @@ -1,6 +1,6 @@ === VLAN ping connectivity -ifdef::topdoc[:imagesdir: {topdoc}../../test/case/ietf_interfaces/vlan_ping] +ifdef::topdoc[:imagesdir: {topdoc}../../test/case/interfaces/vlan_ping] ==== Description diff --git a/test/case/ietf_interfaces/vlan_ping/test.py b/test/case/interfaces/vlan_ping/test.py similarity index 100% rename from test/case/ietf_interfaces/vlan_ping/test.py rename to test/case/interfaces/vlan_ping/test.py diff --git a/test/case/ietf_interfaces/vlan_ping/topology.dot b/test/case/interfaces/vlan_ping/topology.dot similarity index 100% rename from test/case/ietf_interfaces/vlan_ping/topology.dot rename to test/case/interfaces/vlan_ping/topology.dot diff --git a/test/case/ietf_interfaces/vlan_ping/topology.svg b/test/case/interfaces/vlan_ping/topology.svg similarity index 100% rename from test/case/ietf_interfaces/vlan_ping/topology.svg rename to test/case/interfaces/vlan_ping/topology.svg diff --git a/test/case/infix_containers/bridge/Readme.adoc b/test/case/interfaces/vlan_qos/Readme.adoc similarity index 100% rename from test/case/infix_containers/bridge/Readme.adoc rename to test/case/interfaces/vlan_qos/Readme.adoc diff --git a/test/case/ietf_interfaces/vlan_qos/test.adoc b/test/case/interfaces/vlan_qos/test.adoc similarity index 95% rename from test/case/ietf_interfaces/vlan_qos/test.adoc rename to test/case/interfaces/vlan_qos/test.adoc index e8993e4d..a40962b7 100644 --- a/test/case/ietf_interfaces/vlan_qos/test.adoc +++ b/test/case/interfaces/vlan_qos/test.adoc @@ -1,6 +1,6 @@ === VLAN Interface Ingress/Egress QoS -ifdef::topdoc[:imagesdir: {topdoc}../../test/case/ietf_interfaces/vlan_qos] +ifdef::topdoc[:imagesdir: {topdoc}../../test/case/interfaces/vlan_qos] ==== Description diff --git a/test/case/ietf_interfaces/vlan_qos/test.py b/test/case/interfaces/vlan_qos/test.py similarity index 100% rename from test/case/ietf_interfaces/vlan_qos/test.py rename to test/case/interfaces/vlan_qos/test.py diff --git a/test/case/ietf_interfaces/vlan_qos/topology.dot b/test/case/interfaces/vlan_qos/topology.dot similarity index 100% rename from test/case/ietf_interfaces/vlan_qos/topology.dot rename to test/case/interfaces/vlan_qos/topology.dot diff --git a/test/case/ietf_interfaces/vlan_qos/topology.svg b/test/case/interfaces/vlan_qos/topology.svg similarity index 100% rename from test/case/ietf_interfaces/vlan_qos/topology.svg rename to test/case/interfaces/vlan_qos/topology.svg diff --git a/test/case/ietf_routing/Readme.adoc b/test/case/routing/Readme.adoc similarity index 91% rename from test/case/ietf_routing/Readme.adoc rename to test/case/routing/Readme.adoc index 20a01aa7..9554ede4 100644 --- a/test/case/ietf_routing/Readme.adoc +++ b/test/case/routing/Readme.adoc @@ -1,7 +1,7 @@ :testgroup: -== ietf-routing +== Routing -Tests verifying IETF standard routing protocols and configuration: +Tests verifying standard routing protocols and configuration: - Static routing configuration and forwarding behavior - OSPF basic neighbor discovery and LSA exchange diff --git a/test/case/ietf_routing/all.yaml b/test/case/routing/all.yaml similarity index 100% rename from test/case/ietf_routing/all.yaml rename to test/case/routing/all.yaml diff --git a/test/case/infix_containers/enabled/Readme.adoc b/test/case/routing/ospf_basic/Readme.adoc similarity index 100% rename from test/case/infix_containers/enabled/Readme.adoc rename to test/case/routing/ospf_basic/Readme.adoc diff --git a/test/case/ietf_routing/ospf_basic/test.adoc b/test/case/routing/ospf_basic/test.adoc similarity index 90% rename from test/case/ietf_routing/ospf_basic/test.adoc rename to test/case/routing/ospf_basic/test.adoc index d6f760c0..d868a634 100644 --- a/test/case/ietf_routing/ospf_basic/test.adoc +++ b/test/case/routing/ospf_basic/test.adoc @@ -1,6 +1,6 @@ === OSPF Basic -ifdef::topdoc[:imagesdir: {topdoc}../../test/case/ietf_routing/ospf_basic] +ifdef::topdoc[:imagesdir: {topdoc}../../test/case/routing/ospf_basic] ==== Description diff --git a/test/case/ietf_routing/ospf_basic/test.py b/test/case/routing/ospf_basic/test.py similarity index 100% rename from test/case/ietf_routing/ospf_basic/test.py rename to test/case/routing/ospf_basic/test.py diff --git a/test/case/ietf_routing/ospf_basic/topology.dot b/test/case/routing/ospf_basic/topology.dot similarity index 100% rename from test/case/ietf_routing/ospf_basic/topology.dot rename to test/case/routing/ospf_basic/topology.dot diff --git a/test/case/ietf_routing/ospf_basic/topology.svg b/test/case/routing/ospf_basic/topology.svg similarity index 100% rename from test/case/ietf_routing/ospf_basic/topology.svg rename to test/case/routing/ospf_basic/topology.svg diff --git a/test/case/infix_containers/environment/Readme.adoc b/test/case/routing/ospf_bfd/Readme.adoc similarity index 100% rename from test/case/infix_containers/environment/Readme.adoc rename to test/case/routing/ospf_bfd/Readme.adoc diff --git a/test/case/ietf_routing/ospf_bfd/test.adoc b/test/case/routing/ospf_bfd/test.adoc similarity index 92% rename from test/case/ietf_routing/ospf_bfd/test.adoc rename to test/case/routing/ospf_bfd/test.adoc index d55bae3b..ed7f82cd 100644 --- a/test/case/ietf_routing/ospf_bfd/test.adoc +++ b/test/case/routing/ospf_bfd/test.adoc @@ -1,6 +1,6 @@ === OSPF BFD -ifdef::topdoc[:imagesdir: {topdoc}../../test/case/ietf_routing/ospf_bfd] +ifdef::topdoc[:imagesdir: {topdoc}../../test/case/routing/ospf_bfd] ==== Description diff --git a/test/case/ietf_routing/ospf_bfd/test.py b/test/case/routing/ospf_bfd/test.py similarity index 100% rename from test/case/ietf_routing/ospf_bfd/test.py rename to test/case/routing/ospf_bfd/test.py diff --git a/test/case/ietf_routing/ospf_bfd/topology.dot b/test/case/routing/ospf_bfd/topology.dot similarity index 100% rename from test/case/ietf_routing/ospf_bfd/topology.dot rename to test/case/routing/ospf_bfd/topology.dot diff --git a/test/case/ietf_routing/ospf_bfd/topology.svg b/test/case/routing/ospf_bfd/topology.svg similarity index 100% rename from test/case/ietf_routing/ospf_bfd/topology.svg rename to test/case/routing/ospf_bfd/topology.svg diff --git a/test/case/infix_containers/firewall_basic/Readme.adoc b/test/case/routing/ospf_default_route_advertise/Readme.adoc similarity index 100% rename from test/case/infix_containers/firewall_basic/Readme.adoc rename to test/case/routing/ospf_default_route_advertise/Readme.adoc diff --git a/test/case/ietf_routing/ospf_default_route_advertise/test.adoc b/test/case/routing/ospf_default_route_advertise/test.adoc similarity index 95% rename from test/case/ietf_routing/ospf_default_route_advertise/test.adoc rename to test/case/routing/ospf_default_route_advertise/test.adoc index 4e92ae63..c3d24e59 100644 --- a/test/case/ietf_routing/ospf_default_route_advertise/test.adoc +++ b/test/case/routing/ospf_default_route_advertise/test.adoc @@ -1,6 +1,6 @@ === OSPF Default route advertise -ifdef::topdoc[:imagesdir: {topdoc}../../test/case/ietf_routing/ospf_default_route_advertise] +ifdef::topdoc[:imagesdir: {topdoc}../../test/case/routing/ospf_default_route_advertise] ==== Description diff --git a/test/case/ietf_routing/ospf_default_route_advertise/test.py b/test/case/routing/ospf_default_route_advertise/test.py similarity index 100% rename from test/case/ietf_routing/ospf_default_route_advertise/test.py rename to test/case/routing/ospf_default_route_advertise/test.py diff --git a/test/case/ietf_routing/ospf_default_route_advertise/topology.dot b/test/case/routing/ospf_default_route_advertise/topology.dot similarity index 100% rename from test/case/ietf_routing/ospf_default_route_advertise/topology.dot rename to test/case/routing/ospf_default_route_advertise/topology.dot diff --git a/test/case/ietf_routing/ospf_default_route_advertise/topology.svg b/test/case/routing/ospf_default_route_advertise/topology.svg similarity index 100% rename from test/case/ietf_routing/ospf_default_route_advertise/topology.svg rename to test/case/routing/ospf_default_route_advertise/topology.svg diff --git a/test/case/infix_containers/host_commands/Readme.adoc b/test/case/routing/ospf_multiarea/Readme.adoc similarity index 100% rename from test/case/infix_containers/host_commands/Readme.adoc rename to test/case/routing/ospf_multiarea/Readme.adoc diff --git a/test/case/ietf_routing/ospf_multiarea/test.adoc b/test/case/routing/ospf_multiarea/test.adoc similarity index 95% rename from test/case/ietf_routing/ospf_multiarea/test.adoc rename to test/case/routing/ospf_multiarea/test.adoc index e1ed2945..21919152 100644 --- a/test/case/ietf_routing/ospf_multiarea/test.adoc +++ b/test/case/routing/ospf_multiarea/test.adoc @@ -1,6 +1,6 @@ === OSPF with multiple areas -ifdef::topdoc[:imagesdir: {topdoc}../../test/case/ietf_routing/ospf_multiarea] +ifdef::topdoc[:imagesdir: {topdoc}../../test/case/routing/ospf_multiarea] ==== Description diff --git a/test/case/ietf_routing/ospf_multiarea/test.py b/test/case/routing/ospf_multiarea/test.py similarity index 100% rename from test/case/ietf_routing/ospf_multiarea/test.py rename to test/case/routing/ospf_multiarea/test.py diff --git a/test/case/ietf_routing/ospf_multiarea/topology.dot b/test/case/routing/ospf_multiarea/topology.dot similarity index 100% rename from test/case/ietf_routing/ospf_multiarea/topology.dot rename to test/case/routing/ospf_multiarea/topology.dot diff --git a/test/case/ietf_routing/ospf_multiarea/topology.svg b/test/case/routing/ospf_multiarea/topology.svg similarity index 100% rename from test/case/ietf_routing/ospf_multiarea/topology.svg rename to test/case/routing/ospf_multiarea/topology.svg diff --git a/test/case/infix_containers/phys/Readme.adoc b/test/case/routing/ospf_unnumbered_interface/Readme.adoc similarity index 100% rename from test/case/infix_containers/phys/Readme.adoc rename to test/case/routing/ospf_unnumbered_interface/Readme.adoc diff --git a/test/case/ietf_routing/ospf_unnumbered_interface/test.adoc b/test/case/routing/ospf_unnumbered_interface/test.adoc similarity index 88% rename from test/case/ietf_routing/ospf_unnumbered_interface/test.adoc rename to test/case/routing/ospf_unnumbered_interface/test.adoc index 26b0f7cd..d066026a 100644 --- a/test/case/ietf_routing/ospf_unnumbered_interface/test.adoc +++ b/test/case/routing/ospf_unnumbered_interface/test.adoc @@ -1,6 +1,6 @@ === OSPF unnumbered interfaces -ifdef::topdoc[:imagesdir: {topdoc}../../test/case/ietf_routing/ospf_unnumbered_interface] +ifdef::topdoc[:imagesdir: {topdoc}../../test/case/routing/ospf_unnumbered_interface] ==== Description diff --git a/test/case/ietf_routing/ospf_unnumbered_interface/test.py b/test/case/routing/ospf_unnumbered_interface/test.py similarity index 100% rename from test/case/ietf_routing/ospf_unnumbered_interface/test.py rename to test/case/routing/ospf_unnumbered_interface/test.py diff --git a/test/case/ietf_routing/ospf_unnumbered_interface/topology.dot b/test/case/routing/ospf_unnumbered_interface/topology.dot similarity index 100% rename from test/case/ietf_routing/ospf_unnumbered_interface/topology.dot rename to test/case/routing/ospf_unnumbered_interface/topology.dot diff --git a/test/case/ietf_routing/ospf_unnumbered_interface/topology.svg b/test/case/routing/ospf_unnumbered_interface/topology.svg similarity index 100% rename from test/case/ietf_routing/ospf_unnumbered_interface/topology.svg rename to test/case/routing/ospf_unnumbered_interface/topology.svg diff --git a/test/case/infix_containers/upgrade/Readme.adoc b/test/case/routing/route_pref_255/Readme.adoc similarity index 100% rename from test/case/infix_containers/upgrade/Readme.adoc rename to test/case/routing/route_pref_255/Readme.adoc diff --git a/test/case/ietf_routing/route_pref_255/test.adoc b/test/case/routing/route_pref_255/test.adoc similarity index 90% rename from test/case/ietf_routing/route_pref_255/test.adoc rename to test/case/routing/route_pref_255/test.adoc index 076e3678..8264ebe5 100644 --- a/test/case/ietf_routing/route_pref_255/test.adoc +++ b/test/case/routing/route_pref_255/test.adoc @@ -1,6 +1,6 @@ === Route preference: Static Route Activation and Maximum Distance -ifdef::topdoc[:imagesdir: {topdoc}../../test/case/ietf_routing/route_pref_255] +ifdef::topdoc[:imagesdir: {topdoc}../../test/case/routing/route_pref_255] ==== Description diff --git a/test/case/ietf_routing/route_pref_255/test.py b/test/case/routing/route_pref_255/test.py similarity index 100% rename from test/case/ietf_routing/route_pref_255/test.py rename to test/case/routing/route_pref_255/test.py diff --git a/test/case/ietf_routing/route_pref_255/topology.dot b/test/case/routing/route_pref_255/topology.dot similarity index 100% rename from test/case/ietf_routing/route_pref_255/topology.dot rename to test/case/routing/route_pref_255/topology.dot diff --git a/test/case/ietf_routing/route_pref_255/topology.svg b/test/case/routing/route_pref_255/topology.svg similarity index 100% rename from test/case/ietf_routing/route_pref_255/topology.svg rename to test/case/routing/route_pref_255/topology.svg diff --git a/test/case/infix_containers/veth/Readme.adoc b/test/case/routing/route_pref_dhcp/Readme.adoc similarity index 100% rename from test/case/infix_containers/veth/Readme.adoc rename to test/case/routing/route_pref_dhcp/Readme.adoc diff --git a/test/case/ietf_routing/route_pref_dhcp/test.adoc b/test/case/routing/route_pref_dhcp/test.adoc similarity index 90% rename from test/case/ietf_routing/route_pref_dhcp/test.adoc rename to test/case/routing/route_pref_dhcp/test.adoc index 20b3add8..45807373 100644 --- a/test/case/ietf_routing/route_pref_dhcp/test.adoc +++ b/test/case/routing/route_pref_dhcp/test.adoc @@ -1,6 +1,6 @@ === Route preference: DHCP vs Static -ifdef::topdoc[:imagesdir: {topdoc}../../test/case/ietf_routing/route_pref_dhcp] +ifdef::topdoc[:imagesdir: {topdoc}../../test/case/routing/route_pref_dhcp] ==== Description diff --git a/test/case/ietf_routing/route_pref_dhcp/test.py b/test/case/routing/route_pref_dhcp/test.py similarity index 100% rename from test/case/ietf_routing/route_pref_dhcp/test.py rename to test/case/routing/route_pref_dhcp/test.py diff --git a/test/case/ietf_routing/route_pref_dhcp/topology.dot b/test/case/routing/route_pref_dhcp/topology.dot similarity index 100% rename from test/case/ietf_routing/route_pref_dhcp/topology.dot rename to test/case/routing/route_pref_dhcp/topology.dot diff --git a/test/case/ietf_routing/route_pref_dhcp/topology.svg b/test/case/routing/route_pref_dhcp/topology.svg similarity index 100% rename from test/case/ietf_routing/route_pref_dhcp/topology.svg rename to test/case/routing/route_pref_dhcp/topology.svg diff --git a/test/case/infix_containers/volume/Readme.adoc b/test/case/routing/route_pref_ospf/Readme.adoc similarity index 100% rename from test/case/infix_containers/volume/Readme.adoc rename to test/case/routing/route_pref_ospf/Readme.adoc diff --git a/test/case/ietf_routing/route_pref_ospf/test.adoc b/test/case/routing/route_pref_ospf/test.adoc similarity index 91% rename from test/case/ietf_routing/route_pref_ospf/test.adoc rename to test/case/routing/route_pref_ospf/test.adoc index 78cb7ccf..15e67722 100644 --- a/test/case/ietf_routing/route_pref_ospf/test.adoc +++ b/test/case/routing/route_pref_ospf/test.adoc @@ -1,6 +1,6 @@ === Route preference: OSPF vs Static -ifdef::topdoc[:imagesdir: {topdoc}../../test/case/ietf_routing/route_pref_ospf] +ifdef::topdoc[:imagesdir: {topdoc}../../test/case/routing/route_pref_ospf] ==== Description diff --git a/test/case/ietf_routing/route_pref_ospf/test.py b/test/case/routing/route_pref_ospf/test.py similarity index 100% rename from test/case/ietf_routing/route_pref_ospf/test.py rename to test/case/routing/route_pref_ospf/test.py diff --git a/test/case/ietf_routing/route_pref_ospf/topology.dot b/test/case/routing/route_pref_ospf/topology.dot similarity index 100% rename from test/case/ietf_routing/route_pref_ospf/topology.dot rename to test/case/routing/route_pref_ospf/topology.dot diff --git a/test/case/ietf_routing/route_pref_ospf/topology.svg b/test/case/routing/route_pref_ospf/topology.svg similarity index 100% rename from test/case/ietf_routing/route_pref_ospf/topology.svg rename to test/case/routing/route_pref_ospf/topology.svg diff --git a/test/case/infix_dhcp/client6_basic/Readme.adoc b/test/case/routing/static_routing/Readme.adoc similarity index 100% rename from test/case/infix_dhcp/client6_basic/Readme.adoc rename to test/case/routing/static_routing/Readme.adoc diff --git a/test/case/ietf_routing/static_routing/test.adoc b/test/case/routing/static_routing/test.adoc similarity index 89% rename from test/case/ietf_routing/static_routing/test.adoc rename to test/case/routing/static_routing/test.adoc index c3f83258..70782fc7 100644 --- a/test/case/ietf_routing/static_routing/test.adoc +++ b/test/case/routing/static_routing/test.adoc @@ -1,6 +1,6 @@ === Static routing -ifdef::topdoc[:imagesdir: {topdoc}../../test/case/ietf_routing/static_routing] +ifdef::topdoc[:imagesdir: {topdoc}../../test/case/routing/static_routing] ==== Description diff --git a/test/case/ietf_routing/static_routing/test.py b/test/case/routing/static_routing/test.py similarity index 100% rename from test/case/ietf_routing/static_routing/test.py rename to test/case/routing/static_routing/test.py diff --git a/test/case/ietf_routing/static_routing/topology.dot b/test/case/routing/static_routing/topology.dot similarity index 100% rename from test/case/ietf_routing/static_routing/topology.dot rename to test/case/routing/static_routing/topology.dot diff --git a/test/case/ietf_routing/static_routing/topology.svg b/test/case/routing/static_routing/topology.svg similarity index 100% rename from test/case/ietf_routing/static_routing/topology.svg rename to test/case/routing/static_routing/topology.svg diff --git a/test/case/infix_services/Readme.adoc b/test/case/services/Readme.adoc similarity index 89% rename from test/case/infix_services/Readme.adoc rename to test/case/services/Readme.adoc index 7842e212..ea49192a 100644 --- a/test/case/infix_services/Readme.adoc +++ b/test/case/services/Readme.adoc @@ -1,7 +1,7 @@ :testgroup: -== infix-services +== Services -Tests verifying Infix network services configuration and operation: +Tests verifying network services configuration and operation: - mDNS (Multicast DNS) service enable/disable functionality - mDNS interface allow/deny access control diff --git a/test/case/infix_services/all.yaml b/test/case/services/all.yaml similarity index 100% rename from test/case/infix_services/all.yaml rename to test/case/services/all.yaml diff --git a/test/case/infix_services/lldp/all.yaml b/test/case/services/lldp/all.yaml similarity index 100% rename from test/case/infix_services/lldp/all.yaml rename to test/case/services/lldp/all.yaml diff --git a/test/case/infix_dhcp/client6_prefix_delegation/Readme.adoc b/test/case/services/lldp/lldp_admin_status/Readme.adoc similarity index 100% rename from test/case/infix_dhcp/client6_prefix_delegation/Readme.adoc rename to test/case/services/lldp/lldp_admin_status/Readme.adoc diff --git a/test/case/infix_services/lldp/lldp_admin_status/test.adoc b/test/case/services/lldp/lldp_admin_status/test.adoc similarity index 82% rename from test/case/infix_services/lldp/lldp_admin_status/test.adoc rename to test/case/services/lldp/lldp_admin_status/test.adoc index 68c0a76f..58ad98a0 100644 --- a/test/case/infix_services/lldp/lldp_admin_status/test.adoc +++ b/test/case/services/lldp/lldp_admin_status/test.adoc @@ -1,6 +1,6 @@ === LLDP admin status -ifdef::topdoc[:imagesdir: {topdoc}../../test/case/infix_services/lldp/lldp_admin_status] +ifdef::topdoc[:imagesdir: {topdoc}../../test/case/services/lldp/lldp_admin_status] ==== Description diff --git a/test/case/infix_services/lldp/lldp_admin_status/test.py b/test/case/services/lldp/lldp_admin_status/test.py similarity index 100% rename from test/case/infix_services/lldp/lldp_admin_status/test.py rename to test/case/services/lldp/lldp_admin_status/test.py diff --git a/test/case/infix_services/lldp/lldp_admin_status/topology.dot b/test/case/services/lldp/lldp_admin_status/topology.dot similarity index 100% rename from test/case/infix_services/lldp/lldp_admin_status/topology.dot rename to test/case/services/lldp/lldp_admin_status/topology.dot diff --git a/test/case/infix_services/lldp/lldp_admin_status/topology.svg b/test/case/services/lldp/lldp_admin_status/topology.svg similarity index 100% rename from test/case/infix_services/lldp/lldp_admin_status/topology.svg rename to test/case/services/lldp/lldp_admin_status/topology.svg diff --git a/test/case/infix_dhcp/client_basic/Readme.adoc b/test/case/services/lldp/lldp_enable_disable/Readme.adoc similarity index 100% rename from test/case/infix_dhcp/client_basic/Readme.adoc rename to test/case/services/lldp/lldp_enable_disable/Readme.adoc diff --git a/test/case/infix_services/lldp/lldp_enable_disable/test.adoc b/test/case/services/lldp/lldp_enable_disable/test.adoc similarity index 83% rename from test/case/infix_services/lldp/lldp_enable_disable/test.adoc rename to test/case/services/lldp/lldp_enable_disable/test.adoc index 7d547b20..5f8a0235 100644 --- a/test/case/infix_services/lldp/lldp_enable_disable/test.adoc +++ b/test/case/services/lldp/lldp_enable_disable/test.adoc @@ -1,6 +1,6 @@ === LLDP enable/disable -ifdef::topdoc[:imagesdir: {topdoc}../../test/case/infix_services/lldp/lldp_enable_disable] +ifdef::topdoc[:imagesdir: {topdoc}../../test/case/services/lldp/lldp_enable_disable] ==== Description diff --git a/test/case/infix_services/lldp/lldp_enable_disable/test.py b/test/case/services/lldp/lldp_enable_disable/test.py similarity index 100% rename from test/case/infix_services/lldp/lldp_enable_disable/test.py rename to test/case/services/lldp/lldp_enable_disable/test.py diff --git a/test/case/infix_services/lldp/lldp_enable_disable/topology.dot b/test/case/services/lldp/lldp_enable_disable/topology.dot similarity index 100% rename from test/case/infix_services/lldp/lldp_enable_disable/topology.dot rename to test/case/services/lldp/lldp_enable_disable/topology.dot diff --git a/test/case/infix_services/lldp/lldp_enable_disable/topology.svg b/test/case/services/lldp/lldp_enable_disable/topology.svg similarity index 100% rename from test/case/infix_services/lldp/lldp_enable_disable/topology.svg rename to test/case/services/lldp/lldp_enable_disable/topology.svg diff --git a/test/case/infix_dhcp/client_default_gw/Readme.adoc b/test/case/services/lldp/lldp_ieee_group_forward/Readme.adoc similarity index 100% rename from test/case/infix_dhcp/client_default_gw/Readme.adoc rename to test/case/services/lldp/lldp_ieee_group_forward/Readme.adoc diff --git a/test/case/infix_services/lldp/lldp_ieee_group_forward/test.adoc b/test/case/services/lldp/lldp_ieee_group_forward/test.adoc similarity index 84% rename from test/case/infix_services/lldp/lldp_ieee_group_forward/test.adoc rename to test/case/services/lldp/lldp_ieee_group_forward/test.adoc index 33e3585b..174cd7e5 100644 --- a/test/case/infix_services/lldp/lldp_ieee_group_forward/test.adoc +++ b/test/case/services/lldp/lldp_ieee_group_forward/test.adoc @@ -1,6 +1,6 @@ === LLDP IEEE Group Forward -ifdef::topdoc[:imagesdir: {topdoc}../../test/case/infix_services/lldp/lldp_ieee_group_forward] +ifdef::topdoc[:imagesdir: {topdoc}../../test/case/services/lldp/lldp_ieee_group_forward] ==== Description diff --git a/test/case/infix_services/lldp/lldp_ieee_group_forward/test.py b/test/case/services/lldp/lldp_ieee_group_forward/test.py similarity index 100% rename from test/case/infix_services/lldp/lldp_ieee_group_forward/test.py rename to test/case/services/lldp/lldp_ieee_group_forward/test.py diff --git a/test/case/infix_services/lldp/lldp_ieee_group_forward/topology.dot b/test/case/services/lldp/lldp_ieee_group_forward/topology.dot similarity index 100% rename from test/case/infix_services/lldp/lldp_ieee_group_forward/topology.dot rename to test/case/services/lldp/lldp_ieee_group_forward/topology.dot diff --git a/test/case/infix_services/lldp/lldp_ieee_group_forward/topology.svg b/test/case/services/lldp/lldp_ieee_group_forward/topology.svg similarity index 100% rename from test/case/infix_services/lldp/lldp_ieee_group_forward/topology.svg rename to test/case/services/lldp/lldp_ieee_group_forward/topology.svg diff --git a/test/case/infix_services/mdns/all.yaml b/test/case/services/mdns/all.yaml similarity index 100% rename from test/case/infix_services/mdns/all.yaml rename to test/case/services/mdns/all.yaml diff --git a/test/case/infix_dhcp/client_hostname/Readme.adoc b/test/case/services/mdns/mdns_allow_deny/Readme.adoc similarity index 100% rename from test/case/infix_dhcp/client_hostname/Readme.adoc rename to test/case/services/mdns/mdns_allow_deny/Readme.adoc diff --git a/test/case/infix_services/mdns/mdns_allow_deny/test.adoc b/test/case/services/mdns/mdns_allow_deny/test.adoc similarity index 88% rename from test/case/infix_services/mdns/mdns_allow_deny/test.adoc rename to test/case/services/mdns/mdns_allow_deny/test.adoc index 6c63b8b2..2045daca 100644 --- a/test/case/infix_services/mdns/mdns_allow_deny/test.adoc +++ b/test/case/services/mdns/mdns_allow_deny/test.adoc @@ -1,6 +1,6 @@ === mDNS allow/deny interfaces -ifdef::topdoc[:imagesdir: {topdoc}../../test/case/infix_services/mdns/mdns_allow_deny] +ifdef::topdoc[:imagesdir: {topdoc}../../test/case/services/mdns/mdns_allow_deny] ==== Description diff --git a/test/case/infix_services/mdns/mdns_allow_deny/test.py b/test/case/services/mdns/mdns_allow_deny/test.py similarity index 100% rename from test/case/infix_services/mdns/mdns_allow_deny/test.py rename to test/case/services/mdns/mdns_allow_deny/test.py diff --git a/test/case/infix_services/mdns/mdns_allow_deny/topology.dot b/test/case/services/mdns/mdns_allow_deny/topology.dot similarity index 100% rename from test/case/infix_services/mdns/mdns_allow_deny/topology.dot rename to test/case/services/mdns/mdns_allow_deny/topology.dot diff --git a/test/case/infix_services/mdns/mdns_allow_deny/topology.svg b/test/case/services/mdns/mdns_allow_deny/topology.svg similarity index 100% rename from test/case/infix_services/mdns/mdns_allow_deny/topology.svg rename to test/case/services/mdns/mdns_allow_deny/topology.svg diff --git a/test/case/infix_dhcp/client_routes/Readme.adoc b/test/case/services/mdns/mdns_enable_disable/Readme.adoc similarity index 100% rename from test/case/infix_dhcp/client_routes/Readme.adoc rename to test/case/services/mdns/mdns_enable_disable/Readme.adoc diff --git a/test/case/infix_services/mdns/mdns_enable_disable/test.adoc b/test/case/services/mdns/mdns_enable_disable/test.adoc similarity index 85% rename from test/case/infix_services/mdns/mdns_enable_disable/test.adoc rename to test/case/services/mdns/mdns_enable_disable/test.adoc index b0eee10c..aea23bce 100644 --- a/test/case/infix_services/mdns/mdns_enable_disable/test.adoc +++ b/test/case/services/mdns/mdns_enable_disable/test.adoc @@ -1,6 +1,6 @@ === mDNS enable/disable -ifdef::topdoc[:imagesdir: {topdoc}../../test/case/infix_services/mdns/mdns_enable_disable] +ifdef::topdoc[:imagesdir: {topdoc}../../test/case/services/mdns/mdns_enable_disable] ==== Description diff --git a/test/case/infix_services/mdns/mdns_enable_disable/test.py b/test/case/services/mdns/mdns_enable_disable/test.py similarity index 100% rename from test/case/infix_services/mdns/mdns_enable_disable/test.py rename to test/case/services/mdns/mdns_enable_disable/test.py diff --git a/test/case/infix_services/mdns/mdns_enable_disable/topology.dot b/test/case/services/mdns/mdns_enable_disable/topology.dot similarity index 100% rename from test/case/infix_services/mdns/mdns_enable_disable/topology.dot rename to test/case/services/mdns/mdns_enable_disable/topology.dot diff --git a/test/case/infix_services/mdns/mdns_enable_disable/topology.svg b/test/case/services/mdns/mdns_enable_disable/topology.svg similarity index 100% rename from test/case/infix_services/mdns/mdns_enable_disable/topology.svg rename to test/case/services/mdns/mdns_enable_disable/topology.svg diff --git a/test/case/infix_services/ssh/all.yaml b/test/case/services/ssh/all.yaml similarity index 100% rename from test/case/infix_services/ssh/all.yaml rename to test/case/services/ssh/all.yaml diff --git a/test/case/infix_dhcp/server_basic/Readme.adoc b/test/case/services/ssh/ssh_key_authentication/Readme.adoc similarity index 100% rename from test/case/infix_dhcp/server_basic/Readme.adoc rename to test/case/services/ssh/ssh_key_authentication/Readme.adoc diff --git a/test/case/infix_services/ssh/ssh_key_authentication/test.adoc b/test/case/services/ssh/ssh_key_authentication/test.adoc similarity index 83% rename from test/case/infix_services/ssh/ssh_key_authentication/test.adoc rename to test/case/services/ssh/ssh_key_authentication/test.adoc index 09e59b22..6d48b524 100644 --- a/test/case/infix_services/ssh/ssh_key_authentication/test.adoc +++ b/test/case/services/ssh/ssh_key_authentication/test.adoc @@ -1,6 +1,6 @@ === Generate ssh key pair -ifdef::topdoc[:imagesdir: {topdoc}../../test/case/infix_services/ssh/ssh_key_authentication] +ifdef::topdoc[:imagesdir: {topdoc}../../test/case/services/ssh/ssh_key_authentication] ==== Description diff --git a/test/case/infix_services/ssh/ssh_key_authentication/test.py b/test/case/services/ssh/ssh_key_authentication/test.py similarity index 100% rename from test/case/infix_services/ssh/ssh_key_authentication/test.py rename to test/case/services/ssh/ssh_key_authentication/test.py diff --git a/test/case/infix_services/ssh/ssh_key_authentication/topology.dot b/test/case/services/ssh/ssh_key_authentication/topology.dot similarity index 100% rename from test/case/infix_services/ssh/ssh_key_authentication/topology.dot rename to test/case/services/ssh/ssh_key_authentication/topology.dot diff --git a/test/case/ietf_syslog/pattern_match/topology.svg b/test/case/services/ssh/ssh_key_authentication/topology.svg similarity index 100% rename from test/case/ietf_syslog/pattern_match/topology.svg rename to test/case/services/ssh/ssh_key_authentication/topology.svg diff --git a/test/case/infix_dhcp/server_host/Readme.adoc b/test/case/services/ssh/ssh_server_config/Readme.adoc similarity index 100% rename from test/case/infix_dhcp/server_host/Readme.adoc rename to test/case/services/ssh/ssh_server_config/Readme.adoc diff --git a/test/case/infix_services/ssh/ssh_server_config/test.adoc b/test/case/services/ssh/ssh_server_config/test.adoc similarity index 86% rename from test/case/infix_services/ssh/ssh_server_config/test.adoc rename to test/case/services/ssh/ssh_server_config/test.adoc index 0e41b1f1..801a16b9 100644 --- a/test/case/infix_services/ssh/ssh_server_config/test.adoc +++ b/test/case/services/ssh/ssh_server_config/test.adoc @@ -1,6 +1,6 @@ === SSH server configuration -ifdef::topdoc[:imagesdir: {topdoc}../../test/case/infix_services/ssh/ssh_server_config] +ifdef::topdoc[:imagesdir: {topdoc}../../test/case/services/ssh/ssh_server_config] ==== Description diff --git a/test/case/infix_services/ssh/ssh_server_config/test.py b/test/case/services/ssh/ssh_server_config/test.py similarity index 100% rename from test/case/infix_services/ssh/ssh_server_config/test.py rename to test/case/services/ssh/ssh_server_config/test.py diff --git a/test/case/infix_services/ssh/ssh_server_config/topology.dot b/test/case/services/ssh/ssh_server_config/topology.dot similarity index 100% rename from test/case/infix_services/ssh/ssh_server_config/topology.dot rename to test/case/services/ssh/ssh_server_config/topology.dot diff --git a/test/case/infix_services/ssh/ssh_server_config/topology.svg b/test/case/services/ssh/ssh_server_config/topology.svg similarity index 100% rename from test/case/infix_services/ssh/ssh_server_config/topology.svg rename to test/case/services/ssh/ssh_server_config/topology.svg diff --git a/test/case/ietf_syslog/Readme.adoc b/test/case/syslog/Readme.adoc similarity index 77% rename from test/case/ietf_syslog/Readme.adoc rename to test/case/syslog/Readme.adoc index 698f51a0..25192962 100644 --- a/test/case/ietf_syslog/Readme.adoc +++ b/test/case/syslog/Readme.adoc @@ -1,12 +1,12 @@ :testgroup: -== ietf-syslog +== Syslog -Tests verifying IETF standard syslog configuration and operation: +Tests verifying syslog configuration and operation: - Basic local syslog functionality and log generation - Remote syslog forwarding and network logging - Pattern matching using POSIX regex on message content - - Advanced comparison operators and actions (equals vs equals-or-higher) + - Advanced comparison operators and actions - Hostname-based filtering for incoming messages - Property-based filtering with operators and negation diff --git a/test/case/infix_dhcp/server_subnets/Readme.adoc b/test/case/syslog/advanced_compare/Readme.adoc similarity index 100% rename from test/case/infix_dhcp/server_subnets/Readme.adoc rename to test/case/syslog/advanced_compare/Readme.adoc diff --git a/test/case/ietf_syslog/advanced_compare/test.adoc b/test/case/syslog/advanced_compare/test.adoc similarity index 89% rename from test/case/ietf_syslog/advanced_compare/test.adoc rename to test/case/syslog/advanced_compare/test.adoc index 709c2596..5d74ccc0 100644 --- a/test/case/ietf_syslog/advanced_compare/test.adoc +++ b/test/case/syslog/advanced_compare/test.adoc @@ -1,6 +1,6 @@ === Syslog Advanced Compare -ifdef::topdoc[:imagesdir: {topdoc}../../test/case/ietf_syslog/advanced_compare] +ifdef::topdoc[:imagesdir: {topdoc}../../test/case/syslog/advanced_compare] ==== Description diff --git a/test/case/ietf_syslog/advanced_compare/test.py b/test/case/syslog/advanced_compare/test.py similarity index 100% rename from test/case/ietf_syslog/advanced_compare/test.py rename to test/case/syslog/advanced_compare/test.py diff --git a/test/case/ietf_syslog/basic/topology.dot b/test/case/syslog/advanced_compare/topology.dot similarity index 100% rename from test/case/ietf_syslog/basic/topology.dot rename to test/case/syslog/advanced_compare/topology.dot diff --git a/test/case/ietf_syslog/property_filter/topology.svg b/test/case/syslog/advanced_compare/topology.svg similarity index 100% rename from test/case/ietf_syslog/property_filter/topology.svg rename to test/case/syslog/advanced_compare/topology.svg diff --git a/test/case/ietf_syslog/all.yaml b/test/case/syslog/all.yaml similarity index 100% rename from test/case/ietf_syslog/all.yaml rename to test/case/syslog/all.yaml diff --git a/test/case/infix_firewall/basic/Readme.adoc b/test/case/syslog/basic/Readme.adoc similarity index 100% rename from test/case/infix_firewall/basic/Readme.adoc rename to test/case/syslog/basic/Readme.adoc diff --git a/test/case/ietf_syslog/basic/test.adoc b/test/case/syslog/basic/test.adoc similarity index 88% rename from test/case/ietf_syslog/basic/test.adoc rename to test/case/syslog/basic/test.adoc index 9bfa70a3..791126e7 100644 --- a/test/case/ietf_syslog/basic/test.adoc +++ b/test/case/syslog/basic/test.adoc @@ -1,6 +1,6 @@ === Syslog Basic -ifdef::topdoc[:imagesdir: {topdoc}../../test/case/ietf_syslog/basic] +ifdef::topdoc[:imagesdir: {topdoc}../../test/case/syslog/basic] ==== Description diff --git a/test/case/ietf_syslog/basic/test.py b/test/case/syslog/basic/test.py similarity index 100% rename from test/case/ietf_syslog/basic/test.py rename to test/case/syslog/basic/test.py diff --git a/test/case/ietf_syslog/pattern_match/topology.dot b/test/case/syslog/basic/topology.dot similarity index 100% rename from test/case/ietf_syslog/pattern_match/topology.dot rename to test/case/syslog/basic/topology.dot diff --git a/test/case/ietf_system/add_delete_user/topology.svg b/test/case/syslog/basic/topology.svg similarity index 100% rename from test/case/ietf_system/add_delete_user/topology.svg rename to test/case/syslog/basic/topology.svg diff --git a/test/case/infix_firewall/ipv6-lan-wan/Readme.adoc b/test/case/syslog/hostname_filter/Readme.adoc similarity index 100% rename from test/case/infix_firewall/ipv6-lan-wan/Readme.adoc rename to test/case/syslog/hostname_filter/Readme.adoc diff --git a/test/case/ietf_syslog/hostname_filter/test.adoc b/test/case/syslog/hostname_filter/test.adoc similarity index 89% rename from test/case/ietf_syslog/hostname_filter/test.adoc rename to test/case/syslog/hostname_filter/test.adoc index e134d6ab..df488d84 100644 --- a/test/case/ietf_syslog/hostname_filter/test.adoc +++ b/test/case/syslog/hostname_filter/test.adoc @@ -1,6 +1,6 @@ === Syslog Hostname Filtering -ifdef::topdoc[:imagesdir: {topdoc}../../test/case/ietf_syslog/hostname_filter] +ifdef::topdoc[:imagesdir: {topdoc}../../test/case/syslog/hostname_filter] ==== Description diff --git a/test/case/ietf_syslog/hostname_filter/test.py b/test/case/syslog/hostname_filter/test.py similarity index 100% rename from test/case/ietf_syslog/hostname_filter/test.py rename to test/case/syslog/hostname_filter/test.py diff --git a/test/case/ietf_syslog/hostname_filter/topology.dot b/test/case/syslog/hostname_filter/topology.dot similarity index 100% rename from test/case/ietf_syslog/hostname_filter/topology.dot rename to test/case/syslog/hostname_filter/topology.dot diff --git a/test/case/ietf_syslog/hostname_filter/topology.svg b/test/case/syslog/hostname_filter/topology.svg similarity index 100% rename from test/case/ietf_syslog/hostname_filter/topology.svg rename to test/case/syslog/hostname_filter/topology.svg diff --git a/test/case/infix_firewall/ipv6-zone-migration/Readme.adoc b/test/case/syslog/pattern_match/Readme.adoc similarity index 100% rename from test/case/infix_firewall/ipv6-zone-migration/Readme.adoc rename to test/case/syslog/pattern_match/Readme.adoc diff --git a/test/case/ietf_syslog/pattern_match/test.adoc b/test/case/syslog/pattern_match/test.adoc similarity index 90% rename from test/case/ietf_syslog/pattern_match/test.adoc rename to test/case/syslog/pattern_match/test.adoc index 4424968f..1ba3fe30 100644 --- a/test/case/ietf_syslog/pattern_match/test.adoc +++ b/test/case/syslog/pattern_match/test.adoc @@ -1,6 +1,6 @@ === Syslog Pattern Matching -ifdef::topdoc[:imagesdir: {topdoc}../../test/case/ietf_syslog/pattern_match] +ifdef::topdoc[:imagesdir: {topdoc}../../test/case/syslog/pattern_match] ==== Description diff --git a/test/case/ietf_syslog/pattern_match/test.py b/test/case/syslog/pattern_match/test.py similarity index 100% rename from test/case/ietf_syslog/pattern_match/test.py rename to test/case/syslog/pattern_match/test.py diff --git a/test/case/ietf_syslog/property_filter/topology.dot b/test/case/syslog/pattern_match/topology.dot similarity index 100% rename from test/case/ietf_syslog/property_filter/topology.dot rename to test/case/syslog/pattern_match/topology.dot diff --git a/test/case/ietf_system/hostname/topology.svg b/test/case/syslog/pattern_match/topology.svg similarity index 100% rename from test/case/ietf_system/hostname/topology.svg rename to test/case/syslog/pattern_match/topology.svg diff --git a/test/case/infix_firewall/lan-wan/Readme.adoc b/test/case/syslog/property_filter/Readme.adoc similarity index 100% rename from test/case/infix_firewall/lan-wan/Readme.adoc rename to test/case/syslog/property_filter/Readme.adoc diff --git a/test/case/ietf_syslog/property_filter/test.adoc b/test/case/syslog/property_filter/test.adoc similarity index 89% rename from test/case/ietf_syslog/property_filter/test.adoc rename to test/case/syslog/property_filter/test.adoc index 0a5bd5ee..2baef42e 100644 --- a/test/case/ietf_syslog/property_filter/test.adoc +++ b/test/case/syslog/property_filter/test.adoc @@ -1,6 +1,6 @@ === Syslog Property Filtering -ifdef::topdoc[:imagesdir: {topdoc}../../test/case/ietf_syslog/property_filter] +ifdef::topdoc[:imagesdir: {topdoc}../../test/case/syslog/property_filter] ==== Description diff --git a/test/case/ietf_syslog/property_filter/test.py b/test/case/syslog/property_filter/test.py similarity index 100% rename from test/case/ietf_syslog/property_filter/test.py rename to test/case/syslog/property_filter/test.py diff --git a/test/case/ietf_system/add_delete_user/topology.dot b/test/case/syslog/property_filter/topology.dot similarity index 100% rename from test/case/ietf_system/add_delete_user/topology.dot rename to test/case/syslog/property_filter/topology.dot diff --git a/test/case/ietf_system/timezone/topology.svg b/test/case/syslog/property_filter/topology.svg similarity index 100% rename from test/case/ietf_system/timezone/topology.svg rename to test/case/syslog/property_filter/topology.svg diff --git a/test/case/infix_firewall/wan-dmz-lan/Readme.adoc b/test/case/syslog/remote/Readme.adoc similarity index 100% rename from test/case/infix_firewall/wan-dmz-lan/Readme.adoc rename to test/case/syslog/remote/Readme.adoc diff --git a/test/case/ietf_syslog/remote/test.adoc b/test/case/syslog/remote/test.adoc similarity index 87% rename from test/case/ietf_syslog/remote/test.adoc rename to test/case/syslog/remote/test.adoc index 602f7812..5535ac10 100644 --- a/test/case/ietf_syslog/remote/test.adoc +++ b/test/case/syslog/remote/test.adoc @@ -1,6 +1,6 @@ === Remote syslog -ifdef::topdoc[:imagesdir: {topdoc}../../test/case/ietf_syslog/remote] +ifdef::topdoc[:imagesdir: {topdoc}../../test/case/syslog/remote] ==== Description diff --git a/test/case/ietf_syslog/remote/test.py b/test/case/syslog/remote/test.py similarity index 100% rename from test/case/ietf_syslog/remote/test.py rename to test/case/syslog/remote/test.py diff --git a/test/case/ietf_syslog/remote/topology.dot b/test/case/syslog/remote/topology.dot similarity index 100% rename from test/case/ietf_syslog/remote/topology.dot rename to test/case/syslog/remote/topology.dot diff --git a/test/case/ietf_syslog/remote/topology.svg b/test/case/syslog/remote/topology.svg similarity index 100% rename from test/case/ietf_syslog/remote/topology.svg rename to test/case/syslog/remote/topology.svg diff --git a/test/case/ietf_system/Readme.adoc b/test/case/system/Readme.adoc similarity index 88% rename from test/case/ietf_system/Readme.adoc rename to test/case/system/Readme.adoc index e0371c95..49309412 100644 --- a/test/case/ietf_system/Readme.adoc +++ b/test/case/system/Readme.adoc @@ -1,7 +1,7 @@ :testgroup: -== ietf-system +== System -Tests verifying IETF standard system configuration and management: +Tests verifying system configuration and management: - System hostname configuration and persistence - User account creation, modification, and deletion diff --git a/test/case/infix_services/lldp/lldp_admin_status/Readme.adoc b/test/case/system/add_delete_user/Readme.adoc similarity index 100% rename from test/case/infix_services/lldp/lldp_admin_status/Readme.adoc rename to test/case/system/add_delete_user/Readme.adoc diff --git a/test/case/ietf_system/add_delete_user/test.adoc b/test/case/system/add_delete_user/test.adoc similarity index 87% rename from test/case/ietf_system/add_delete_user/test.adoc rename to test/case/system/add_delete_user/test.adoc index 0d63e98f..ebbed34a 100644 --- a/test/case/ietf_system/add_delete_user/test.adoc +++ b/test/case/system/add_delete_user/test.adoc @@ -1,6 +1,6 @@ === Add/delete user -ifdef::topdoc[:imagesdir: {topdoc}../../test/case/ietf_system/add_delete_user] +ifdef::topdoc[:imagesdir: {topdoc}../../test/case/system/add_delete_user] ==== Description diff --git a/test/case/ietf_system/add_delete_user/test.py b/test/case/system/add_delete_user/test.py similarity index 100% rename from test/case/ietf_system/add_delete_user/test.py rename to test/case/system/add_delete_user/test.py diff --git a/test/case/ietf_system/hostname/topology.dot b/test/case/system/add_delete_user/topology.dot similarity index 100% rename from test/case/ietf_system/hostname/topology.dot rename to test/case/system/add_delete_user/topology.dot diff --git a/test/case/ietf_system/timezone_utc_offset/topology.svg b/test/case/system/add_delete_user/topology.svg similarity index 100% rename from test/case/ietf_system/timezone_utc_offset/topology.svg rename to test/case/system/add_delete_user/topology.svg diff --git a/test/case/ietf_system/all.yaml b/test/case/system/all.yaml similarity index 100% rename from test/case/ietf_system/all.yaml rename to test/case/system/all.yaml diff --git a/test/case/infix_services/lldp/lldp_enable_disable/Readme.adoc b/test/case/system/hostname/Readme.adoc similarity index 100% rename from test/case/infix_services/lldp/lldp_enable_disable/Readme.adoc rename to test/case/system/hostname/Readme.adoc diff --git a/test/case/ietf_system/hostname/test.adoc b/test/case/system/hostname/test.adoc similarity index 89% rename from test/case/ietf_system/hostname/test.adoc rename to test/case/system/hostname/test.adoc index f0f28699..7a71726b 100644 --- a/test/case/ietf_system/hostname/test.adoc +++ b/test/case/system/hostname/test.adoc @@ -1,6 +1,6 @@ === Set hostname -ifdef::topdoc[:imagesdir: {topdoc}../../test/case/ietf_system/hostname] +ifdef::topdoc[:imagesdir: {topdoc}../../test/case/system/hostname] ==== Description diff --git a/test/case/ietf_system/hostname/test.py b/test/case/system/hostname/test.py similarity index 100% rename from test/case/ietf_system/hostname/test.py rename to test/case/system/hostname/test.py diff --git a/test/case/ietf_system/timezone/topology.dot b/test/case/system/hostname/topology.dot similarity index 100% rename from test/case/ietf_system/timezone/topology.dot rename to test/case/system/hostname/topology.dot diff --git a/test/case/ietf_system/user_admin/topology.svg b/test/case/system/hostname/topology.svg similarity index 100% rename from test/case/ietf_system/user_admin/topology.svg rename to test/case/system/hostname/topology.svg diff --git a/test/case/infix_services/lldp/lldp_ieee_group_forward/Readme.adoc b/test/case/system/ntp_client/Readme.adoc similarity index 100% rename from test/case/infix_services/lldp/lldp_ieee_group_forward/Readme.adoc rename to test/case/system/ntp_client/Readme.adoc diff --git a/test/case/ietf_system/ntp_client/test.adoc b/test/case/system/ntp_client/test.adoc similarity index 84% rename from test/case/ietf_system/ntp_client/test.adoc rename to test/case/system/ntp_client/test.adoc index 1bb4c3ec..6bd64e3e 100644 --- a/test/case/ietf_system/ntp_client/test.adoc +++ b/test/case/system/ntp_client/test.adoc @@ -1,6 +1,6 @@ === Basic NTP client test -ifdef::topdoc[:imagesdir: {topdoc}../../test/case/ietf_system/ntp_client] +ifdef::topdoc[:imagesdir: {topdoc}../../test/case/system/ntp_client] ==== Description diff --git a/test/case/ietf_system/ntp_client/test.py b/test/case/system/ntp_client/test.py similarity index 100% rename from test/case/ietf_system/ntp_client/test.py rename to test/case/system/ntp_client/test.py diff --git a/test/case/ietf_system/ntp_client/topology.dot b/test/case/system/ntp_client/topology.dot similarity index 100% rename from test/case/ietf_system/ntp_client/topology.dot rename to test/case/system/ntp_client/topology.dot diff --git a/test/case/ietf_system/ntp_client/topology.svg b/test/case/system/ntp_client/topology.svg similarity index 100% rename from test/case/ietf_system/ntp_client/topology.svg rename to test/case/system/ntp_client/topology.svg diff --git a/test/case/infix_services/mdns/mdns_allow_deny/Readme.adoc b/test/case/system/timezone/Readme.adoc similarity index 100% rename from test/case/infix_services/mdns/mdns_allow_deny/Readme.adoc rename to test/case/system/timezone/Readme.adoc diff --git a/test/case/ietf_system/timezone/test.adoc b/test/case/system/timezone/test.adoc similarity index 83% rename from test/case/ietf_system/timezone/test.adoc rename to test/case/system/timezone/test.adoc index ecc5c692..d266feab 100644 --- a/test/case/ietf_system/timezone/test.adoc +++ b/test/case/system/timezone/test.adoc @@ -1,6 +1,6 @@ === Set timezone using timezone name -ifdef::topdoc[:imagesdir: {topdoc}../../test/case/ietf_system/timezone] +ifdef::topdoc[:imagesdir: {topdoc}../../test/case/system/timezone] ==== Description diff --git a/test/case/ietf_system/timezone/test.py b/test/case/system/timezone/test.py similarity index 100% rename from test/case/ietf_system/timezone/test.py rename to test/case/system/timezone/test.py diff --git a/test/case/ietf_system/timezone_utc_offset/topology.dot b/test/case/system/timezone/topology.dot similarity index 100% rename from test/case/ietf_system/timezone_utc_offset/topology.dot rename to test/case/system/timezone/topology.dot diff --git a/test/case/infix_containers/enabled/topology.svg b/test/case/system/timezone/topology.svg similarity index 100% rename from test/case/infix_containers/enabled/topology.svg rename to test/case/system/timezone/topology.svg diff --git a/test/case/infix_services/mdns/mdns_enable_disable/Readme.adoc b/test/case/system/timezone_utc_offset/Readme.adoc similarity index 100% rename from test/case/infix_services/mdns/mdns_enable_disable/Readme.adoc rename to test/case/system/timezone_utc_offset/Readme.adoc diff --git a/test/case/ietf_system/timezone_utc_offset/test.adoc b/test/case/system/timezone_utc_offset/test.adoc similarity index 80% rename from test/case/ietf_system/timezone_utc_offset/test.adoc rename to test/case/system/timezone_utc_offset/test.adoc index f2048815..a043e0ae 100644 --- a/test/case/ietf_system/timezone_utc_offset/test.adoc +++ b/test/case/system/timezone_utc_offset/test.adoc @@ -1,6 +1,6 @@ === Set timezone with UTC offset -ifdef::topdoc[:imagesdir: {topdoc}../../test/case/ietf_system/timezone_utc_offset] +ifdef::topdoc[:imagesdir: {topdoc}../../test/case/system/timezone_utc_offset] ==== Description diff --git a/test/case/ietf_system/timezone_utc_offset/test.py b/test/case/system/timezone_utc_offset/test.py similarity index 100% rename from test/case/ietf_system/timezone_utc_offset/test.py rename to test/case/system/timezone_utc_offset/test.py diff --git a/test/case/ietf_system/user_admin/topology.dot b/test/case/system/timezone_utc_offset/topology.dot similarity index 100% rename from test/case/ietf_system/user_admin/topology.dot rename to test/case/system/timezone_utc_offset/topology.dot diff --git a/test/case/infix_containers/host_commands/topology.svg b/test/case/system/timezone_utc_offset/topology.svg similarity index 100% rename from test/case/infix_containers/host_commands/topology.svg rename to test/case/system/timezone_utc_offset/topology.svg diff --git a/test/case/infix_services/ssh/ssh_key_authentication/Readme.adoc b/test/case/system/upgrade/Readme.adoc similarity index 100% rename from test/case/infix_services/ssh/ssh_key_authentication/Readme.adoc rename to test/case/system/upgrade/Readme.adoc diff --git a/test/case/ietf_system/upgrade/bundles/.gitignore b/test/case/system/upgrade/bundles/.gitignore similarity index 100% rename from test/case/ietf_system/upgrade/bundles/.gitignore rename to test/case/system/upgrade/bundles/.gitignore diff --git a/test/case/ietf_system/upgrade/bundles/not-a-bundle.pkg b/test/case/system/upgrade/bundles/not-a-bundle.pkg similarity index 100% rename from test/case/ietf_system/upgrade/bundles/not-a-bundle.pkg rename to test/case/system/upgrade/bundles/not-a-bundle.pkg diff --git a/test/case/ietf_system/upgrade/test.adoc b/test/case/system/upgrade/test.adoc similarity index 84% rename from test/case/ietf_system/upgrade/test.adoc rename to test/case/system/upgrade/test.adoc index 81ab81db..de3058e7 100644 --- a/test/case/ietf_system/upgrade/test.adoc +++ b/test/case/system/upgrade/test.adoc @@ -1,6 +1,6 @@ === System upgrade -ifdef::topdoc[:imagesdir: {topdoc}../../test/case/ietf_system/upgrade] +ifdef::topdoc[:imagesdir: {topdoc}../../test/case/system/upgrade] ==== Description diff --git a/test/case/ietf_system/upgrade/test.py b/test/case/system/upgrade/test.py similarity index 100% rename from test/case/ietf_system/upgrade/test.py rename to test/case/system/upgrade/test.py diff --git a/test/case/infix_containers/volume/topology.dot b/test/case/system/upgrade/topology.dot similarity index 100% rename from test/case/infix_containers/volume/topology.dot rename to test/case/system/upgrade/topology.dot diff --git a/test/case/infix_containers/volume/topology.svg b/test/case/system/upgrade/topology.svg similarity index 100% rename from test/case/infix_containers/volume/topology.svg rename to test/case/system/upgrade/topology.svg diff --git a/test/case/infix_services/ssh/ssh_server_config/Readme.adoc b/test/case/system/user_admin/Readme.adoc similarity index 100% rename from test/case/infix_services/ssh/ssh_server_config/Readme.adoc rename to test/case/system/user_admin/Readme.adoc diff --git a/test/case/ietf_system/user_admin/test.adoc b/test/case/system/user_admin/test.adoc similarity index 91% rename from test/case/ietf_system/user_admin/test.adoc rename to test/case/system/user_admin/test.adoc index 148f2b2e..d8ffc370 100644 --- a/test/case/ietf_system/user_admin/test.adoc +++ b/test/case/system/user_admin/test.adoc @@ -1,6 +1,6 @@ === Add admin user -ifdef::topdoc[:imagesdir: {topdoc}../../test/case/ietf_system/user_admin] +ifdef::topdoc[:imagesdir: {topdoc}../../test/case/system/user_admin] ==== Description diff --git a/test/case/ietf_system/user_admin/test.py b/test/case/system/user_admin/test.py similarity index 100% rename from test/case/ietf_system/user_admin/test.py rename to test/case/system/user_admin/test.py diff --git a/test/case/infix_containers/host_commands/topology.dot b/test/case/system/user_admin/topology.dot similarity index 100% rename from test/case/infix_containers/host_commands/topology.dot rename to test/case/system/user_admin/topology.dot diff --git a/test/case/infix_services/ssh/ssh_key_authentication/topology.svg b/test/case/system/user_admin/topology.svg similarity index 100% rename from test/case/infix_services/ssh/ssh_key_authentication/topology.svg rename to test/case/system/user_admin/topology.svg diff --git a/test/case/use_case/Readme.adoc b/test/case/use_case/Readme.adoc index 1367e0c3..b6f04b19 100644 --- a/test/case/use_case/Readme.adoc +++ b/test/case/use_case/Readme.adoc @@ -1,7 +1,8 @@ :testgroup: == Use Case Tests -Integration tests verifying multiple Infix components working together: +Integration tests verifying multiple software components working +together: - OSPF routing with containerized applications and network segmentation diff --git a/test/spec/Readme.adoc.in b/test/spec/Readme.adoc.in index c1c1d9cf..4b0748e6 100644 --- a/test/spec/Readme.adoc.in +++ b/test/spec/Readme.adoc.in @@ -24,39 +24,39 @@ include::../case/misc/Readme.adoc[] <<< -include::../case/ietf_system/Readme.adoc[] +include::../case/system/Readme.adoc[] <<< -include::../case/ietf_syslog/Readme.adoc[] +include::../case/syslog/Readme.adoc[] <<< -include::../case/ietf_interfaces/Readme.adoc[] +include::../case/interfaces/Readme.adoc[] <<< -include::../case/ietf_routing/Readme.adoc[] +include::../case/routing/Readme.adoc[] <<< -include::../case/infix_firewall/Readme.adoc[] +include::../case/firewall/Readme.adoc[] <<< -include::../case/infix_containers/Readme.adoc[] +include::../case/containers/Readme.adoc[] <<< -include::../case/infix_dhcp/Readme.adoc[] +include::../case/dhcp/Readme.adoc[] <<< -include::../case/ietf_hardware/Readme.adoc[] +include::../case/hardware/Readme.adoc[] <<< -include::../case/infix_services/Readme.adoc[] +include::../case/services/Readme.adoc[] <<<