Merge "Support latest as the microversion value"
This commit is contained in:
commit
73cbfc744b
@ -48,10 +48,13 @@ def _get_version():
|
||||
ver = flask.request.headers.get(conf_opts.VERSION_HEADER,
|
||||
_DEFAULT_API_VERSION)
|
||||
try:
|
||||
requested = tuple(int(x) for x in ver.split('.'))
|
||||
if ver.lower() == 'latest':
|
||||
requested = CURRENT_API_VERSION
|
||||
else:
|
||||
requested = tuple(int(x) for x in ver.split('.'))
|
||||
except (ValueError, TypeError):
|
||||
return error_response(_('Malformed API version: expected string '
|
||||
'in form of X.Y'), code=400)
|
||||
'in form of X.Y or latest'), code=400)
|
||||
return requested
|
||||
|
||||
|
||||
|
@ -637,6 +637,12 @@ class TestApiVersions(BaseAPITest):
|
||||
self.assertIn('%d.%d' % main.MINIMUM_API_VERSION, error)
|
||||
self.assertIn('%d.%d' % main.CURRENT_API_VERSION, error)
|
||||
|
||||
def test_request_latest_version(self):
|
||||
headers = {conf_opts.VERSION_HEADER: 'latest'}
|
||||
res = self.app.get('/', headers=headers)
|
||||
self.assertEqual(200, res.status_code)
|
||||
self._check_version_present(res)
|
||||
|
||||
|
||||
class TestPlugins(unittest.TestCase):
|
||||
@mock.patch.object(example_plugin.ExampleProcessingHook,
|
||||
|
@ -0,0 +1,5 @@
|
||||
---
|
||||
features:
|
||||
- |
|
||||
Adds support to use ``latest`` as the microversion value in the request
|
||||
to the ironic-inspector API.
|
Loading…
x
Reference in New Issue
Block a user