- 05 Apr, 2022 1 commit
-
-
Zuul authored
-
- 01 Apr, 2022 1 commit
-
-
Roman Popelka authored
As part of tempest-scenario-manager-cleanup[1] effort it would be good to allow plugins to define their own security group rulesets as they're not always the same as tempest's (f.e. manila tempest plugin[2]) [1]https://etherpad.opendev.org/p/tempest-scenario-manager-cleanup [2]https://opendev.org/openstack/manila-tempest-plugin/src/branch/master/manila_tempest_tests/tests/scenario/manager.py#L1001 Change-Id: I3cb3a6f67ea507d9e721a31fcba78f8344c630ca
-
- 30 Mar, 2022 1 commit
-
-
Zuul authored
-
- 29 Mar, 2022 1 commit
-
-
Zuul authored
-
- 28 Mar, 2022 2 commits
- 27 Mar, 2022 1 commit
-
-
Dr. Jens Harbott authored
This test is failing very often, make it wait for the server being started, this has helped for a lot of other volume related tests, too. Signed-off-by:Dr. Jens Harbott <harbott@osism.tech> Change-Id: Ic2b162b0cd4db04dd0f6c47de815e72888d04998
-
- 25 Mar, 2022 3 commits
-
-
Phil Sphicas authored
VNC console tests may fail if SSL is terminated on a front-end load balancer that relies on SNI. With this change, when SSL wrapping the socket for a wss connection, the optional server_hostname parameter is included, in order to allow the server (or SSL terminating entity) to respond with correct certificate. The create_websocket function is used by the vnc console tests here: - tempest/api/compute/admin/test_live_migration.py - tempest/api/compute/servers/test_novnc.py Change-Id: I8025742607e591821a5e90b5c193ba6cbbc3a241
-
Martin Kopec authored
Since Python 3.2 and 2.7.9, it is recommended to use the SSLContext.wrap_socket() instead of wrap_socket(). The top-level function is limited and creates an insecure client socket without server name indication or hostname matching. [1] https://docs.python.org/3/library/ssl.html#ssl.wrap_socket Change-Id: I5d61f32760d2715fdb34314f173b0efcec4a2dcf
-
Martin Kopec authored
Now we have stable/yoga branch ready for devstack and so does for all service projects. This commit adds the Tempest testing for stable/yoga by adding new jobs running on stable/yoga version of openstack. Change-Id: Id731c26a0f134428094e8d830fb615695dffe10b
-
- 21 Mar, 2022 1 commit
-
-
Zuul authored
-
- 19 Mar, 2022 1 commit
-
-
Ghanshyam Mann authored
ServerStableDeviceRescueTest also perform the attach_volume on rescue server and in cleanup detach_volume. As described in the bug#1960346 we need to wait for server readiness before detach volume called. Also making centos stream 9 job as voting. Closes-Bug: #1960346 Change-Id: Ia213297b13f42d39213dea9a3b2cfee561cdcf28
-
- 18 Mar, 2022 2 commits
-
-
Ghanshyam Mann authored
As you can see the details in bug#1960346, volume detach fails on centos 9 stream while server is not fully booted. This commit makes sure that erver creation as well as after the unrescue server test wait for the server to be SSH-able before test start performing the detach operation in cleanup. Related-Bug: #1960346 Change-Id: Ib21a764e3cf81d761d738bf7bfaf5c264b739a16
-
Ghanshyam Mann authored
We can use the ssh|ping-able logic into many other tests than just in common create server method. For example, when in rescue server negative test, we need to check for SSH after test unrescue the server and detach volume from it. Change-Id: Ibc59e03c7f6a0aa89fb6188a5cb68be39c3ee611
-
- 17 Mar, 2022 1 commit
-
-
Benny Kopilov authored
Current test class decorate the class with skip. The problem is that when feature is disabled the skip section returns a function type. The ServersQuotaTest class inherits from a function type instead type (class) and it fails with TypeError: function() argument We dont see the exception because on false we dont try to run testtool version is 2.5.0 Change-Id: I3ff2e59ca1eaae4f9b1eb1fb7148cd3efcbcd8f2
-
- 12 Mar, 2022 1 commit
-
-
Zuul authored
-
- 11 Mar, 2022 3 commits
-
-
Zuul authored
-
Ghanshyam Mann authored
Tempest 30.0.0 has been released [1]. This commit adds a new page for 30.0.0 release notes. [1] https://review.opendev.org/c/openstack/releases/+/832742 Change-Id: I52e84d8626a39e8ad8690185dc12cfd8d8654c9b
-
Martin Kopec authored
Adding release notes pages for 29.1.0 and 29.2.0 versions. [1] https://review.opendev.org/c/openstack/releases/+/816165 [2] https://review.opendev.org/c/openstack/releases/+/817401 Change-Id: I684168c3f453d332d44ffc3ae9b326205e6b54aa Change-Id: I13bee2530d615d8d5969e866ffce6c30e40a8047
-
- 09 Mar, 2022 5 commits
-
-
Ghanshyam Mann authored
To releas a new tag for Tempest Yoga, we modified the compatible constraint in tox.ini - https://review.opendev.org/c/openstack/tempest/+/832739/1 As new tag is released now so we can switch back to the master constraint in tox.ini. Change-Id: I4330b958970c28ed373e6385c8ac9b813c1257a8
-
Ghanshyam Mann authored
Change-Id: Ide70ba2077caeef8c3b30a2399861aa5261d0bdc
-
Ghanshyam Mann authored
We are going to release Tempest new tag to declare the start of support for stable/yoga. So that new tag use stable/yoga constraint in the tox env. For example: if anyone use Tempest new tag (30.0.0) in future say 1 year later then tox env also should use the yoga contstraint for compatibility instead master. These need to be move back to master constraint once release is done. By using master constraint in tox for all the old tag is problem and we faced the issue of constraint incompatibility due to that and we have to work around it all over the devstack, tempest role, grenade to set the stable constraint cia env var. Change-Id: Ie3159da1b9b73652f52cf22d87ab1dd0ae6411d9
-
Zuul authored
-
Zuul authored
-
- 05 Mar, 2022 2 commits
-
-
Ghanshyam Mann authored
Compute microversion 2.75 made the rebuild and update server response same as get servers - https://docs.openstack.org/nova/latest/reference/api-microversion-history.html#id68 Partially Implements: blueprint fix-microversion-gap Change-Id: I1728e5de0e815def0fe31c242203bd9f36dc41f4
-
Zuul authored
-
- 04 Mar, 2022 6 commits
-
-
Zuul authored
-
Zuul authored
-
Zuul authored
-
Ghanshyam Mann authored
Compute microversion 2.45 changed the response of create image and create backup APIs. create image schema already covered - https://github.com/openstack/tempest/blob/fec2c93cdcc14ad08d0a35136ee287525e7a4879/tempest/lib/api_schema/response/compute/v2_45/images.py This patch adds the schema for create backup API. Partially Implements: blueprint fix-microversion-gap Change-Id: Icfeec8957c58472e7f176680d48745b5c5350b55
-
melanie witt authored
This adds a sequence of unified limit updates and verifications of enforcement for servers, vcpu, ram, and disk. This is safe to run in parallel with other tests because only project scoped limits are being tested in this scenario. Related to blueprint unified-limits-nova Change-Id: I37d3896a037e2d4d1004abc52f6e93fd0025f981
-
Zuul authored
-
- 03 Mar, 2022 3 commits
- 02 Mar, 2022 5 commits
-
-
Zuul authored
-
Ghanshyam Mann authored
centos 9 stream is testing runtime for Yoga so let's add it in tempest gate. This job is failing due to bug#1960346 and it will be helpful to know the job status when we add the fixes with below series: - https://review.opendev.org/q/topic:wait_until_sshable_pingable Related-Bug: #1960346 Change-Id: Ib91f67fb9a592e91649e06bb2821f452b36b49f0
-
Zuul authored
-
likangkang01 authored
add image schemas for image V2 Change-Id: Ica35b854dc2f2f36b62c71025dd3f0440d93c85a
-
likangkang01 authored
test list group types,sort asc、sort des、is_public=True、is_public=False Change-Id: I8c8a0cf699e85c0566928b2d6ccaf88d58890e43
-