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 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564
|
import os
import re
import time
import pytest
import pexpect
def test_startup(coordinator):
pass
@pytest.fixture(scope='function')
def place(coordinator):
with pexpect.spawn('python -m labgrid.remote.client -p test create') as spawn:
spawn.expect(pexpect.EOF)
spawn.close()
assert spawn.exitstatus == 0, spawn.before.strip()
with pexpect.spawn('python -m labgrid.remote.client -p test set-tags board=123board') as spawn:
spawn.expect(pexpect.EOF)
spawn.close()
assert spawn.exitstatus == 0, spawn.before.strip()
yield
with pexpect.spawn('python -m labgrid.remote.client -p test delete') as spawn:
spawn.expect(pexpect.EOF)
spawn.close()
assert spawn.exitstatus == 0, spawn.before.strip()
@pytest.fixture(scope='function')
def place_acquire(place, exporter):
with pexpect.spawn('python -m labgrid.remote.client -p test add-match "*/Testport/*"') as spawn:
spawn.expect(pexpect.EOF)
spawn.close()
assert spawn.exitstatus == 0, spawn.before.strip()
with pexpect.spawn('python -m labgrid.remote.client -p test acquire') as spawn:
spawn.expect(pexpect.EOF)
spawn.close()
assert spawn.exitstatus == 0, spawn.before.strip()
yield
with pexpect.spawn('python -m labgrid.remote.client -p test release') as spawn:
spawn.expect(pexpect.EOF)
spawn.close()
assert spawn.exitstatus == 0, spawn.before.strip()
def test_connect_error():
with pexpect.spawn('python -m labgrid.remote.client -x 127.0.0.1:20409 places') as spawn:
spawn.expect("Could not connect to coordinator")
spawn.expect(pexpect.EOF)
spawn.close()
assert spawn.exitstatus == 1, spawn.before.strip()
def test_connect_timeout(coordinator):
coordinator.suspend_tree()
try:
with pexpect.spawn('python -m labgrid.remote.client places') as spawn:
spawn.expect("connection attempt timed out before receiving SETTINGS frame")
spawn.expect(pexpect.EOF)
spawn.close()
assert spawn.exitstatus == 1, spawn.before.strip()
finally:
coordinator.resume_tree()
pass
def test_place_show(place):
with pexpect.spawn('python -m labgrid.remote.client -p test show') as spawn:
spawn.expect("Place 'test':")
spawn.expect(pexpect.EOF)
spawn.close()
assert spawn.exitstatus == 0, spawn.before.strip()
def test_place_alias(place):
with pexpect.spawn('python -m labgrid.remote.client -p test add-alias foo') as spawn:
spawn.expect(pexpect.EOF)
spawn.close()
assert spawn.exitstatus == 0, spawn.before.strip()
with pexpect.spawn('python -m labgrid.remote.client -p foo del-alias foo') as spawn:
spawn.expect(pexpect.EOF)
spawn.close()
assert spawn.exitstatus == 0, spawn.before.strip()
def test_place_comment(place):
with pexpect.spawn('python -m labgrid.remote.client -p test set-comment my comment') as spawn:
spawn.expect(pexpect.EOF)
spawn.close()
assert spawn.exitstatus == 0, spawn.before.strip()
with pexpect.spawn('python -m labgrid.remote.client -p test show') as spawn:
spawn.expect("Place 'test':")
spawn.expect(" comment: my comment")
spawn.expect(pexpect.EOF)
spawn.close()
assert spawn.exitstatus == 0, spawn.before.strip()
def test_place_match(place):
with pexpect.spawn('python -m labgrid.remote.client -p test add-match "e1/g1/r1" "e2/g2/*"') as spawn:
spawn.expect(pexpect.EOF)
spawn.close()
assert spawn.exitstatus == 0, spawn.before.strip()
with pexpect.spawn('python -m labgrid.remote.client -p test del-match "e1/g1/r1"') as spawn:
spawn.expect(pexpect.EOF)
spawn.close()
assert spawn.exitstatus == 0, spawn.before.strip()
with pexpect.spawn('python -m labgrid.remote.client -p test show') as spawn:
spawn.expect(" matches:")
spawn.expect(" e2/g2/*")
spawn.expect(pexpect.EOF)
spawn.close()
assert spawn.exitstatus == 0, spawn.before.strip()
def test_place_match_duplicates(place):
# first given match should succeed, second should be skipped
matches = (
("e1/g1/r1", "e1/g1/r1"),
("e1/g1/r1/n1", "e1/g1/r1/n1"),
("e1/g1/r1/n1", "e1/g1/r1"),
("e1/g1/r1", "e1/g1/r1/n1"),
)
for match in matches:
with pexpect.spawn(f'python -m labgrid.remote.client -p test add-match "{match[0]}" "{match[1]}"') as spawn:
spawn.expect(f"pattern '{match[1]}' exists, skipping")
spawn.expect(pexpect.EOF)
spawn.close()
assert spawn.exitstatus == 0, spawn.before.strip()
with pexpect.spawn(f'python -m labgrid.remote.client -p test del-match "{match[0]}"') as spawn:
spawn.expect(pexpect.EOF)
spawn.close()
assert spawn.exitstatus == 0, spawn.before.strip()
def test_place_acquire(place):
with pexpect.spawn('python -m labgrid.remote.client -p test acquire') as spawn:
spawn.expect(pexpect.EOF)
spawn.close()
assert spawn.exitstatus == 0, spawn.before.strip()
with pexpect.spawn('python -m labgrid.remote.client who') as spawn:
spawn.expect(".*test.*")
spawn.expect(pexpect.EOF)
spawn.close()
assert spawn.exitstatus == 0, spawn.before.strip()
with pexpect.spawn('python -m labgrid.remote.client -p test release') as spawn:
spawn.expect(pexpect.EOF)
spawn.close()
assert spawn.exitstatus == 0, spawn.before.strip()
def test_place_acquire_enforce(place):
with pexpect.spawn('python -m labgrid.remote.client -p test add-match does/not/exist') as spawn:
spawn.expect(pexpect.EOF)
spawn.close()
assert spawn.exitstatus == 0, spawn.before.strip()
with pexpect.spawn('python -m labgrid.remote.client -p test acquire') as spawn:
spawn.expect("Match does/not/exist has no matching remote resource")
spawn.expect(pexpect.EOF)
spawn.close()
assert spawn.exitstatus != 0, spawn.before.strip()
with pexpect.spawn('python -m labgrid.remote.client -p test acquire --allow-unmatched') as spawn:
spawn.expect("acquired place test")
spawn.expect(pexpect.EOF)
spawn.close()
assert spawn.exitstatus == 0, spawn.before.strip()
with pexpect.spawn('python -m labgrid.remote.client -p test release') as spawn:
spawn.expect(pexpect.EOF)
spawn.close()
assert spawn.exitstatus == 0, spawn.before.strip()
def test_place_acquire_broken(place, exporter):
with pexpect.spawn('python -m labgrid.remote.client -p test add-match "*/Broken/*"') as spawn:
spawn.expect(pexpect.EOF)
spawn.close()
assert spawn.exitstatus == 0, spawn.before.strip()
with pexpect.spawn('python -m labgrid.remote.client -p test acquire') as spawn:
spawn.expect('Failed to acquire resources for place test')
spawn.expect(pexpect.EOF)
spawn.close()
assert spawn.exitstatus == 1, spawn.before.strip()
with pexpect.spawn('python -m labgrid.remote.client -p test show') as spawn:
spawn.expect("'broken': 'start failed'")
spawn.expect(pexpect.EOF)
spawn.close()
print(spawn.before.decode())
assert spawn.exitstatus == 0, spawn.before.strip()
def test_place_release_from(monkeypatch, place, exporter):
user = "test-user"
host = "test-host"
monkeypatch.setenv("LG_USERNAME", user)
monkeypatch.setenv("LG_HOSTNAME", host)
# Acquire place
with pexpect.spawn('python -m labgrid.remote.client -p test acquire') as spawn:
spawn.expect(pexpect.EOF)
spawn.close()
assert spawn.exitstatus == 0, spawn.before.strip()
# Ensure place is acquired by user
with pexpect.spawn('python -m labgrid.remote.client who') as spawn:
spawn.expect(f"{user}\\s+{host}\\s+test")
spawn.expect(pexpect.EOF)
spawn.close()
assert spawn.exitstatus == 0, spawn.before.strip()
# Use release-from to release for a different user
with pexpect.spawn('python -m labgrid.remote.client -p test release-from foo/bar') as spawn:
spawn.expect(pexpect.EOF)
spawn.close()
assert spawn.exitstatus == 0, spawn.before.strip()
# Ensure place is still acquired by this user
with pexpect.spawn('python -m labgrid.remote.client who') as spawn:
spawn.expect(f"{user}\\s+{host}\\s+test")
spawn.expect(pexpect.EOF)
spawn.close()
assert spawn.exitstatus == 0, spawn.before.strip()
# Use release-from to release place for this user
with pexpect.spawn(f'python -m labgrid.remote.client -p test release-from {host}/{user}') as spawn:
spawn.expect(pexpect.EOF)
spawn.close()
assert spawn.exitstatus == 0, spawn.before.strip()
# Ensure place is still no longer acquired
with pexpect.spawn('python -m labgrid.remote.client who') as spawn:
spawn.expect(pexpect.EOF)
spawn.close()
assert spawn.exitstatus == 0, spawn.before.strip()
before = spawn.before.decode("utf-8").strip()
assert user not in before and not host in before, before
def test_place_add_no_name(coordinator):
with pexpect.spawn('python -m labgrid.remote.client create') as spawn:
spawn.expect("missing place name")
spawn.expect(pexpect.EOF)
spawn.close()
assert spawn.exitstatus != 0, spawn.before.strip()
def test_place_del_no_name(coordinator):
with pexpect.spawn('python -m labgrid.remote.client delete') as spawn:
spawn.expect("place pattern not specified")
spawn.expect(pexpect.EOF)
spawn.close()
assert spawn.exitstatus != 0, spawn.before.strip()
def test_remoteplace_target(place_acquire, tmpdir):
from labgrid.environment import Environment
p = tmpdir.join("config.yaml")
p.write(
"""
targets:
test1:
role: foo
resources:
RemotePlace:
name: test
"""
)
e = Environment(str(p))
t = e.get_target("test1")
t.await_resources(t.resources)
remote_place = t.get_resource("RemotePlace")
assert remote_place.tags == {"board": "123board"}
def test_remoteplace_target_without_env(request, place_acquire):
from labgrid import Target
from labgrid.resource import RemotePlace
t = Target(request.node.name)
remote_place = RemotePlace(t, name="test")
assert remote_place.tags == {"board": "123board"}
def test_resource_conflict(place_acquire, tmpdir):
with pexpect.spawn('python -m labgrid.remote.client -p test2 create') as spawn:
spawn.expect(pexpect.EOF)
spawn.close()
assert spawn.exitstatus == 0, spawn.before.strip()
with pexpect.spawn('python -m labgrid.remote.client -p test2 add-match "*/Testport/*"') as spawn:
spawn.expect(pexpect.EOF)
spawn.close()
assert spawn.exitstatus == 0, spawn.before.strip()
with pexpect.spawn('python -m labgrid.remote.client -p test2 acquire') as spawn:
spawn.expect(pexpect.EOF)
spawn.close()
assert spawn.exitstatus != 0, spawn.before.strip()
with pexpect.spawn('python -m labgrid.remote.client -p test2 delete') as spawn:
spawn.expect(pexpect.EOF)
spawn.close()
assert spawn.exitstatus == 0, spawn.before.strip()
def test_reservation(place_acquire, tmpdir):
with pexpect.spawn('python -m labgrid.remote.client reserve --shell board=123board name=test') as spawn:
spawn.expect(pexpect.EOF)
spawn.close()
assert spawn.exitstatus == 0, spawn.before.strip()
m = re.search(rb"^export LG_TOKEN=(\S+)$", spawn.before.replace(b'\r\n', b'\n'), re.MULTILINE)
assert m is not None, spawn.before.strip()
token = m.group(1)
env = os.environ.copy()
env['LG_TOKEN'] = token.decode('ASCII')
with pexpect.spawn('python -m labgrid.remote.client reservations') as spawn:
spawn.expect(pexpect.EOF)
spawn.close()
assert spawn.exitstatus == 0, spawn.before.strip()
assert b'waiting' in spawn.before, spawn.before.strip()
assert token in spawn.before, spawn.before.strip()
with pexpect.spawn('python -m labgrid.remote.client -p test release') as spawn:
spawn.expect(pexpect.EOF)
spawn.close()
assert spawn.exitstatus == 0, spawn.before.strip()
with pexpect.spawn('python -m labgrid.remote.client reservations') as spawn:
spawn.expect(pexpect.EOF)
spawn.close()
assert spawn.exitstatus == 0, spawn.before.strip()
assert b'allocated' in spawn.before, spawn.before.strip()
assert token in spawn.before, spawn.before.strip()
with pexpect.spawn('python -m labgrid.remote.client reservations') as spawn:
spawn.expect(pexpect.EOF)
spawn.close()
assert spawn.exitstatus == 0, spawn.before.strip()
assert b'allocated' in spawn.before, spawn.before.strip()
assert token in spawn.before, spawn.before.strip()
with pexpect.spawn('python -m labgrid.remote.client -p + acquire', env=env) as spawn:
spawn.expect(pexpect.EOF)
spawn.close()
assert spawn.exitstatus == 0, spawn.before.strip()
with pexpect.spawn('python -m labgrid.remote.client -p + show', env=env) as spawn:
spawn.expect(pexpect.EOF)
spawn.close()
assert token in spawn.before, spawn.before.strip()
assert spawn.exitstatus == 0, spawn.before.strip()
with pexpect.spawn('python -m labgrid.remote.client -p + release', env=env) as spawn:
spawn.expect(pexpect.EOF)
spawn.close()
assert spawn.exitstatus == 0, spawn.before.strip()
with pexpect.spawn('python -m labgrid.remote.client reservations') as spawn:
spawn.expect(pexpect.EOF)
spawn.close()
assert spawn.exitstatus == 0, spawn.before.strip()
assert b'allocated' in spawn.before, spawn.before.strip()
assert token in spawn.before, spawn.before.strip()
with pexpect.spawn('python -m labgrid.remote.client cancel-reservation', env=env) as spawn:
spawn.expect(pexpect.EOF)
spawn.close()
assert spawn.exitstatus == 0, spawn.before.strip()
with pexpect.spawn('python -m labgrid.remote.client reservations') as spawn:
spawn.expect(pexpect.EOF)
spawn.close()
assert spawn.exitstatus == 0, spawn.before.strip()
assert token not in spawn.before, spawn.before.strip()
with pexpect.spawn('python -m labgrid.remote.client -p test acquire') as spawn:
spawn.expect(pexpect.EOF)
spawn.close()
assert spawn.exitstatus == 0, spawn.before.strip()
def test_resource_acquired_state_on_exporter_restart(monkeypatch, place, exporter):
user = "test-user"
host = "test-host"
monkeypatch.setenv("LG_USERNAME", user)
monkeypatch.setenv("LG_HOSTNAME", host)
# add resource match
with pexpect.spawn('python -m labgrid.remote.client -p test add-match testhost/Testport/NetworkSerialPort') as spawn:
spawn.expect(pexpect.EOF)
spawn.close()
assert spawn.exitstatus == 0, spawn.before.strip()
# make sure matching resource is found
with pexpect.spawn('python -m labgrid.remote.client -p test show') as spawn:
spawn.expect(pexpect.EOF)
spawn.close()
assert spawn.exitstatus == 0, spawn.before.strip()
assert b"acquired: None" in spawn.before
assert b"Matching resource 'NetworkSerialPort' (testhost/Testport/NetworkSerialPort/NetworkSerialPort)" in spawn.before
with pexpect.spawn('python -m labgrid.remote.client -p test -v resources') as spawn:
spawn.expect(pexpect.EOF)
spawn.close()
assert spawn.exitstatus == 0, spawn.before.strip()
assert b"Resource 'NetworkSerialPort' (testhost/Testport/NetworkSerialPort[/NetworkSerialPort]):\r\n {'acquired': None," in spawn.before
# lock place (and its resources)
with pexpect.spawn('python -m labgrid.remote.client -p test acquire') as spawn:
spawn.expect(pexpect.EOF)
spawn.close()
assert spawn.exitstatus == 0, spawn.before.strip()
with pexpect.spawn('python -m labgrid.remote.client -p test -v resources') as spawn:
spawn.expect(pexpect.EOF)
spawn.close()
assert spawn.exitstatus == 0, spawn.before.strip()
assert b"Resource 'NetworkSerialPort' (testhost/Testport/NetworkSerialPort[/NetworkSerialPort]):\r\n {'acquired': 'test'," in spawn.before
# restart exporter
exporter.stop()
exporter.start()
# make sure matching resource is still found
with pexpect.spawn('python -m labgrid.remote.client -p test show') as spawn:
spawn.expect(pexpect.EOF)
spawn.close()
assert spawn.exitstatus == 0, spawn.before.strip()
assert f"acquired: {host}/{user}" in spawn.before.decode("utf-8")
assert b"Acquired resource 'NetworkSerialPort' (testhost/Testport/NetworkSerialPort/NetworkSerialPort)" in spawn.before
# release place
with pexpect.spawn('python -m labgrid.remote.client -p test release') as spawn:
spawn.expect(pexpect.EOF)
spawn.close()
assert spawn.exitstatus == 0, spawn.before.strip()
with pexpect.spawn('python -m labgrid.remote.client -p test -v resources') as spawn:
spawn.expect(pexpect.EOF)
spawn.close()
assert spawn.exitstatus == 0, spawn.before.strip()
assert b"Resource 'NetworkSerialPort' (testhost/Testport/NetworkSerialPort[/NetworkSerialPort]):\r\n {'acquired': None," in spawn.before
# make sure matching resource is still found
with pexpect.spawn('python -m labgrid.remote.client -p test show') as spawn:
spawn.expect(pexpect.EOF)
spawn.close()
assert spawn.exitstatus == 0, spawn.before.strip()
assert b"acquired: None" in spawn.before
assert b"Matching resource 'NetworkSerialPort' (testhost/Testport/NetworkSerialPort/NetworkSerialPort)" in spawn.before
# place should now be acquirable again
with pexpect.spawn('python -m labgrid.remote.client -p test acquire') as spawn:
spawn.expect(pexpect.EOF)
spawn.close()
assert spawn.exitstatus == 0, spawn.before.strip()
with pexpect.spawn('python -m labgrid.remote.client -p test release') as spawn:
spawn.expect(pexpect.EOF)
spawn.close()
assert spawn.exitstatus == 0, spawn.before.strip()
def test_exporter_timeout(place, exporter):
with pexpect.spawn('python -m labgrid.remote.client resources') as spawn:
spawn.expect(pexpect.EOF)
spawn.close()
assert spawn.exitstatus == 0, spawn.before.strip()
assert b'/Testport/NetworkSerialPort' in spawn.before
# lock resources ensure cleanup is needed
with pexpect.spawn('python -m labgrid.remote.client -p test acquire') as spawn:
spawn.expect(pexpect.EOF)
spawn.close()
assert spawn.exitstatus == 0, spawn.before.strip()
exporter.suspend_tree()
try:
time.sleep(30)
# the unresponsive exporter should be kicked by now
with pexpect.spawn('python -m labgrid.remote.client resources') as spawn:
spawn.expect(pexpect.EOF)
spawn.close()
assert spawn.exitstatus == 0, spawn.before.strip()
assert b'/Testport/NetworkSerialPort' not in spawn.before
finally:
exporter.resume_tree()
# the exporter should quit by itself now
time.sleep(5)
assert not exporter.isalive()
assert exporter.exitstatus == 100
with pexpect.spawn('python -m labgrid.remote.client -p test release') as spawn:
spawn.expect(pexpect.EOF)
spawn.close()
assert spawn.exitstatus == 0, spawn.before.strip()
def test_reservation_custom_config(place, exporter, tmpdir):
p = tmpdir.join("config.yaml")
p.write(
"""
targets:
test1:
role: foo
resources:
RemotePlace:
name: test
"""
)
with pexpect.spawn(f'python -m labgrid.remote.client -c {p} reserve --wait --shell board=123board name=test') as spawn:
spawn.expect(pexpect.EOF)
spawn.close()
assert spawn.exitstatus == 0, spawn.before.strip()
m = re.search(rb"^export LG_TOKEN=(\S+)$", spawn.before.replace(b'\r\n', b'\n'), re.MULTILINE)
s = re.search(rb"^Selected role$", spawn.before.replace(b'\r\n', b'\n'), re.MULTILINE)
assert m is not None, spawn.before.strip()
assert s is None, spawn.before.strip()
token = m.group(1)
env = os.environ.copy()
env['LG_TOKEN'] = token.decode('ASCII')
with pexpect.spawn(f'python -m labgrid.remote.client -c {p} -p + lock', env=env) as spawn:
spawn.expect("acquired place test")
spawn.expect(pexpect.EOF)
spawn.close()
assert spawn.exitstatus == 0, spawn.before.strip()
with pexpect.spawn(f'python -m labgrid.remote.client -c {p} -p + release', env=env) as spawn:
spawn.expect("released place test")
spawn.expect(pexpect.EOF)
spawn.close()
assert spawn.exitstatus == 0, spawn.before.strip()
def test_same_name_resources(place, exporter, tmpdir):
with pexpect.spawn('python -m labgrid.remote.client -p test add-named-match "testhost/Many/NetworkService" "samename"') as spawn:
spawn.expect(pexpect.EOF)
spawn.close()
assert spawn.exitstatus == 0, spawn.before.strip()
with pexpect.spawn('python -m labgrid.remote.client -p test add-named-match "testhost/Many/NetworkSerialPort" "samename"') as spawn:
spawn.expect(pexpect.EOF)
spawn.close()
assert spawn.exitstatus == 0, spawn.before.strip()
with pexpect.spawn('python -m labgrid.remote.client -p test acquire') as spawn:
spawn.expect(pexpect.EOF)
spawn.close()
assert spawn.exitstatus == 0, spawn.before.strip()
with pexpect.spawn('python -m labgrid.remote.client -p test env') as spawn:
spawn.expect(pexpect.EOF)
spawn.close()
assert spawn.exitstatus == 0, spawn.before.strip()
assert "NetworkService".encode("utf-8") in spawn.before.replace(b'\r\n', b'\n'), spawn.before.strip()
assert "NetworkSerialPort".encode("utf-8") in spawn.before.replace(b'\r\n', b'\n'), spawn.before.strip()
with pexpect.spawn('python -m labgrid.remote.client -p test release') as spawn:
spawn.expect(pexpect.EOF)
spawn.close()
assert spawn.exitstatus == 0, spawn.before.strip()
|