commit | ce30501785fef1f2a758256c686c548325c2fb3a | [log] [tgz] |
---|---|---|
author | Kailash <kailash@onlab.us> | Mon Aug 05 13:15:52 2019 -0700 |
committer | Kailash <kailash@onlab.us> | Mon Aug 05 13:20:57 2019 -0700 |
tree | f00cfd29a1703d45530f1c89e212eeea6122273b | |
parent | ba4152877245da2a674584005657e100efc654eb [diff] |
delete device testcase + test improvements Change-Id: Ia2b6d5c2912e5c513e2ac08efa1a691a89d4c5c0
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.