-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest_service_user_api.py
109 lines (74 loc) · 3.5 KB
/
test_service_user_api.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
# coding: utf-8
"""
Frontier Administration API
The Frontier APIs adhere to the OpenAPI specification, also known as Swagger, which provides a standardized approach for designing, documenting, and consuming RESTful APIs. With OpenAPI, you gain a clear understanding of the API endpoints, request/response structures, and authentication mechanisms supported by the Frontier APIs. By leveraging the OpenAPI specification, developers can easily explore and interact with the Frontier APIs using a variety of tools and libraries. The OpenAPI specification enables automatic code generation, interactive API documentation, and seamless integration with API testing frameworks, making it easier than ever to integrate Frontier into your existing applications and workflows.
The version of the OpenAPI document: 0.2.0
Contact: [email protected]
Generated by OpenAPI Generator (https://openapi-generator.tech)
Do not edit the class manually.
""" # noqa: E501
import unittest
from frontier_api.api.service_user_api import ServiceUserApi # noqa: E501
class TestServiceUserApi(unittest.TestCase):
"""ServiceUserApi unit test stubs"""
def setUp(self) -> None:
self.api = ServiceUserApi() # noqa: E501
def tearDown(self) -> None:
pass
def test_frontier_service_create_service_user(self) -> None:
"""Test case for frontier_service_create_service_user
Create service user # noqa: E501
"""
pass
def test_frontier_service_create_service_user_key(self) -> None:
"""Test case for frontier_service_create_service_user_key
Create service user key # noqa: E501
"""
pass
def test_frontier_service_create_service_user_secret(self) -> None:
"""Test case for frontier_service_create_service_user_secret
Create service user secret # noqa: E501
"""
pass
def test_frontier_service_delete_service_user(self) -> None:
"""Test case for frontier_service_delete_service_user
Delete service user # noqa: E501
"""
pass
def test_frontier_service_delete_service_user_key(self) -> None:
"""Test case for frontier_service_delete_service_user_key
Delete service user key # noqa: E501
"""
pass
def test_frontier_service_delete_service_user_secret(self) -> None:
"""Test case for frontier_service_delete_service_user_secret
Delete service user secret # noqa: E501
"""
pass
def test_frontier_service_get_service_user(self) -> None:
"""Test case for frontier_service_get_service_user
Get service user # noqa: E501
"""
pass
def test_frontier_service_get_service_user_key(self) -> None:
"""Test case for frontier_service_get_service_user_key
Get service user key # noqa: E501
"""
pass
def test_frontier_service_list_service_user_keys(self) -> None:
"""Test case for frontier_service_list_service_user_keys
List service user keys # noqa: E501
"""
pass
def test_frontier_service_list_service_user_secrets(self) -> None:
"""Test case for frontier_service_list_service_user_secrets
List service user secrets # noqa: E501
"""
pass
def test_frontier_service_list_service_users(self) -> None:
"""Test case for frontier_service_list_service_users
List org service users # noqa: E501
"""
pass
if __name__ == '__main__':
unittest.main()