initial delivery of system test framework 66/1766/3
authorMike Marchetti <mmarchetti@sandvine.com>
Thu, 4 May 2017 20:43:09 +0000 (16:43 -0400)
committermarchettim <mmarchetti@sandvine.com>
Tue, 23 May 2017 17:08:27 +0000 (18:08 +0100)
commit08f042835a504f0bafe1cb83fc8f5008502ade78
tree9bf56be60c1e8c4d51f9c0d6cb1888616cf20d72
parent61d476da11d9da3a22865662d93ade39227df413
initial delivery of system test framework

- add initial pytest framework with fixtures for
  vim, openstack, osm
- test cirros and ping_pong ns available from repo

Change-Id: Iae1fa4bcbf55fb8bc6986e798fd662a0bd452470
Signed-off-by: Mike Marchetti <mmarchetti@sandvine.com>
18 files changed:
.gitignore [new file with mode: 0644]
systest/.gitignore [new file with mode: 0644]
systest/Makefile [new file with mode: 0644]
systest/conftest.py [new file with mode: 0644]
systest/lib/__init__.py [new file with mode: 0644]
systest/lib/openstack/__init__.py [new file with mode: 0644]
systest/lib/openstack/fixtures.py [new file with mode: 0644]
systest/lib/openstack/openstack.py [new file with mode: 0644]
systest/lib/osm/__init__.py [new file with mode: 0644]
systest/lib/osm/fixtures.py [new file with mode: 0644]
systest/lib/osm/osm.py [new file with mode: 0644]
systest/lib/vim/__init__.py [new file with mode: 0644]
systest/lib/vim/fixtures.py [new file with mode: 0644]
systest/lib/vim/vim.py [new file with mode: 0644]
systest/testcases/conftest.py [new file with mode: 0644]
systest/testcases/smoke/test_smoke.py [new file with mode: 0644]
systest/testcases/vim/test_vim.py [new file with mode: 0644]
systest/testcases/vnfs/test_vnfs.py [new file with mode: 0644]