github.com/treeverse/lakefs@v1.24.1-0.20240520134607-95648127bfb0/clients/python/test/test_experimental_api.py (about) 1 # coding: utf-8 2 3 """ 4 lakeFS API 5 6 lakeFS HTTP API 7 8 The version of the OpenAPI document: 1.0.0 9 Contact: services@treeverse.io 10 Generated by OpenAPI Generator (https://openapi-generator.tech) 11 12 Do not edit the class manually. 13 """ # noqa: E501 14 15 16 import unittest 17 18 import lakefs_sdk 19 from lakefs_sdk.api.experimental_api import ExperimentalApi # noqa: E501 20 from lakefs_sdk.rest import ApiException 21 22 23 class TestExperimentalApi(unittest.TestCase): 24 """ExperimentalApi unit test stubs""" 25 26 def setUp(self): 27 self.api = lakefs_sdk.api.experimental_api.ExperimentalApi() # noqa: E501 28 29 def tearDown(self): 30 pass 31 32 def test_abort_presign_multipart_upload(self): 33 """Test case for abort_presign_multipart_upload 34 35 Abort a presign multipart upload # noqa: E501 36 """ 37 pass 38 39 def test_complete_presign_multipart_upload(self): 40 """Test case for complete_presign_multipart_upload 41 42 Complete a presign multipart upload request # noqa: E501 43 """ 44 pass 45 46 def test_create_presign_multipart_upload(self): 47 """Test case for create_presign_multipart_upload 48 49 Initiate a multipart upload # noqa: E501 50 """ 51 pass 52 53 def test_create_user_external_principal(self): 54 """Test case for create_user_external_principal 55 56 attach external principal to user # noqa: E501 57 """ 58 pass 59 60 def test_delete_user_external_principal(self): 61 """Test case for delete_user_external_principal 62 63 delete external principal from user # noqa: E501 64 """ 65 pass 66 67 def test_external_principal_login(self): 68 """Test case for external_principal_login 69 70 perform a login using an external authenticator # noqa: E501 71 """ 72 pass 73 74 def test_get_external_principal(self): 75 """Test case for get_external_principal 76 77 describe external principal by id # noqa: E501 78 """ 79 pass 80 81 def test_hard_reset_branch(self): 82 """Test case for hard_reset_branch 83 84 hard reset branch # noqa: E501 85 """ 86 pass 87 88 def test_list_user_external_principals(self): 89 """Test case for list_user_external_principals 90 91 list user external policies attached to a user # noqa: E501 92 """ 93 pass 94 95 def test_sts_login(self): 96 """Test case for sts_login 97 98 perform a login with STS # noqa: E501 99 """ 100 pass 101 102 103 if __name__ == '__main__': 104 unittest.main()