Removing PDP, Fabric test sections again to rollback overwritten changes.

Change-Id: I39b36f86fcab9659d0df6000c18f52a9ade36818
diff --git a/index.rst b/index.rst
index 500dfb1..a09810b 100644
--- a/index.rst
+++ b/index.rst
@@ -76,8 +76,6 @@
    testing/sdcore_testing
    testing/aether-roc-tests
    testing/acceptance_specification
-   testing/fabric_testing
-   testing/pdp_testing
 
 .. toctree::
    :maxdepth: 3
diff --git a/testing/fabric_testing.rst b/testing/fabric_testing.rst
deleted file mode 100644
index e566f14..0000000
--- a/testing/fabric_testing.rst
+++ /dev/null
@@ -1,83 +0,0 @@
-..
-   SPDX-FileCopyrightText: © 2021 Open Networking Foundation <support@opennetworking.org>
-   SPDX-License-Identifier: Apache-2.0
-
-Fabric Testing
-==============
-
-
-Test Framework
---------------
-
-We use `TestON`_ to connect to and manipulate different test components using CLI or REST
-API. These tests use a common set of library functions for Segment Routing testing to
-make writing new tests easier. For Aether, we are porting our existing set of Segment
-Routing functionality tests written for Mininet to using Stratum hardware switches.
-
-We use Jenkins to schedule and trigger our tests which run against either the QA Pod or
-the Staging Pod.
-
-Resources:
-^^^^^^^^^^
-
-#. `ONOS System Test Guide`_
-#. `Segment Routing Funcationality Test Plan`_
-
-Integration Testing
--------------------
-
-We are in the process of moving existing functionality tests to written for OVS or BMv2
-software switches running in Mininet to running on hardware switches, starting with
-bridging and routing functionality. These tests will run nightly on the QA Pod.
-
-Failure/Recovery Performance Testing
-------------------------------------
-
-We run several experiments every night on the Staging Pod and measure the performance of
-Aether during the experiment.
-The test job can be found in Aether Jenkins under `tost-teston-staging-nightly`.
-
-#. Port Down/Up
-
-    * **Summary**: Uses onos CLI `portstate` command to send gNMI request to disable/enable
-      a port on a leaf leading to a spine. There are two versions of this test, one on the
-      access leaf and one on the upstream leaf.
-
-    * **Test code**:
-
-       * `Access Leaf Port Failure/Recovery Test`_
-
-       * `Upstream Leaf Port Failure/Recovery Test`_
-
-#. Stratum Agent Stop/Start
-
-    * **Summary**: Uses Kubernetes to delete/restart the stratum pod on a spine
-
-    * **Test code**:
-
-       * `Stratum Restart Test`_
-
-#. ONL Shutdown/Startup
-
-    * **Summary**: Restart ONL on a spine
-
-    * **Test code**:
-
-       * `ONL Reboot Test`_
-
-#. ONOS Node Reboot
-
-    * **Summary**: Restart each ONOS node in the cluster one by one
-
-    * **Test code**: To be implemented
-
-        * `Rolling ONOS Restart Test`_
-
-.. _TestON: https://github.com/opennetworkinglab/OnosSystemTest
-.. _ONOS System Test Guide: https://wiki.onosproject.org/display/ONOS/System+Testing+Guide
-.. _Segment Routing Funcationality Test Plan: https://wiki.opencord.org/display/CORD/Test+Plan+-+Fabric+Control
-.. _Access Leaf Port Failure/Recovery Test: https://github.com/opennetworkinglab/OnosSystemTest/tree/master/TestON/tests/USECASE/SegmentRouting/SRStaging/SReNBLeafSpinePortstateFailure
-.. _Upstream Leaf Port Failure/Recovery Test: https://github.com/opennetworkinglab/OnosSystemTest/tree/master/TestON/tests/USECASE/SegmentRouting/SRStaging/SRupstreamLeafSpinePortstateFailure
-.. _Stratum Restart Test: https://github.com/opennetworkinglab/OnosSystemTest/tree/master/TestON/tests/USECASE/SegmentRouting/SRStaging/SRstratumRestart
-.. _ONL Reboot Test: https://github.com/opennetworkinglab/OnosSystemTest/tree/master/TestON/tests/USECASE/SegmentRouting/SRStaging/SRONLReboot
-.. _Rolling ONOS Restart Test: https://github.com/opennetworkinglab/OnosSystemTest/tree/master/TestON/tests/USECASE/SegmentRouting/SRStaging/SRrollingRestart
diff --git a/testing/pdp_testing.rst b/testing/pdp_testing.rst
deleted file mode 100644
index 65e0012..0000000
--- a/testing/pdp_testing.rst
+++ /dev/null
@@ -1,128 +0,0 @@
-..
-   SPDX-FileCopyrightText: © 2021 Open Networking Foundation <support@opennetworking.org>
-   SPDX-License-Identifier: Apache-2.0
-
-PDP Testing
-===========
-
-
-Test Framework
---------------
-
-We use `TestVectors`_ to connect to Stratum hardware switches using gRPC and
-execute gNMI and P4Runtime tests.
-
-For Aether, we convert existing ptf unit tests written for ``fabric-tna`` to
-TestVectors and execute them on Stratum hardware switches in loopback mode
-using `TestVectors-Runner`_.
-
-We use Jenkins to schedule and trigger our tests which run against a set of
-hardware switches.
-
-Test Scenarios
--------------------
-
-``fabric-tna`` is a P4 program based on the Tofino Native Architecture(TNA).
-Currently 4 profiles are supported for compiling the ``fabric-tna`` P4 program.
-
-1. ``fabric``
-2. ``fabric-spgw``
-3. ``fabric-int``
-4. ``fabric-spgw-int``
-
-Based on the ptf unit tests for ``fabric-tna``, we generate TestVectors for each
-profile to run on Stratum hardware switches. The names of generated tests can
-be found in `Test List`_.
-
-Prerequisites to Generate, Run Tests
-------------------------------------
-
-1. Stratum running on a hardware switch with 4 ports running in loopback mode.
-
-2. Create a port-map similar to `port-map`_. The three fields are ptf_port,
-   p4_port and iface_name.  ptf_port is the port id used in the test, p4_port
-   is a valid port id from Stratum hardware.  iface_name is ignored in
-   TestVector generation, this can be any value.
-
-How to Generate TestVectors
----------------------------
-
-1. Checkout ``fabric-tna`` repo.
-
-.. code-block:: shell
-
-   $git clone https://github.com/stratum/fabric-tna.git
-   $cd fabric-tna
-
-2. Compile the P4 program for specific profile.
-
-.. code-block:: shell
-
-   $make <profile>
-
-Supported profiles are: fabric, fabric-spgw, fabric-int, fabric-spgw-int.
-
-3. Generate TestVectors.
-
-.. code-block:: shell
-
-   $cd ptf
-   $run/tv/run <profile> PORTMAP=port_map.json GRPCADDR=<switch_ip>:<switch_port> CPUPORT=<cpu_port>
-
-switch_ip and switch_port are IP and port where Stratum is running.
-cpu_port is 192 for dual pipe switch and 320 for quad pipe switch.
-Generated TestVectors are stored under ``fabric-tna/ptf/TestVectors``.
-
-How to Run TestVectors
-----------------------
-
-1. Checkout `TestVectors-Runner`_ repo.
-
-.. code-block:: shell
-
-   $git clone https://github.com/stratum/testvectors-runner -b support-fabric-tna
-   $cd testvectors-runner
-
-2. Build ``tv-runner`` docker image.
-
-.. code-block:: shell
-
-   $docker build -t tvrunner:fabric-tna-binary -f build/test/Dockerfile .
-
-3. Push PipelineConfig.
-
-.. code-block:: shell
-
-   $IMAGE_NAME=tvrunner:fabric-tna-binary ./tvrunner.sh --target ${tv_dir}/target.pb.txt --portmap ${tv_dir}/portmap.pb.txt --tv-dir ${tv_dir} --dp-mode loopback --tv-name PipelineConfig
-
-4. Run Setup.
-
-.. code-block:: shell
-
-   $IMAGE_NAME=tvrunner:fabric-tna-binary ./tvrunner.sh --dp-mode loopback --match-type in --target ${tv_dir}/target.pb.txt --portmap ${tv_dir}/portmap.pb.txt --tv-dir ${tv_dir}/${test_name}/setup
-
-5. Run TestVector.
-
-.. code-block:: shell
-
-   $IMAGE_NAME=tvrunner:fabric-tna-binary ./tvrunner.sh --dp-mode loopback --match-type in --target ${tv_dir}/target.pb.txt --portmap ${tv_dir}/portmap.pb.txt --tv-dir ${tv_dir}/${test_name} --tv-name ${test_name}.* --result-dir ./results --result-file ${test_name}
-
-6. Run Teardown.
-
-.. code-block:: shell
-
-   $IMAGE_NAME=tvrunner:fabric-tna-binary ./tvrunner.sh --dp-mode loopback --match-type in --target ${tv_dir}/target.pb.txt --portmap ${tv_dir}/portmap.pb.txt --tv-dir ${tv_dir}/${test_name}/teardown
-
-``tv_dir`` is the directory where TestVectors are stored. In this case,
-``tv_dir`` is ``fabric-tna/ptf/TestVectors``.
-
-``tv_name`` is the name of the test case. It's also the directory name of the
-test under ``fabric-tna/ptf/TestVectors``.
-
-Results for each test are generated under ``testvectors-runner/results``
-directory in csv format.
-
-.. _TestVectors: https://github.com/stratum/testvectors
-.. _TestVectors-Runner: https://github.com/stratum/testvectors-runner/tree/support-fabric-tna
-.. _Test List: https://github.com/stratum/stratum-ci/blob/master/ptf_tv_resources/converted-tests.yaml
-.. _port-map: https://github.com/stratum/stratum-ci/blob/master/ptf_configs/x86-64-stordis-bf2556x-1t-r0/port_map.json