garage-admin-sdk-generator/python/test/test_layout_api.py

57 lines
1.6 KiB
Python

"""
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.layout_api import LayoutApi # noqa: E501
class TestLayoutApi(unittest.TestCase):
"""LayoutApi unit test stubs"""
def setUp(self):
self.api = LayoutApi() # noqa: E501
def tearDown(self):
pass
def test_layout_apply_post(self):
"""Test case for layout_apply_post
Apply staged layout # noqa: E501
"""
pass
def test_layout_get(self):
"""Test case for layout_get
Details on the current and staged layout # noqa: E501
"""
pass
def test_layout_post(self):
"""Test case for layout_post
Send modifications to the cluster layout # noqa: E501
"""
pass
def test_layout_revert_post(self):
"""Test case for layout_revert_post
Clear staged layout # noqa: E501
"""
pass
if __name__ == '__main__':
unittest.main()