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 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232
|
from collections import OrderedDict
from copy import deepcopy
import attr
import pytest
from labgrid import Target, target_factory
from labgrid.driver import Driver
from labgrid.resource import Resource
from labgrid.exceptions import InvalidConfigError, RegistrationError
from labgrid.resource import SerialPort
from labgrid.util.yaml import load
def test_empty():
t = target_factory.make_target('dummy', {})
assert isinstance(t, Target)
def test_resources():
original_config = {
'resources': OrderedDict([
('RawSerialPort', {
'port': 'foo',
'speed': 115200,
'name': 'console',
}),
]),
}
config = deepcopy(original_config)
t = target_factory.make_target('dummy', config)
assert isinstance(t, Target)
assert t.get_resource(SerialPort) is not None
assert config == original_config
def test_drivers():
original_config = {
'resources': OrderedDict([
('RawSerialPort', {
'port': 'foo',
'speed': 115200
}),
]),
'drivers': OrderedDict([
('FakeConsoleDriver', {
'name': 'console',
}),
('ShellDriver', {
'name': 'shell',
'prompt': '',
'login_prompt': '',
'username': ''
}),
]),
}
config = deepcopy(original_config)
t = target_factory.make_target('dummy', config)
assert isinstance(t, Target)
assert t.get_resource(SerialPort) is not None
assert config == original_config
def test_convert_dict():
original_data = load("""
FooPort: {}
BarPort:
name: bar
""")
data = deepcopy(original_data)
l = target_factory._convert_to_named_list(data)
assert l == [
{
'cls': 'FooPort',
'name': None,
},
{
'cls': 'BarPort',
'name': 'bar'
},
]
assert data == original_data
def test_convert_simple_list():
original_data = load("""
- FooPort: {}
- BarPort:
name: bar
""")
data = deepcopy(original_data)
l = target_factory._convert_to_named_list(data)
assert l == [
{
'cls': 'FooPort',
'name': None,
},
{
'cls': 'BarPort',
'name': 'bar'
},
]
assert data == original_data
def test_convert_explicit_list():
original_data = load("""
- cls: FooPort
- cls: BarPort
name: bar
""")
data = deepcopy(original_data)
l = target_factory._convert_to_named_list(data)
assert l == [
{
'cls': 'FooPort',
'name': None,
},
{
'cls': 'BarPort',
'name': 'bar'
},
]
assert data == original_data
def test_normalize_config():
original_config = {
'resources': OrderedDict([
('RawSerialPort', {
'port': 'foo',
'speed': 115200
}),
]),
'drivers': OrderedDict([
('FakeConsoleDriver', {
'name': 'console',
}),
]),
}
config = deepcopy(original_config)
resources, drivers = target_factory.normalize_config(config)
assert 'RawSerialPort' in resources
assert resources['RawSerialPort'] == {None: ({'port': 'foo', 'speed': 115200},)}
assert 'FakeConsoleDriver' in drivers
assert drivers['FakeConsoleDriver'] == {'console': ({}, {})}
assert config == original_config
def test_convert_error():
with pytest.raises(InvalidConfigError) as excinfo:
data = load("""
- {}
""")
target_factory._convert_to_named_list(data)
assert "invalid empty dict as list item" in excinfo.value.msg
with pytest.raises(InvalidConfigError) as excinfo:
data = load("""
- "error"
""")
target_factory._convert_to_named_list(data)
assert "invalid list item type <class 'str'> (should be dict)" in excinfo.value.msg
with pytest.raises(InvalidConfigError) as excinfo:
data = load("""
- name: "bar"
extra: "baz"
""")
target_factory._convert_to_named_list(data)
assert "missing 'cls' key in OrderedDict(" in excinfo.value.msg
with pytest.raises(InvalidConfigError) as excinfo:
data = load("""
- one:
- two: {}
""")
target_factory._convert_to_named_list(data)
assert "invalid list item, add empty dict for no arguments" in excinfo.value.msg
def test_resource_param_error():
with pytest.raises(InvalidConfigError) as excinfo:
target_factory.make_resource(
None, 'NetworkSerialPort', 'serial', {'port': None})
assert "failed to create" in excinfo.value.msg
def test_driver_param_error():
with pytest.raises(InvalidConfigError) as excinfo:
target_factory.make_driver(
None, 'QEMUDriver', 'qemu', {'cpu': 'arm'})
assert "failed to create" in excinfo.value.msg
def test_resource_class_error():
with pytest.raises(InvalidConfigError) as excinfo:
target_factory.make_resource(
None, 'UnknownResource', None, {})
assert "unknown resource class" in excinfo.value.msg
def test_driver_class_error():
with pytest.raises(InvalidConfigError) as excinfo:
target_factory.make_driver(
None, 'UnknownDriver', None, {})
assert "unknown driver class" in excinfo.value.msg
def test_register_same_driver():
@attr.s
class SameDriver(Driver):
pass
with pytest.raises(RegistrationError) as excinfo:
target_factory.reg_driver(SameDriver)
target_factory.reg_driver(SameDriver)
assert "driver with name" in excinfo.value.msg
def test_register_same_resource():
@attr.s
class SameResource(Resource):
pass
with pytest.raises(RegistrationError) as excinfo:
target_factory.reg_driver(SameResource)
target_factory.reg_driver(SameResource)
assert "driver with name" in excinfo.value.msg
|