cloudFPGA (cF) API  1.0
The documentation of the source code of cloudFPGA (cF)
test_administration__admin_only_api.py
Go to the documentation of this file.
1 # coding: utf-8
2 
3 """
4  cloudFPGA Resource Manager API
5 
6  No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) # noqa: E501
7 
8  OpenAPI spec version: 0.8
9 
10  Generated by: https://github.com/swagger-api/swagger-codegen.git
11 """
12 
13 from __future__ import absolute_import
14 
15 import unittest
16 
17 import swagger_client
18 from swagger_client.api.administration__admin_only_api import AdministrationAdminOnlyApi # noqa: E501
19 from swagger_client.rest import ApiException
20 
21 
22 class TestAdministrationAdminOnlyApi(unittest.TestCase):
23  """AdministrationAdminOnlyApi unit test stubs"""
24 
25  def setUp(self):
26  self.apiapi = AdministrationAdminOnlyApi() # noqa: E501
27 
28  def tearDown(self):
29  pass
30 
32  """Test case for cf_manager_rest_api_admin_test_instance
33 
34  Test the instance **if not used** # noqa: E501
35  """
36  pass
37 
39  """Test case for cf_manager_rest_api_admin_update_flash
40 
41  Update the flash of a resource **if not used** # noqa: E501
42  """
43  pass
44 
46  """Test case for cf_manager_rest_api_delete_ippool
47 
48  Remove a /24 subnet # noqa: E501
49  """
50  pass
51 
53  """Test case for cf_manager_rest_api_get_all_composable_logic
54 
55  Get list of all composable logic # noqa: E501
56  """
57  pass
58 
60  """Test case for cf_manager_rest_api_get_buildscripts_all
61 
62  Get all registered build script versions # noqa: E501
63  """
64  pass
65 
67  """Test case for cf_manager_rest_api_get_ippool
68 
69  Get all ip addresses in the current pool # noqa: E501
70  """
71  pass
72 
74  """Test case for cf_manager_rest_api_get_mantle_logic_all
75 
76  Get all mantle logics # noqa: E501
77  """
78  pass
79 
81  """Test case for cf_manager_rest_api_get_platform_logic_all
82 
83  Get all platform logics # noqa: E501
84  """
85  pass
86 
88  """Test case for cf_manager_rest_api_get_single_buildscript
89 
90  Get details of one registered build script # noqa: E501
91  """
92  pass
93 
95  """Test case for cf_manager_rest_api_get_single_composable_logic
96 
97  Get details of one composable logic # noqa: E501
98  """
99  pass
100 
102  """Test case for cf_manager_rest_api_post_buildscript
103 
104  Register a new build script version # noqa: E501
105  """
106  pass
107 
109  """Test case for cf_manager_rest_api_post_ippool
110 
111  Post a new `/24` ip pool (subnet) # noqa: E501
112  """
113  pass
114 
116  """Test case for cf_manager_rest_api_post_mantle_logic
117 
118  Upload a new dynamic platform logic # noqa: E501
119  """
120  pass
121 
123  """Test case for cf_manager_rest_api_post_platform_logic
124 
125  Upload a new platform logic # noqa: E501
126  """
127  pass
128 
130  """Test case for cf_manager_rest_api_put_buildscript
131 
132  Update a registered build script # noqa: E501
133  """
134  pass
135 
137  """Test case for cf_manager_rest_api_put_composable_logic_status
138 
139  Update status of a composable logic # noqa: E501
140  """
141  pass
142 
143 
144 if __name__ == '__main__':
145  unittest.main()