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
|
# -*- coding: utf-8 -*-
from __future__ import absolute_import
import errno
import sys
from itertools import islice
from threading import Timer, Thread, current_thread
import pytest
from pyxs.client import RVar, Router, Client
from pyxs.connection import UnixSocketConnection, XenBusConnection
from pyxs.exceptions import InvalidPath, InvalidPermission, \
UnexpectedPacket, PyXSError
from pyxs._internal import NUL, Op, Event, Packet
from . import virtualized
def setup_function(f):
try:
with Client() as c:
c.delete(b"/foo")
except PyXSError:
pass
def test_init():
# a) UnixSocketConnection
c = Client()
assert c.tx_id == 0
assert isinstance(c.router.connection, UnixSocketConnection)
assert not c.router.thread.is_alive()
c = Client(unix_socket_path="/var/run/xenstored/socket")
assert isinstance(c.router.connection, UnixSocketConnection)
assert not c.router.thread.is_alive()
# b) XenBusConnection
c = Client(xen_bus_path="/dev/xen/xenbus")
assert isinstance(c.router.connection, XenBusConnection)
assert not c.router.thread.is_alive()
@virtualized
def test_context_manager():
# a) no transaction is running
c = Client()
assert not c.router.thread.is_alive()
with c:
assert c.router.thread.is_alive()
assert not c.router.thread.is_alive()
@virtualized
def test_execute_command_invalid_characters():
with Client() as c:
c.execute_command(Op.WRITE, b"/foo/bar" + NUL, b"baz")
with pytest.raises(ValueError):
c.execute_command(Op.DEBUG, b"\x07foo" + NUL)
@virtualized
def test_execute_command_error():
with Client() as c:
with pytest.raises(PyXSError):
c.execute_command(Op.READ, b"/unexisting/path" + NUL)
with pytest.raises(PyXSError):
c.execute_command(-42, b"/unexisting/path" + NUL)
def monkeypatch_router(client, response_packet):
class FakeRouter:
def send(self, packet):
rvar = RVar()
rvar.set(response_packet)
return rvar
def terminate(self):
pass
client.close()
client.router = FakeRouter()
@virtualized
def test_execute_command_invalid_op():
with Client() as c:
monkeypatch_router(c, Packet(Op.DEBUG, b"/local" + NUL, rq_id=0))
with pytest.raises(UnexpectedPacket):
c.execute_command(Op.READ, b"/local" + NUL)
@virtualized
def test_execute_command_invalid_tx_id():
with Client() as c:
monkeypatch_router(c, Packet(Op.READ, b"/local" + NUL,
rq_id=0, tx_id=42))
with pytest.raises(UnexpectedPacket):
c.execute_command(Op.READ, b"/local" + NUL)
@virtualized
def test_close_idempotent():
c = Client()
c.connect()
c.close()
c.close()
@pytest.mark.parametrize("op", [
"read", "mkdir", "delete", "list", "exists", "get_perms"
])
def test_check_path(op):
with pytest.raises(InvalidPath):
getattr(Client(), op)(b"INVALID%PATH!")
@pytest.yield_fixture(params=[UnixSocketConnection, XenBusConnection])
def client(request):
with Client(router=Router(request.param())) as c:
yield c
@virtualized
def test_read(client):
# a) non-existant path.
try:
client.read(b"/foo/bar")
except PyXSError as e:
assert e.args[0] == errno.ENOENT
# b) using a default.
client.read(b"/foo/bar", b"baz") == b"baz"
# c) OK-case (`/local` is allways in place).
assert client.read(b"/local") == b""
assert client[b"/local"] == b""
# d) No read perms (should be ran in DomU)?
@virtualized
def test_write(client):
client.write(b"/foo/bar", b"baz")
assert client.read(b"/foo/bar") == b"baz"
client[b"/foo/bar"] = b"boo"
assert client[b"/foo/bar"] == b"boo"
# b) No write perms (should be ran in DomU)?
def test_write_invalid():
with pytest.raises(InvalidPath):
Client().write(b"INVALID%PATH!", b"baz")
@virtualized
def test_mkdir(client):
client.mkdir(b"/foo/bar")
assert client.list(b"/foo") == [b"bar"]
assert client.read(b"/foo/bar") == b""
@virtualized
def test_delete(client):
client.mkdir(b"/foo/bar")
client.delete(b"/foo/bar")
try:
client.read(b"/foo/bar")
except PyXSError as e:
assert e.args[0] == errno.ENOENT
assert client.read(b"/foo") == b""
@virtualized
def test_list(client):
client.mkdir(b"/foo/bar")
# a) OK-case.
assert client.list(b"/foo") == [b"bar"]
assert client.list(b"/foo/bar") == []
# b) directory doesn't exist.
try:
client.list(b"/path/to/something")
except PyXSError as e:
assert e.args[0] == errno.ENOENT
# c) No list perms (should be ran in DomU)?
@virtualized
def test_exists(client):
# a) Path exists.
client.mkdir(b"/foo/bar")
assert client.exists(b"/foo/bar")
# b) Path does not exist.
client.delete(b"/foo/bar")
assert not client.exists(b"/foo/bar")
# c) No list perms (should be ran in DomU)?
@virtualized
def test_perms(client):
client.delete(b"/foo")
client.mkdir(b"/foo/bar")
# a) checking default perms -- full access.
assert client.get_perms(b"/foo/bar") == [b"n0"]
# b) setting new perms, and making sure it worked.
client.set_perms(b"/foo/bar", [b"b0"])
assert client.get_perms(b"/foo/bar") == [b"b0"]
# c) conflicting perms -- XenStore doesn't care.
client.set_perms(b"/foo/bar", [b"b0", b"n0", b"r0"])
assert client.get_perms(b"/foo/bar") == [b"b0", b"n0", b"r0"]
# d) invalid permission format.
with pytest.raises(InvalidPermission):
client.set_perms(b"/foo/bar", [b"x0"])
def test_set_perms_invalid():
with pytest.raises(InvalidPath):
Client().set_perms(b"INVALID%PATH!", [])
with pytest.raises(InvalidPermission):
Client().set_perms(b"/foo/bar", [b"z"])
@virtualized
def test_get_domain_path(client):
# Note, that XenStore doesn't care if a domain exists, but
# according to the spec we shouldn't really count on a *valid*
# reply in that case.
assert client.get_domain_path(0) == b"/local/domain/0"
assert client.get_domain_path(999) == b"/local/domain/999"
@virtualized
def test_is_domain_introduced(client):
for domid in map(int, client.list(b"/local/domain")):
assert client.is_domain_introduced(domid)
assert not client.is_domain_introduced(999)
@virtualized
def test_transaction(client):
assert client.tx_id == 0
client.transaction()
assert client.tx_id != 0
@virtualized
def test_nested_transaction(client):
client.transaction()
with pytest.raises(PyXSError):
client.transaction()
@virtualized
def test_transaction_rollback(client):
assert not client.exists(b"/foo/bar")
client.transaction()
client[b"/foo/bar"] = b"boo"
client.rollback()
assert client.tx_id == 0
assert not client.exists(b"/foo/bar")
@virtualized
def test_transaction_commit_ok(client):
assert not client.exists(b"/foo/bar")
client.transaction()
client[b"/foo/bar"] = b"boo"
assert client.commit()
assert client.tx_id == 0
assert client[b"/foo/bar"] == b"boo"
@virtualized
def test_transaction_commit_retry(client):
def writer():
with Client() as other:
other[b"/foo/bar"] = b"unexpected write"
assert not client.exists(b"/foo/bar")
client.transaction()
writer()
client[b"/foo/bar"] = b"boo"
assert not client.commit()
assert client.tx_id == 0
@virtualized
def test_transaction_exception():
try:
with Client() as c:
assert not c.exists(b"/foo/bar")
c.transaction()
c[b"/foo/bar"] = b"boo"
raise ValueError
except ValueError:
pass
with Client() as c:
assert not c.exists(b"/foo/bar")
@virtualized
def test_uncommitted_transaction():
with pytest.raises(PyXSError):
with Client() as c:
c.transaction()
def xfail_if_xenbus(client):
if isinstance(client.router.connection, XenBusConnection):
# http://lists.xen.org/archives/html/xen-users/2016-02/msg00159.html
pytest.xfail("unsupported connection")
@virtualized
def test_monitor(client):
xfail_if_xenbus(client)
client.write(b"/foo/bar", b"baz")
m = client.monitor()
m.watch(b"/foo/bar", b"boo")
waiter = m.wait()
# a) we receive the first event immediately, so `next` doesn't
# block.
assert next(waiter) == (b"/foo/bar", b"boo")
# b) before the second call we have to make sure someone
# will change the path being watched.
Thread(target=lambda: client.write(b"/foo/bar", b"baz")).start()
assert next(waiter) == (b"/foo/bar", b"boo")
# c) changing a children of the watched path triggers watch
# event as well.
Thread(target=lambda: client.write(b"/foo/bar/baz", b"???")).start()
assert next(waiter) == (b"/foo/bar/baz", b"boo")
@pytest.mark.parametrize("op", ["watch", "unwatch"])
def test_check_watch_path(op):
with pytest.raises(InvalidPath):
getattr(Client().monitor(), op)(b"INVALID%PATH", b"token")
with pytest.raises(InvalidPath):
getattr(Client().monitor(), op)(b"@arbitraryPath", b"token")
@virtualized
def test_monitor_leftover_events(client):
xfail_if_xenbus(client)
with client.monitor() as m:
m.watch(b"/foo/bar", b"boo")
def writer():
for i in range(128):
client[b"/foo/bar"] = str(i).encode()
t = Timer(.25, writer)
t.start()
m.unwatch(b"/foo/bar", b"boo")
assert not m.events.empty()
t.join()
@virtualized
def test_monitor_different_tokens(client):
xfail_if_xenbus(client)
with client.monitor() as m:
m.watch(b"/foo/bar", b"boo")
m.watch(b"/foo/bar", b"baz")
def writer():
client[b"/foo/bar"] = str(i).encode()
t = Timer(.25, lambda: client.write(b"/foo/bar", "???"))
t.start()
t.join()
events = list(islice(m.wait(), 2))
assert len(events) == 2
assert set(token for wpath, token in events) == set([b"boo", b"baz"])
class Latch(object):
def __init__(self, initial):
self.value = initial
def ready(self):
self.value -= 1
while self.value:
pass # Spin.
@virtualized
def test_multiple_monitors(client):
xfail_if_xenbus(client)
n_events = 5
events = {}
latch = Latch(2 + 1)
def monitor_and_check(token):
with client.monitor() as m:
m.watch(b"/foo/bar", token)
latch.ready()
events[current_thread().ident] = list(islice(m.wait(), n_events))
t1 = Thread(target=monitor_and_check, args=(b"boo", ))
t1.start()
t2 = Thread(target=monitor_and_check, args=(b"baz", ))
t2.start()
latch.ready()
for i in range(n_events):
client[b"/foo/bar"] = str(i).encode()
t1.join()
t2.join()
assert len(events) == 2
events1 = events[t1.ident]
events2 = events[t2.ident]
assert len(events1) == len(events2) == n_events
assert set(events1) == set([Event(b"/foo/bar", b"boo")])
assert set(events2) == set([Event(b"/foo/bar", b"baz")])
@virtualized
def test_header_decode_error(client):
# The following packet's header cannot be decoded to UTF-8, but
# we still need to handle it somehow.
p = Packet(Op.WRITE, b"/foo", rq_id=0, tx_id=128)
client.router.send(p)
|