commit | e60b31706240d989ba6d0244acbbb97154c47a13 | [log] [tgz] |
---|---|---|
author | Sharpz7 <adam.mcarthur62@gmail.com> | Fri Nov 08 21:59:40 2024 +0000 |
committer | Adam McArthur <adam.mcarthur62@gmail.com> | Sun Nov 10 03:29:42 2024 +0000 |
tree | 31cb06443d0b380fc13e842dccb73e4376176367 | |
parent | 14588c55b376c3de342bdfbf815543cc48cdfc8a [diff] |
Added statuscode 406 support Added "NotAllowed" exception support. In general, 406 is returned when the requested microversion is not supported. https://specs.openstack.org/openstack/api-wg/guidelines/microversion_specification.html Change-Id: If5dda8254e8077070e77e8d56ecc6721222ef410
diff --git a/tempest/lib/common/rest_client.py b/tempest/lib/common/rest_client.py index b656b7a..b360569 100644 --- a/tempest/lib/common/rest_client.py +++ b/tempest/lib/common/rest_client.py
@@ -881,6 +881,11 @@ resp_body = self._parse_resp(resp_body) raise exceptions.Gone(resp_body, resp=resp) + if resp.status == 406: + if parse_resp: + resp_body = self._parse_resp(resp_body) + raise exceptions.NotAcceptable(resp_body, resp=resp) + if resp.status == 409: if parse_resp: resp_body = self._parse_resp(resp_body)
diff --git a/tempest/lib/exceptions.py b/tempest/lib/exceptions.py index dd7885e..0242de2 100644 --- a/tempest/lib/exceptions.py +++ b/tempest/lib/exceptions.py
@@ -94,6 +94,11 @@ message = "Object not found" +class NotAcceptable(ClientRestClientException): + status_code = 406 + message = "Not Acceptable" + + class Conflict(ClientRestClientException): status_code = 409 message = "Conflict with state of target resource"