[release-announce] neutron-tempest-plugin 0.4.0 (train)

no-reply at openstack.org no-reply at openstack.org
Thu Jul 25 14:16:58 UTC 2019


We are pleased to announce the release of:

neutron-tempest-plugin 0.4.0: Tempest plugin for Neutron Project

This release is part of the train release series.

The source is available from:

    https://opendev.org/openstack/neutron-tempest-plugin

Download the package from:

    https://tarballs.openstack.org/neutron-tempest-plugin/

Please report issues through:

    https://bugs.launchpad.net/neutron/+bugs

For more details, please see below.

Changes in neutron-tempest-plugin 0.3.0..0.4.0
----------------------------------------------

a7bb161 Add possibility to disable running stadium projects tests
1d36a20 Migrate neutron-fwaas tests to neutron-tempest-plugin
0daae87 Add logging of servers console in scenario test_port_forwardings
d4fa6dc Update flake8 style enforcement
6aae0d4 Change order of creating vms and plug routers in scenario test
25cea25 Sync Sphinx requirement
411261f Additional test cases for port forwardings API
b7f7d13 Re-enable internal DNS tests
1c95d62 Fix: test fails due to image not found
13903aa Scenario test for port forwarding
d2a6acc Scenario test case to check connectivity when dvr and non-dvr routers used
e142c0b Ensure DNS configuration from conf
f40b494 Remove networking-bgpvpn job from template
74e760a Normalize url without port with schema default port
003fcae Add base API tests for port forwarding
68ab245 Add case for router east west traffic
87c3f94 Add API test case to check if SG displays all rules
8dd49aa Rehome tempest tests from networking-bgpvpn repo
8d2557c Change legacy security group rule check
4f5afdc Dropping support for py35
46a0ae2 Remove obsolete docs job from neutron-tempest-plugin-jobs
1a987ec Migrate networking-sfc tests to neutron-tempest-plugin
d49cf7a Replace git.openstack.org URLs with opendev.org URLs
ce246d0 Add api test for DVR coverting back to centralized
eae7a37 OpenDev Migration Patch
fa1081a Add additional config option "default_image_is_advanced"
a57f80d Add definition of jobs running on stable/stein branch
52b1b95 Switch job definitions to use new "tempest_plugin" variable
5ce1bc2 Addition of negative test: network creation with an above the limit mtu value. The value max_mtu can be configured in tempest.conf
5ddcf33 Mark test_floatingip_port_details test as unstable
92fbbab Min bw rule operations should be rejected on non-physnet ports/networks
03ec317 Replace openstack.org git:// URLs with https://
4ba1c80 Don't customize image before upload it to Glance by default


Diffstat (except docs and test files)
-------------------------------------

.gitreview                                         |    2 +-
.zuul.yaml                                         |  247 +++-
HACKING.rst                                        |    2 +-
README.rst                                         |    2 +-
devstack/README.rst                                |    4 +-
devstack/customize_image.sh                        |    2 +-
neutron_tempest_plugin/api/admin/test_ports.py     |    9 +
neutron_tempest_plugin/api/base.py                 |   71 +-
neutron_tempest_plugin/api/base_security_groups.py |    4 +-
neutron_tempest_plugin/api/test_networks.py        |    2 +-
.../api/test_networks_negative.py                  |   10 +
.../api/test_port_forwardings.py                   |  196 +++
neutron_tempest_plugin/api/test_routers.py         |   11 +-
neutron_tempest_plugin/api/test_security_groups.py |   61 +-
neutron_tempest_plugin/bgpvpn/__init__.py          |    0
neutron_tempest_plugin/bgpvpn/api/__init__.py      |    0
neutron_tempest_plugin/bgpvpn/api/test_bgpvpn.py   |  380 ++++++
neutron_tempest_plugin/bgpvpn/base.py              |   95 ++
neutron_tempest_plugin/bgpvpn/scenario/__init__.py |    0
neutron_tempest_plugin/bgpvpn/scenario/manager.py  |  879 +++++++++++++
.../bgpvpn/scenario/test_bgpvpn_basic.py           | 1354 ++++++++++++++++++++
neutron_tempest_plugin/bgpvpn/services/__init__.py |    0
.../bgpvpn/services/bgpvpn_client.py               |  115 ++
neutron_tempest_plugin/common/utils.py             |   21 +
neutron_tempest_plugin/config.py                   |   75 ++
neutron_tempest_plugin/fwaas/__init__.py           |    0
neutron_tempest_plugin/fwaas/api/__init__.py       |    0
neutron_tempest_plugin/fwaas/api/fwaas_v2_base.py  |   33 +
.../fwaas/api/test_fwaasv2_extensions.py           |  358 ++++++
neutron_tempest_plugin/fwaas/common/__init__.py    |    0
.../fwaas/common/fwaas_v2_client.py                |  162 +++
neutron_tempest_plugin/fwaas/scenario/__init__.py  |    0
.../fwaas/scenario/fwaas_v2_base.py                |   69 +
.../fwaas/scenario/fwaas_v2_manager.py             |  877 +++++++++++++
.../fwaas/scenario/test_fwaas_v2.py                |  303 +++++
neutron_tempest_plugin/fwaas/services/__init__.py  |    0
neutron_tempest_plugin/fwaas/services/v2_client.py |  123 ++
neutron_tempest_plugin/scenario/base.py            |   15 +-
.../scenario/test_connectivity.py                  |  127 +-
neutron_tempest_plugin/scenario/test_floatingip.py |    1 +
.../scenario/test_internal_dns.py                  |    9 +-
neutron_tempest_plugin/scenario/test_mtu.py        |   45 +-
.../scenario/test_port_forwardings.py              |   88 ++
neutron_tempest_plugin/scenario/test_trunk.py      |   31 +-
.../services/network/json/network_client.py        |   49 +
neutron_tempest_plugin/sfc/__init__.py             |    0
neutron_tempest_plugin/sfc/services/__init__.py    |    0
.../sfc/services/flowclassifier_client.py          |   53 +
neutron_tempest_plugin/sfc/services/sfc_client.py  |  165 +++
releasenotes/source/index.rst                      |    6 +-
roles/multi-node-setup/README.rst                  |    2 +-
setup.cfg                                          |    4 +-
test-requirements.txt                              |    3 +-
tox.ini                                            |    6 +-
65 files changed, 9044 insertions(+), 87 deletions(-)


Requirements updates
--------------------

diff --git a/test-requirements.txt b/test-requirements.txt
index c0546cf..20b29f4 100644
--- a/test-requirements.txt
+++ b/test-requirements.txt
@@ -10 +10,2 @@ python-subunit>=1.0.0 # Apache-2.0/BSD
-sphinx!=1.6.6,!=1.6.7,>=1.6.2 # BSD
+sphinx!=1.6.6,!=1.6.7,>=1.6.2,<2.0.0;python_version=='2.7'  # BSD
+sphinx!=1.6.6,!=1.6.7,>=1.6.2;python_version>='3.4'  # BSD






More information about the Release-announce mailing list