commit | c50f533e79aa2d8ddbfdf04b102e3e7e4800c9d3 | [log] [tgz] |
---|---|---|
author | Suchitra Vemuri <suchitra@opennetworking.org> | Wed Aug 28 15:59:37 2019 -0700 |
committer | Suchitra Vemuri <suchitra@opennetworking.org> | Thu Aug 29 19:24:34 2019 +0000 |
tree | 9563969a563df41e7fb7d8405f37acb75c7119fc | |
parent | 2b963f00e1efe0a8c410cba23a7e0ae24d845195 [diff] |
configs for automated tests on POD Change-Id: I5ac84ba5ccafc2a595c5229329f50846321d4b18
Automated test-suites to validate the stability/functionality of VOLTHA. Tests that reside in here should be written in Robot Framework and Python.
Intended use includes:
voltctl
- a command line tool to access VOLTHA. Reference - voltctlkubectl
- a command line tool to access your Kubernetes Clusers. Reference - kubectlvoltctl
and kubectl
should be configured to your system under test prior to any test executionsDirectory Structures are as followed:
├── tests └── sanity/ // basic tests that should always pass. Will be used as gating-patchsets └── functional/ // feature/functionality tests that should be implemented as new features get developed └── libraries // shared test keywords (functions) across various test suites └── variables // shared variables across various test suites
Download voltha-system-tests
git clone https://gerrit.opencord.org/voltha-system-tests
Create test virtual-environment
cd voltha-system-tests/
source setup_venv.sh
Running Test-Suites
robot --exclude notready sanity.robot
This test execution will generate three report files (output.xml
, report.html
, log.html
). View the report.html
page to analyze the results.