cloudFPGA (cF) API  1.0
The documentation of the source code of cloudFPGA (cF)
cFSPlib.python_api_client.test.test_instances_api.TestInstancesApi Class Reference
Inheritance diagram for cFSPlib.python_api_client.test.test_instances_api.TestInstancesApi:
[legend]
Collaboration diagram for cFSPlib.python_api_client.test.test_instances_api.TestInstancesApi:
[legend]

Public Member Functions

def setUp (self)
 
def tearDown (self)
 
def test_cf_manager_rest_api_app_restart_instance (self)
 
def test_cf_manager_rest_api_delete_instance (self)
 
def test_cf_manager_rest_api_get_instance (self)
 
def test_cf_manager_rest_api_get_instances (self)
 
def test_cf_manager_rest_api_instance_api_gateway (self)
 
def test_cf_manager_rest_api_instance_change_runlevel (self)
 
def test_cf_manager_rest_api_instance_get_runlevel (self)
 
def test_cf_manager_rest_api_post_instances (self)
 
def test_cf_manager_rest_api_update_instance (self)
 

Public Attributes

 api
 

Detailed Description

InstancesApi unit test stubs

Definition at line 22 of file test_instances_api.py.

Member Function Documentation

◆ setUp()

def cFSPlib.python_api_client.test.test_instances_api.TestInstancesApi.setUp (   self)

Definition at line 25 of file test_instances_api.py.

25  def setUp(self):
26  self.api = InstancesApi() # noqa: E501
27 

◆ tearDown()

def cFSPlib.python_api_client.test.test_instances_api.TestInstancesApi.tearDown (   self)

Definition at line 28 of file test_instances_api.py.

28  def tearDown(self):
29  pass
30 

◆ test_cf_manager_rest_api_app_restart_instance()

def cFSPlib.python_api_client.test.test_instances_api.TestInstancesApi.test_cf_manager_rest_api_app_restart_instance (   self)
Test case for cf_manager_rest_api_app_restart_instance

Triggers app restart of this instance  # noqa: E501

Definition at line 31 of file test_instances_api.py.

31  def test_cf_manager_rest_api_app_restart_instance(self):
32  """Test case for cf_manager_rest_api_app_restart_instance
33 
34  Triggers app restart of this instance # noqa: E501
35  """
36  pass
37 

◆ test_cf_manager_rest_api_delete_instance()

def cFSPlib.python_api_client.test.test_instances_api.TestInstancesApi.test_cf_manager_rest_api_delete_instance (   self)
Test case for cf_manager_rest_api_delete_instance

Remove an instance  # noqa: E501

Definition at line 38 of file test_instances_api.py.

38  def test_cf_manager_rest_api_delete_instance(self):
39  """Test case for cf_manager_rest_api_delete_instance
40 
41  Remove an instance # noqa: E501
42  """
43  pass
44 

◆ test_cf_manager_rest_api_get_instance()

def cFSPlib.python_api_client.test.test_instances_api.TestInstancesApi.test_cf_manager_rest_api_get_instance (   self)
Test case for cf_manager_rest_api_get_instance

Get a single instance  # noqa: E501

Definition at line 45 of file test_instances_api.py.

45  def test_cf_manager_rest_api_get_instance(self):
46  """Test case for cf_manager_rest_api_get_instance
47 
48  Get a single instance # noqa: E501
49  """
50  pass
51 

◆ test_cf_manager_rest_api_get_instances()

def cFSPlib.python_api_client.test.test_instances_api.TestInstancesApi.test_cf_manager_rest_api_get_instances (   self)
Test case for cf_manager_rest_api_get_instances

Get all instances of a user  # noqa: E501

Definition at line 52 of file test_instances_api.py.

52  def test_cf_manager_rest_api_get_instances(self):
53  """Test case for cf_manager_rest_api_get_instances
54 
55  Get all instances of a user # noqa: E501
56  """
57  pass
58 

◆ test_cf_manager_rest_api_instance_api_gateway()

def cFSPlib.python_api_client.test.test_instances_api.TestInstancesApi.test_cf_manager_rest_api_instance_api_gateway (   self)
Test case for cf_manager_rest_api_instance_api_gateway

Forwards a custom HTTP API request  # noqa: E501

Definition at line 59 of file test_instances_api.py.

59  def test_cf_manager_rest_api_instance_api_gateway(self):
60  """Test case for cf_manager_rest_api_instance_api_gateway
61 
62  Forwards a custom HTTP API request # noqa: E501
63  """
64  pass
65 

◆ test_cf_manager_rest_api_instance_change_runlevel()

def cFSPlib.python_api_client.test.test_instances_api.TestInstancesApi.test_cf_manager_rest_api_instance_change_runlevel (   self)
Test case for cf_manager_rest_api_instance_change_runlevel

Changes the `runlevel` of the instance (stack developers only)  # noqa: E501

Definition at line 66 of file test_instances_api.py.

66  def test_cf_manager_rest_api_instance_change_runlevel(self):
67  """Test case for cf_manager_rest_api_instance_change_runlevel
68 
69  Changes the `runlevel` of the instance (stack developers only) # noqa: E501
70  """
71  pass
72 

◆ test_cf_manager_rest_api_instance_get_runlevel()

def cFSPlib.python_api_client.test.test_instances_api.TestInstancesApi.test_cf_manager_rest_api_instance_get_runlevel (   self)
Test case for cf_manager_rest_api_instance_get_runlevel

Returns the current `runlevel` of the instance (stack developers only)  # noqa: E501

Definition at line 73 of file test_instances_api.py.

73  def test_cf_manager_rest_api_instance_get_runlevel(self):
74  """Test case for cf_manager_rest_api_instance_get_runlevel
75 
76  Returns the current `runlevel` of the instance (stack developers only) # noqa: E501
77  """
78  pass
79 

◆ test_cf_manager_rest_api_post_instances()

def cFSPlib.python_api_client.test.test_instances_api.TestInstancesApi.test_cf_manager_rest_api_post_instances (   self)
Test case for cf_manager_rest_api_post_instances

Create an instance  # noqa: E501

Definition at line 80 of file test_instances_api.py.

80  def test_cf_manager_rest_api_post_instances(self):
81  """Test case for cf_manager_rest_api_post_instances
82 
83  Create an instance # noqa: E501
84  """
85  pass
86 

◆ test_cf_manager_rest_api_update_instance()

def cFSPlib.python_api_client.test.test_instances_api.TestInstancesApi.test_cf_manager_rest_api_update_instance (   self)
Test case for cf_manager_rest_api_update_instance

Reprogramm an instance  # noqa: E501

Definition at line 87 of file test_instances_api.py.

87  def test_cf_manager_rest_api_update_instance(self):
88  """Test case for cf_manager_rest_api_update_instance
89 
90  Reprogramm an instance # noqa: E501
91  """
92  pass
93 
94 

Member Data Documentation

◆ api

cFSPlib.python_api_client.test.test_instances_api.TestInstancesApi.api

Definition at line 26 of file test_instances_api.py.


The documentation for this class was generated from the following file: