83 lines
2.7 KiB
Python
83 lines
2.7 KiB
Python
|
# coding: utf-8
|
||
|
|
||
|
"""
|
||
|
Univention Directory Manager REST interface
|
||
|
|
||
|
Schema definition for the objects in the Univention Directory Manager REST interface. # noqa: E501
|
||
|
|
||
|
The version of the OpenAPI document: 1.0.2
|
||
|
Generated by: https://openapi-generator.tech
|
||
|
"""
|
||
|
|
||
|
|
||
|
from __future__ import absolute_import
|
||
|
|
||
|
import unittest
|
||
|
|
||
|
import openapi_client_udm
|
||
|
from openapi_client_udm.api.computers_domaincontroller_slave_api import ComputersDomaincontrollerSlaveApi # noqa: E501
|
||
|
from openapi_client_udm.rest import ApiException
|
||
|
|
||
|
|
||
|
class TestComputersDomaincontrollerSlaveApi(unittest.TestCase):
|
||
|
"""ComputersDomaincontrollerSlaveApi unit test stubs"""
|
||
|
|
||
|
def setUp(self):
|
||
|
self.api = openapi_client_udm.api.computers_domaincontroller_slave_api.ComputersDomaincontrollerSlaveApi() # noqa: E501
|
||
|
|
||
|
def tearDown(self):
|
||
|
pass
|
||
|
|
||
|
def test_udm_computers_domaincontroller_slave_object(self):
|
||
|
"""Test case for udm_computers_domaincontroller_slave_object
|
||
|
|
||
|
Get a representation of the Replica Directory Node object with all its properties, policies, options, metadata and references. Includes also instructions how to modify, remove or move the object. # noqa: E501
|
||
|
"""
|
||
|
pass
|
||
|
|
||
|
def test_udm_computers_domaincontroller_slave_object_create(self):
|
||
|
"""Test case for udm_computers_domaincontroller_slave_object_create
|
||
|
|
||
|
Create a new Replica Directory Node object # noqa: E501
|
||
|
"""
|
||
|
pass
|
||
|
|
||
|
def test_udm_computers_domaincontroller_slave_object_modify(self):
|
||
|
"""Test case for udm_computers_domaincontroller_slave_object_modify
|
||
|
|
||
|
Modify or move an Replica Directory Node object # noqa: E501
|
||
|
"""
|
||
|
pass
|
||
|
|
||
|
def test_udm_computers_domaincontroller_slave_object_remove(self):
|
||
|
"""Test case for udm_computers_domaincontroller_slave_object_remove
|
||
|
|
||
|
Remove a Replica Directory Nodes object # noqa: E501
|
||
|
"""
|
||
|
pass
|
||
|
|
||
|
def test_udm_computers_domaincontroller_slave_object_search(self):
|
||
|
"""Test case for udm_computers_domaincontroller_slave_object_search
|
||
|
|
||
|
Search for Replica Directory Nodes objects # noqa: E501
|
||
|
"""
|
||
|
pass
|
||
|
|
||
|
def test_udm_computers_domaincontroller_slave_object_template(self):
|
||
|
"""Test case for udm_computers_domaincontroller_slave_object_template
|
||
|
|
||
|
Get a template for creating an Replica Directory Node object (contains all properties and their default values) # noqa: E501
|
||
|
"""
|
||
|
pass
|
||
|
|
||
|
def test_udm_computers_domaincontroller_slave_object_update(self):
|
||
|
"""Test case for udm_computers_domaincontroller_slave_object_update
|
||
|
|
||
|
Modify an Replica Directory Node object (moving is currently not possible) # noqa: E501
|
||
|
"""
|
||
|
pass
|
||
|
|
||
|
|
||
|
if __name__ == '__main__':
|
||
|
unittest.main()
|