Console output was empty in test_get_console_output_server_id_in_shutoff_status

Bug #2028851 reported by sean mooney
8
This bug affects 1 person
Affects Status Importance Assigned to Milestone
OpenStack Compute (nova)
Fix Committed
Medium
Unassigned
tempest
Confirmed
High
Ghanshyam Mann

Bug Description

test_get_console_output_server_id_in_shutoff_status

https://github.com/openstack/tempest/blob/04cb0adc822ffea6c7bfccce8fa08b03739894b7/tempest/api/compute/servers/test_server_actions.py#L713

is failing consistently in the nova-lvm job starting on July 24 with 132 failures in the last 3 days. https://tinyurl.com/kvcc9289

Traceback (most recent call last):
  File "/opt/stack/tempest/tempest/api/compute/servers/test_server_actions.py", line 728, in test_get_console_output_server_id_in_shutoff_status
    self.wait_for(self._get_output)
  File "/opt/stack/tempest/tempest/api/compute/base.py", line 340, in wait_for
    condition()
  File "/opt/stack/tempest/tempest/api/compute/servers/test_server_actions.py", line 213, in _get_output
    self.assertTrue(output, "Console output was empty.")
  File "/usr/lib/python3.10/unittest/case.py", line 687, in assertTrue
    raise self.failureException(msg)
AssertionError: '' is not true : Console output was empty.

its not clear why this has started failing. it may be a regression or a latent race in the test that we are now failing.

    def test_get_console_output_server_id_in_shutoff_status(self):
        """Test getting console output for a server in SHUTOFF status

        Should be able to GET the console output for a given server_id
        in SHUTOFF status.
        """

        # NOTE: SHUTOFF is irregular status. To avoid test instability,
        # one server is created only for this test without using
        # the server that was created in setUpClass.
        server = self.create_test_server(wait_until='ACTIVE')
        temp_server_id = server['id']

        self.client.stop_server(temp_server_id)
        waiters.wait_for_server_status(self.client, temp_server_id, 'SHUTOFF')
        self.wait_for(self._get_output)

the test does not wait for the VM to be sshable so its possible that we are shutting off the VM before it is fully booted and no output has been written to the console.

this failure has happened on multiple providers but only in the nova-lvm job.
the console behavior is unrelated to the storage backend but the lvm job i belive is using
lvm on a loopback file so the storage performance is likely slower then raw/qcow.

so perhaps the boot is taking longer and no output is being written.

Tags: gate-failure
Revision history for this message
Sylvain Bauza (sylvain-bauza) wrote :

Seems to be a regression coming from the automatic rebase of https://github.com/openstack/tempest/commit/eea2c1cfac1e5d240cad4f8be68cff7d72f220a8

Changed in nova:
status: New → Invalid
Revision history for this message
Ghanshyam Mann (ghanshyammann) wrote :

There is an error in the tempest test where the _get_console() method always try to get the console for the
self.server, which is created in setup, but test test_get_console_output_server_id_in_shutoff_status creates its own server and uses _get_console() method to check the console. So test creates its own server but try to get the console for a different server.

fixing that error in https://review.opendev.org/c/openstack/tempest/+/889895

Changed in tempest:
status: New → Confirmed
assignee: nobody → Ghanshyam Mann (ghanshyammann)
importance: Undecided → Critical
Revision history for this message
Ghanshyam Mann (ghanshyammann) wrote :

test_get_console_output_server_id_in_shutoff_status test was always wrong since starting which used to get the console for the server created in the setup method and is in active state. This test never tried to get the console of the shutoff server.

It is still unknown how this wrong test started failing after the test refactoring in this commit https://review.opendev.org/c/openstack/tempest/+/889109 and unhide this issue.

This Tempest test corrects the tempest test, which will always fail because the test expects the console of *shutoff* Guest also, which is not something returned by Nova. Nova does not return the server console for the shutoff server.

There is an open question on Nova's behaviours:

1. What should Nova return the console output of the shutoff guest
2. what status code should Nova return in case the "console is not available"? Currently, it returns 404.

There is some discussion over this topic in IRC:
- hhttps://meetings.opendev.org/irclogs/%23openstack-nova/%23openstack-nova.2023-07-27.log.html#t2023-07-27T18:50:03

Changed in nova:
status: Invalid → New
Revision history for this message
Ghanshyam Mann (ghanshyammann) wrote :

Re-opening it for nova.

For now, the test is skipped in Tempest - https://review.opendev.org/c/openstack/tempest/+/889895

Revision history for this message
OpenStack Infra (hudson-openstack) wrote : Change abandoned on tempest (master)

Change abandoned by "sean mooney <email address hidden>" on branch: master
Review: https://review.opendev.org/c/openstack/tempest/+/889847
Reason: this actully is not required https://review.opendev.org/c/openstack/tempest/+/889895 fixed the issue wehre the test was creating two vms and then using the wrong one.

Revision history for this message
Balazs Gibizer (balazs-gibizer) wrote :
Changed in nova:
status: New → Fix Committed
importance: Undecided → Medium
Revision history for this message
Martin Kopec (mkopec) wrote :

Supposedly https://review.opendev.org/c/openstack/tempest/+/889895 fixed the issue but it also decorated the test to be skipped because of this LP.
What's the solution here? Do we want to unskip the test now? Is there anything else that needs to be done from Tempest perspective?

Changed in tempest:
importance: Critical → High
Revision history for this message
Ghanshyam Mann (ghanshyammann) wrote :

yes, Tempest corrected the test and it unhide the another bug that test_get_console_output_server_id_in_shutoff_status fail 100% as console is not available for SHUTOFF servers. After correcting the test, it fails 100% as Tempest get 404 from nova for shutoff server "Details: {'code': 404, 'message': 'Guest does not have a console available.'}"

Let me confirm from nova side what should be the behavior and accordingly we can fix the tests if needed otherwise nova side fix.

To post a comment you must log in.
This report contains Public information  
Everyone can see this information.

Other bug subscribers

Remote bug watches

Bug watches keep track of this bug in other bug trackers.