commit | 5b80f672a77a13ca87169f3b82bd18151d3c5494 | [log] [tgz] |
---|---|---|
author | Andy Bavier <andy@opennetworking.org> | Tue Aug 27 10:31:53 2019 -0700 |
committer | Andy Bavier <andy@opennetworking.org> | Tue Aug 27 10:31:53 2019 -0700 |
tree | 2568e92db4f8de59d0ef6acd167a781f1a5addcc | |
parent | 9b50efc60eee5558d047c3302b2c315184f81f57 [diff] |
Use pip instead of pip3 due to errors installing robotframework-kafkalibrary Change-Id: I36e3675d34d052c8d2ae10df7563b49c081da800
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.