mrichomme | 9643b0c | 2020-11-14 22:36:57 +0100 | [diff] [blame] | 1 | .. This work is licensed under a |
| 2 | Creative Commons Attribution 4.0 International License. |
mrichomme | 7eecfb3 | 2020-11-26 15:24:27 +0100 | [diff] [blame] | 3 | .. _integration-tests: |
mrichomme | 9643b0c | 2020-11-14 22:36:57 +0100 | [diff] [blame] | 4 | |
| 5 | Tests |
| 6 | ===== |
| 7 | |
| 8 | .. important:: |
Lasse Kaihlavirta | 2d2888a | 2020-11-18 16:54:36 +0200 | [diff] [blame] | 9 | Integration is in charge of several types of tests: |
mrichomme | 9643b0c | 2020-11-14 22:36:57 +0100 | [diff] [blame] | 10 | |
Lasse Kaihlavirta | 2d2888a | 2020-11-18 16:54:36 +0200 | [diff] [blame] | 11 | - Use Cases: developed by use case teams, usually complex, demonstrating high value capabilities of ONAP. They may be partially automated and even |
mrichomme | 9643b0c | 2020-11-14 22:36:57 +0100 | [diff] [blame] | 12 | integrated in CD. |
| 13 | - CSIT Tests: functional tests created by the projects, partially hosted in CSIT repository |
Lasse Kaihlavirta | 2d2888a | 2020-11-18 16:54:36 +0200 | [diff] [blame] | 14 | - Automatic Test Cases: these use cases are usually more simple and aim to validate that ONAP is working properly. |
mrichomme | 9643b0c | 2020-11-14 22:36:57 +0100 | [diff] [blame] | 15 | These tests have been developed to validate ONAP as a software solution. |
Lasse Kaihlavirta | 2d2888a | 2020-11-18 16:54:36 +0200 | [diff] [blame] | 16 | In theory all the main functions shall be covered by such tests in order to have more robust CI/CD and then avoid regressions. |
mrichomme | 9643b0c | 2020-11-14 22:36:57 +0100 | [diff] [blame] | 17 | These tests are usually developed and maintained by the integration team. |
| 18 | |
Lasse Kaihlavirta | 2d2888a | 2020-11-18 16:54:36 +0200 | [diff] [blame] | 19 | We may also indicate that when the development of the test framework python-onapsdk |
| 20 | follows standard development quality rules and imposes the creation of |
mrichomme | 9643b0c | 2020-11-14 22:36:57 +0100 | [diff] [blame] | 21 | unit/functional/integration tests. |
| 22 | As an example python-onapsdk requires a unit test coverage of 98% before merging |
Lasse Kaihlavirta | 2d2888a | 2020-11-18 16:54:36 +0200 | [diff] [blame] | 23 | a new feature, which is far above the project criteria in SonarCloud today. |
mrichomme | 9643b0c | 2020-11-14 22:36:57 +0100 | [diff] [blame] | 24 | |
| 25 | Use Cases |
| 26 | --------- |
| 27 | |
mrichomme | ba4f971 | 2020-11-24 11:43:00 +0100 | [diff] [blame] | 28 | The use cases of the last release are described in |
| 29 | :ref:`Verified Use cases <docs_usecases_release>`. |
| 30 | |
mrichomme | 7eecfb3 | 2020-11-26 15:24:27 +0100 | [diff] [blame] | 31 | The history of the different use cases across the different releases can be |
mrichomme | ba4f971 | 2020-11-24 11:43:00 +0100 | [diff] [blame] | 32 | found in :ref:`Use Cases page <docs_usecases>`. |
mrichomme | 9643b0c | 2020-11-14 22:36:57 +0100 | [diff] [blame] | 33 | |
| 34 | CSIT Tests |
| 35 | ---------- |
| 36 | |
| 37 | The CSIT tests are functional tests executed by the projects on mocked |
Lasse Kaihlavirta | 2d2888a | 2020-11-18 16:54:36 +0200 | [diff] [blame] | 38 | environment to validate their components. |
mrichomme | 9643b0c | 2020-11-14 22:36:57 +0100 | [diff] [blame] | 39 | Historically it was hosted in a CSIT repository. |
| 40 | |
Lasse Kaihlavirta | 2d2888a | 2020-11-18 16:54:36 +0200 | [diff] [blame] | 41 | Integration team invited the projects to bring back such tests back to home |
mrichomme | 9643b0c | 2020-11-14 22:36:57 +0100 | [diff] [blame] | 42 | repository for 2 main reasons: |
| 43 | |
| 44 | - integration cannot be a bottleneck: +2/merge from integration needed for each |
| 45 | project |
Lasse Kaihlavirta | 2d2888a | 2020-11-18 16:54:36 +0200 | [diff] [blame] | 46 | - most of the tests are abandoned and not maintained when hosted in a third party |
| 47 | repository leading to CI/CD resource waste and misleading test reporting |
mrichomme | 9643b0c | 2020-11-14 22:36:57 +0100 | [diff] [blame] | 48 | |
| 49 | In Guilin a PoC to help the project to re-insource their functional tests have |
| 50 | been initiated. |
mrichomme | 7eecfb3 | 2020-11-26 15:24:27 +0100 | [diff] [blame] | 51 | See `CSIT wiki page <https://wiki.onap.org/display/DW/Maximizing+Benefits+of+CSIT+in+ONAP+Development>`_ |
mrichomme | 9643b0c | 2020-11-14 22:36:57 +0100 | [diff] [blame] | 52 | for details. |
| 53 | |
| 54 | Automatic Tests |
| 55 | --------------- |
| 56 | |
| 57 | These tests are run daily/weekly on each new gate (new patchset in OOM, clamp |
| 58 | or SO). They can be in any language (bash, go, python,...), leveraging any test |
| 59 | framework (robotframework, MTS, python-onapsdk). |
mrichomme | 7eecfb3 | 2020-11-26 15:24:27 +0100 | [diff] [blame] | 60 | They are all embedded in `xtesting <https://pypi.org/project/xtesting/>`_ dockers. |
mrichomme | 9643b0c | 2020-11-14 22:36:57 +0100 | [diff] [blame] | 61 | |
| 62 | .. hint:: |
| 63 | Automatic tests are currently divided in 4 different categories: |
| 64 | |
Lasse Kaihlavirta | 2d2888a | 2020-11-18 16:54:36 +0200 | [diff] [blame] | 65 | - infrastructure-healthcheck: tests from OOM checking the ONAP namespace, certificates... |
mrichomme | 9643b0c | 2020-11-14 22:36:57 +0100 | [diff] [blame] | 66 | - healthcheck: basic tests on components |
| 67 | - smoke tests: end to end tests |
| 68 | - security tests |
| 69 | |
| 70 | A dashboard summarizing the status and providing the links to the test result |
| 71 | page or the logs is automatically created at the end of the execution of the |
| 72 | tests. |
| 73 | |
| 74 | .. figure:: files/tests/test-dashboard.png |
| 75 | |
| 76 | All the pages and artifacts are pushed to LF backend: |
| 77 | |
| 78 | - Daily chaines: https://logs.onap.org/onap-integration/daily |
| 79 | - Weekly chains: https://logs.onap.org/onap-integration/weekly |
| 80 | - Gating chains: https://logs.onap.org/onap-integration/gating |
| 81 | |
| 82 | |
| 83 | Infrastructure Healthcheck Tests |
| 84 | ................................ |
| 85 | |
| 86 | .. csv-table:: Infrastructure Healthcheck Tests |
| 87 | :file: ./files/csv/tests-infrastructure-healthcheck.csv |
| 88 | :widths: 20,40,20,20 |
| 89 | :delim: ; |
| 90 | :header-rows: 1 |
| 91 | |
mrichomme | 7eecfb3 | 2020-11-26 15:24:27 +0100 | [diff] [blame] | 92 | See `Infrastructure Healthcheck README <https://git.onap.org/integration/xtesting/tree/infra-healthcheck/README.md>`_ |
mrichomme | 9643b0c | 2020-11-14 22:36:57 +0100 | [diff] [blame] | 93 | to adapt then run infrastructure healthcheck tests on your own system. |
| 94 | |
| 95 | Please note that the onap-k8s is run 2 times in CD chains. It is run just after |
| 96 | the installation (onap-k8s) and at the end of the test execution (onap-k8s-teardown) |
| 97 | in order to collect the logs of the different components during the test execution. |
| 98 | |
| 99 | .. figure:: files/tests/test-onap-k8s.png |
| 100 | |
Lasse Kaihlavirta | 2d2888a | 2020-11-18 16:54:36 +0200 | [diff] [blame] | 101 | Healthcheck Tests |
mrichomme | 7eecfb3 | 2020-11-26 15:24:27 +0100 | [diff] [blame] | 102 | ................. |
mrichomme | 9643b0c | 2020-11-14 22:36:57 +0100 | [diff] [blame] | 103 | |
| 104 | .. csv-table:: Healthcheck Tests |
| 105 | :file: ./files/csv/tests-healthcheck.csv |
| 106 | :widths: 20,40,20,20 |
| 107 | :delim: ; |
| 108 | :header-rows: 1 |
| 109 | |
mrichomme | 7eecfb3 | 2020-11-26 15:24:27 +0100 | [diff] [blame] | 110 | See `Healthcheck README <https://git.onap.org/integration/xtesting/tree/healthcheck/README.md>`_ |
mrichomme | 9643b0c | 2020-11-14 22:36:57 +0100 | [diff] [blame] | 111 | to adapt then run healthcheck tests on your own system. |
| 112 | |
| 113 | Smoke Tests |
| 114 | ........... |
| 115 | |
| 116 | .. csv-table:: Smoke Tests |
| 117 | :file: ./files/csv/tests-smoke.csv |
| 118 | :widths: 20,40,20,20 |
| 119 | :delim: ; |
| 120 | :header-rows: 1 |
| 121 | |
mrichomme | 7eecfb3 | 2020-11-26 15:24:27 +0100 | [diff] [blame] | 122 | See `Python smoke test README <https://git.onap.org/integration/xtesting/tree/smoke-usecases-robot/README.md>`_ |
mrichomme | 9643b0c | 2020-11-14 22:36:57 +0100 | [diff] [blame] | 123 | to adapt and run robot based smoke tests. |
| 124 | An html page is generated by the pythonsdk-test tests. |
| 125 | |
| 126 | .. figure:: files/tests/test-basic-cnf.png |
| 127 | |
| 128 | |
mrichomme | 7eecfb3 | 2020-11-26 15:24:27 +0100 | [diff] [blame] | 129 | See `Robot smoke test README <https://git.onap.org/integration/xtesting/tree/smoke-usecases-pythonsdk/README.md>`_ |
| 130 | to adapt and run python-onapsdk based smoke tests. |
mrichomme | 9643b0c | 2020-11-14 22:36:57 +0100 | [diff] [blame] | 131 | Standard Robot html pages are generated. See :ref:`Robot page <docs_robot>`. |
| 132 | |
| 133 | Security Tests |
| 134 | ............... |
| 135 | |
| 136 | .. csv-table:: Security Tests |
| 137 | :file: ./files/csv/tests-security.csv |
| 138 | :widths: 20,40,20,20 |
| 139 | :delim: ; |
| 140 | :header-rows: 1 |
| 141 | |
mrichomme | 7eecfb3 | 2020-11-26 15:24:27 +0100 | [diff] [blame] | 142 | See `Security test README <https://git.onap.org/integration/xtesting/tree/security/README.md>`_ |
mrichomme | 9643b0c | 2020-11-14 22:36:57 +0100 | [diff] [blame] | 143 | to adapt then run the security tests on your own system. |
| 144 | |
| 145 | Note for security tests, integration team follows `SECCOM recommendations and |
mrichomme | 7eecfb3 | 2020-11-26 15:24:27 +0100 | [diff] [blame] | 146 | apply waivers granted by SECCOM if needed through xfail lists <https://git.onap.org/integration/seccom/tree/>`_. |
mrichomme | 9643b0c | 2020-11-14 22:36:57 +0100 | [diff] [blame] | 147 | |
| 148 | Stability Testing |
| 149 | ----------------- |
| 150 | |
| 151 | Ensuring the stability of ONAP is one of the missions of the Integration team. |
| 152 | CI chains and stability tests are performed to help stabilising the release. |
| 153 | See :ref:`Integration stability tests <integration-s3p>` for details. |