A Tempest plugin to test Neutron VMware NSX plugin.
Go to file
Bharath bhushan patel c401e6bac7 Manager parsing for nsxv is added
The designate related testcases were failing as the api call
to get transportzone from nsxv was failing as the manager client
object was not parsed to do so, added the code to handle it.

Change-Id: I49e5867dee5b42951d1dc66b304651aacf31e0c0
2018-10-09 09:43:54 +00:00
doc setup project for pypi releases 2018-07-31 09:09:52 -06:00
releasenotes Tempest: 1st patch after using cookiecutter to split in-tree project 2017-07-24 22:20:24 +00:00
vmware_nsx_tempest_plugin Manager parsing for nsxv is added 2018-10-09 09:43:54 +00:00
.gitignore setup project for pypi releases 2018-07-31 09:09:52 -06:00
.gitreview Tempest: Renamed folder based on the need. 2017-07-28 12:11:15 -07:00
.stestr.conf refactor top-level pkg to vmware_nsx_tempest_plugin 2018-07-31 12:48:38 -06:00
.testr.conf refactor top-level pkg to vmware_nsx_tempest_plugin 2018-07-31 12:48:38 -06:00
CONTRIBUTING.rst Tempest: 1st patch after using cookiecutter to split in-tree project 2017-07-24 22:20:24 +00:00
HACKING.rst Tempest: 1st patch after using cookiecutter to split in-tree project 2017-07-24 22:20:24 +00:00
LICENSE Tempest: 1st patch after using cookiecutter to split in-tree project 2017-07-24 22:20:24 +00:00
README.rst refactor top-level pkg to vmware_nsx_tempest_plugin 2018-07-31 12:48:38 -06:00
babel.cfg Tempest: 1st patch after using cookiecutter to split in-tree project 2017-07-24 22:20:24 +00:00
requirements.txt Updated from global requirements 2018-06-17 10:41:00 +00:00
setup.cfg refactor top-level pkg to vmware_nsx_tempest_plugin 2018-07-31 12:48:38 -06:00
setup.py Updated from global requirements 2018-06-17 10:41:00 +00:00
test-requirements.txt setup project for pypi releases 2018-07-31 09:09:52 -06:00
tox.ini [Tempest]: Removing B109 command from testenv:bandit 2018-08-21 05:36:46 +00:00

README.rst

Welcome!

vmware-nsx-tempest-plugin

Tempest plugin vmware-nsx-tempest-plugin

This repo hosts vmware-nsx's functional api and scenario tests.

vmware-nsx is Vmware plugin for neutron. This repo is tempest plugin to test vmware-nsx at function level. All vmware-nsx-tempest-plugin tests are in "master" branch. Some of the tests are designed based on N-S traffic. Intstall thsi repo on external VM to run entire test suite.

Features:

  • API tests
  • Scenario tests

Overview:

Installation:

  1. On your own development folder, for example /opt/stack/, install your own tempest development env at /opt/stack/tempest/:

    $ cd /opt/stack
    $ git clone https://github.com/openstack/tempest
  2. Install virtualenv with the following command:

    $ cd /opt/stack/tempest
    $ ./run_tempest.sh -u not_exist_tests
  3. Install vmware-nsx-tempest-plugin master branch at /opt/stack:

    $ cd /opt/stack
    $ git clone https://github.com/openstack/vmware-nsx-tempest-plugin.git
  4. Install vmware-nsx-tempest-plugin in your tempest development environment:

    $ cd /opt/stack
    $ sudo pip install -e vmware-nsx-tempest-plugin

    Run command:

    $ pip show vmware-nsx-tempest-plugin

    You should observe the following statements:

    Location: /opt/stack/vmware-nsx-tempest-plugin
  5. Validate installed vmware_nsx_tempest_plugin successfully do:

    $ cd /opt/stack/vmware-nsx-tempest-plugin
    $ ostestr -l vmware_nsx_tempest_plugin
    $ ostestr vmware_nsx_tempest_plugin.tests.nsxv3.scenario.test_mdproxy.TestMDProxy.test_mdproxy_ping
    $ python -m testtools.run vmware_nsx_tempest.tests.nsxv3.scenario.test_mdproxy.TestMDProxy.test_mdproxy_ping

Your installation failed, if no tests are shown.

Execution:

vmware-nsx-tempest tests are tempest tests, you need to run from tempest directory. For example, to run only l2-gateway tests:

$ cd /opt/stack/tempest
$ ostestr vmware_nsx_tempest_plugin.*test_l2_gateway
$ ostestr vmware_nsx_tempest_plugin.tests.nsxv.api.test_l2_gateway_connection.L2GatewayConnectionTest.test_csuld_single_device_interface_vlan

TechNote on vmware-nsx-tempest-plugin:

vmware-nsx-tempest-plugin is a plugin to tempest, not neutron, nor vmware-nsx. It is defined by tempest.test_plugins.

Modules within vmware-nsx-tempest can not see resources defined by vmware-nsx. Commands like following will not work, unless vmware-nsx is installed in your tempest environment:

import vmware_nsx.shell.admin.plugins.common.utils as admin_utils