""" Garage Administration API v0+garage-v0.7.3 Administrate your Garage cluster programatically, including status, layout, keys, buckets, and maintainance tasks. *Disclaimer: The API is not stable yet, hence its v0 tag. The API can change at any time, and changes can include breaking backward compatibility. Read the changelog and upgrade your scripts before upgrading. Additionnaly, this specification is very early stage and can contain bugs, especially on error return codes/types that are not tested yet. Do not expect a well finished and polished product!* # noqa: E501 The version of the OpenAPI document: v0.7.3 Generated by: https://openapi-generator.tech """ import unittest import garage_admin_sdk from garage_admin_sdk.api.key_api import KeyApi # noqa: E501 class TestKeyApi(unittest.TestCase): """KeyApi unit test stubs""" def setUp(self): self.api = KeyApi() # noqa: E501 def tearDown(self): pass def test_key_import_post(self): """Test case for key_import_post Import an existing key # noqa: E501 """ pass def test_key_post(self): """Test case for key_post Create a new API key # noqa: E501 """ pass def test_keyidaccess_key_delete(self): """Test case for keyidaccess_key_delete Delete a key # noqa: E501 """ pass def test_keyidaccess_key_get(self): """Test case for keyidaccess_key_get Get key information # noqa: E501 """ pass def test_keyidaccess_key_post(self): """Test case for keyidaccess_key_post Update a key # noqa: E501 """ pass def test_keysearchpattern_get(self): """Test case for keysearchpattern_get Select key by pattern # noqa: E501 """ pass def test_list_keys(self): """Test case for list_keys List all keys # noqa: E501 """ pass if __name__ == '__main__': unittest.main()