Exemple #1
0
def test_function_return_value():
    """
    Function check
    """
    correct_return_value = {
        "version 15.0": [],
        "service timestamps debug datetime msec": [],
        "service timestamps log datetime msec": [],
        "no service password-encryption": [],
        "hostname sw1": [],
        "interface FastEthernet0/0": [
            "switchport mode access",
            "switchport access vlan 10",
        ],
        "interface FastEthernet0/1": [
            "switchport trunk encapsulation dot1q",
            "switchport trunk allowed vlan 100,200",
            "switchport mode trunk",
        ],
        "interface FastEthernet0/2": [
            "switchport mode access",
            "switchport access vlan 20",
        ],
        "interface FastEthernet0/3": [
            "switchport trunk encapsulation dot1q",
            "switchport trunk allowed vlan 100,300,400,500,600",
            "switchport mode trunk",
        ],
        "interface FastEthernet1/0": [
            "switchport mode access",
            "switchport access vlan 20",
        ],
        "interface FastEthernet1/1": [
            "switchport mode access",
            "switchport access vlan 30",
        ],
        "interface FastEthernet1/2": [
            "switchport trunk encapsulation dot1q",
            "switchport trunk allowed vlan 400,500,600",
            "switchport mode trunk",
        ],
        "interface FastEthernet1/3": [],
        "interface Vlan100": ["ip address 10.0.100.1 255.255.255.0"],
        "line con 0":
        ["exec-timeout 0 0", "privilege level 15", "logging synchronous"],
        "line aux 0": [],
        "line vty 0 4": ["login", "transport input all"],
        "end": [],
    }

    return_value = task_9_4.convert_config_to_dict("config_sw1.txt")
    assert return_value != None, "The function returns None"
    assert (
        type(return_value) == dict
    ), f"The function should return a dict, instead it returns a {type(return_value).__name__}"
    assert (
        return_value == correct_return_value), "Function returns wrong value"
Exemple #2
0
def test_function_return_value():
    """
    Проверка работы функции
    """
    correct_return_value = {
        "version 15.0": [],
        "service timestamps debug datetime msec": [],
        "service timestamps log datetime msec": [],
        "no service password-encryption": [],
        "hostname sw1": [],
        "interface FastEthernet0/0": [
            "switchport mode access",
            "switchport access vlan 10",
        ],
        "interface FastEthernet0/1": [
            "switchport trunk encapsulation dot1q",
            "switchport trunk allowed vlan 100,200",
            "switchport mode trunk",
        ],
        "interface FastEthernet0/2": [
            "switchport mode access",
            "switchport access vlan 20",
        ],
        "interface FastEthernet0/3": [
            "switchport trunk encapsulation dot1q",
            "switchport trunk allowed vlan 100,300,400,500,600",
            "switchport mode trunk",
        ],
        "interface FastEthernet1/0": [
            "switchport mode access",
            "switchport access vlan 20",
        ],
        "interface FastEthernet1/1": [
            "switchport mode access",
            "switchport access vlan 30",
        ],
        "interface FastEthernet1/2": [
            "switchport trunk encapsulation dot1q",
            "switchport trunk allowed vlan 400,500,600",
            "switchport mode trunk",
        ],
        "interface FastEthernet1/3": [],
        "interface Vlan100": ["ip address 10.0.100.1 255.255.255.0"],
        "line con 0":
        ["exec-timeout 0 0", "privilege level 15", "logging synchronous"],
        "line aux 0": [],
        "line vty 0 4": ["login", "transport input all"],
        "end": [],
    }

    return_value = task_9_4.convert_config_to_dict("config_sw1.txt")
    assert return_value != None, "Функция ничего не возвращает"
    assert (
        type(return_value) == dict
    ), f"По заданию функция должна возвращать словарь, а возвращает {type(return_value).__name__}"
    assert (return_value == correct_return_value
            ), "Функция возвращает неправильное значение"
Exemple #3
0
def test_function_return_value():
    correct_return_value = {
        'version 15.0': [],
        'service timestamps debug datetime msec': [],
        'service timestamps log datetime msec': [],
        'no service password-encryption': [],
        'hostname sw1': [],
        'interface FastEthernet0/0':
        ['switchport mode access', 'switchport access vlan 10'],
        'interface FastEthernet0/1': [
            'switchport trunk encapsulation dot1q',
            'switchport trunk allowed vlan 100,200', 'switchport mode trunk'
        ],
        'interface FastEthernet0/2':
        ['switchport mode access', 'switchport access vlan 20'],
        'interface FastEthernet0/3': [
            'switchport trunk encapsulation dot1q',
            'switchport trunk allowed vlan 100,300,400,500,600',
            'switchport mode trunk'
        ],
        'interface FastEthernet1/0':
        ['switchport mode access', 'switchport access vlan 20'],
        'interface FastEthernet1/1':
        ['switchport mode access', 'switchport access vlan 30'],
        'interface FastEthernet1/2': [
            'switchport trunk encapsulation dot1q',
            'switchport trunk allowed vlan 400,500,600',
            'switchport mode trunk'
        ],
        'interface FastEthernet1/3': [],
        'interface Vlan100': ['ip address 10.0.100.1 255.255.255.0'],
        'line con 0':
        ['exec-timeout 0 0', 'privilege level 15', 'logging synchronous'],
        'line aux 0': [],
        'line vty 0 4': ['login', 'transport input all'],
        'end': []
    }

    return_value = task_9_4.convert_config_to_dict('config_sw1.txt')
    assert return_value != None, "Функция ничего не возвращает"
    assert type(return_value) == dict, "Функция должна возвращать словарь"
    assert return_value == correct_return_value, "Функция возвращает неправильное значение"