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
|
# -*- coding: utf-8 -*-
# Copyright (C) 2010, 2011 Sebastian Wiesner <lunaryorn@googlemail.com>
# This library is free software; you can redistribute it and/or modify it
# under the terms of the GNU Lesser General Public License as published by the
# Free Software Foundation; either version 2.1 of the License, or (at your
# option) any later version.
# This library is distributed in the hope that it will be useful, but WITHOUT
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
# FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License
# for more details.
# You should have received a copy of the GNU Lesser General Public License
# along with this library; if not, write to the Free Software Foundation,
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
from __future__ import (print_function, division, unicode_literals,
absolute_import)
import sys
import os
import re
import random
import subprocess
import socket
from functools import wraps
from collections import namedtuple
from contextlib import contextmanager
from subprocess import check_call
if sys.version_info[:2] < (3, 2):
from contextlib import nested
import mock
import pytest
import pyudev
if sys.version_info[:2] >= (3, 2):
@contextmanager
def nested(*managers):
"""
Copy of contextlib.nested from python 2.7 with slight adaptions to
Python 3.2 to use nested() on python 3.2 and thus retain backwards
compatibility with Python 2.6 (with doesn't support the new nesting
syntax), while being able to run the test suite on Python 3.2 as
well (which doesn't provide contextlib.nested anymore).
"""
exits = []
vars = []
exc = None
try:
for mgr in managers:
exit = mgr.__exit__
enter = mgr.__enter__
vars.append(enter())
exits.append(exit)
yield vars
except BaseException as e:
exc = e
finally:
while exits:
exit = exits.pop()
try:
if exc:
args = (type(exc), exc, exc.__traceback__)
else:
args = (None, None, None)
if exit(*args):
exc = None
except BaseException as e:
exc = e
if exc:
raise exc
class FakeMonitor(object):
"""
A dummy pyudev.Monitor class, which allows clients to trigger arbitrary
events, emitting clearly defined device objects.
"""
def __init__(self, device_to_emit):
self.client, self.server = socket.socketpair(
socket.AF_UNIX, socket.SOCK_DGRAM)
if sys.version_info[0] >= 3:
# in python 3 sockets returned by socketpair() lack the
# ".makefile()" method, which is required by this class. Work
# around this limitation by wrapping these sockets in real
# socket objects.
import os
def _wrap_socket(sock):
wrapped = socket.socket(sock.family, sock.type,
fileno=os.dup(sock.fileno()))
sock.close()
return wrapped
self.client, self.server = (_wrap_socket(self.client),
_wrap_socket(self.server))
self.device_to_emit = device_to_emit
def trigger_action(self, action):
"""
Trigger the given ``action`` on clients of this monitor.
"""
with self.server.makefile('w') as stream:
stream.write(action)
stream.write('\n')
stream.flush()
def fileno(self):
return self.client.fileno()
def enable_receiving(self):
pass
def filter_by(self, *args):
pass
start = enable_receiving
def receive_device(self):
with self.client.makefile('r') as stream:
action = stream.readline().strip()
return action, self.device_to_emit
def close(self):
"""
Close sockets acquired by this monitor.
"""
try:
self.client.close()
finally:
self.server.close()
def _read_udev_database(properties_blacklist):
udevadm = subprocess.Popen(['udevadm', 'info', '--export-db'],
stdout=subprocess.PIPE)
database = udevadm.communicate()[0].splitlines()
devices = {}
current_properties = None
for line in database:
line = line.strip().decode(sys.getfilesystemencoding())
if not line:
continue
type, value = line.split(': ', 1)
if type == 'P':
current_properties = devices.setdefault(value, {})
elif type == 'E':
property, value = value.split('=', 1)
if property in properties_blacklist:
continue
current_properties[property] = value
return devices
def _get_device_attributes(device_path, attributes_blacklist):
udevadm = subprocess.Popen(
['udevadm', 'info', '--attribute-walk', '--path', device_path],
stdout=subprocess.PIPE)
attribute_dump = udevadm.communicate()[0].splitlines()
if udevadm.returncode != 0:
raise IOError('could not read attributes')
attributes = {}
for line in attribute_dump:
line = line.strip().decode(sys.getfilesystemencoding())
if line.startswith('looking at parent device'):
# we don't continue with attributes of parent devices, we only
# want the attributes of the given device
break
if line.startswith('ATTR'):
name, value = line.split('==', 1)
# remove quotation marks from attribute value
value = value[1:-1]
# remove prefix from attribute name
name = re.search('{(.*)}', name).group(1)
if name in attributes_blacklist:
continue
attributes[name] = value
return attributes
def _query_device(device_path, query_type):
if query_type not in ('symlink', 'name'):
raise ValueError(query_type)
udevadm = subprocess.Popen(
['udevadm', 'info', '--root', '--path', device_path,
'--query', query_type],
stdout=subprocess.PIPE, stderr=subprocess.PIPE)
query_result = udevadm.communicate()[0].strip().decode(
sys.getfilesystemencoding())
if query_type == 'symlink':
return query_result.split()
else:
return query_result or None
def get_device_sample(config):
if config.getvalue('device'):
return [config.getvalue('device')]
if config.getvalue('all_devices'):
return config.udev_database
else:
device_sample_size = config.getvalue('device_sample_size')
actual_size = min(device_sample_size, len(config.udev_database))
return random.sample(list(config.udev_database), actual_size)
def assert_env_error(error, errno, filename=None):
__tracebackhide__ = True
assert error.errno == errno
assert error.strerror == os.strerror(errno)
assert error.filename == filename
@contextmanager
def patch_libudev(funcname):
with mock.patch('pyudev._libudev.libudev.{0}'.format(funcname)) as func:
yield func
class Node(namedtuple('Node', 'name next')):
"""
Node in a :class:`LinkedList`.
"""
@property
def value(self):
return 'value of {0}'.format(self.name)
class LinkedList(object):
"""
Linked list class to mock libudev list functions.
"""
@classmethod
def from_sequence(cls, items):
next_node = None
for item in reversed(items):
node = Node(item, next_node)
next_node = node
return cls(next_node)
def __init__(self, first):
self.first = first
@contextmanager
def patch_libudev_list(items, list_func):
linked_list = LinkedList.from_sequence(items)
get_next = 'udev_list_entry_get_next'
get_name = 'udev_list_entry_get_name'
get_value = 'udev_list_entry_get_value'
with pytest.nested(pytest.patch_libudev(get_next),
pytest.patch_libudev(get_name),
pytest.patch_libudev(get_value),
pytest.patch_libudev(list_func)) as (get_next, get_name,
get_value,
list_func):
list_func.return_value = linked_list.first
get_name.side_effect = lambda e: e.name
get_value.side_effect = lambda e: e.value
get_next.side_effect = lambda e: e.next
yield list_func
def _need_privileges(func):
@wraps(func)
def wrapped(*args):
if not pytest.config.getvalue('allow_privileges'):
pytest.skip('privileges disabled')
return func(*args)
return wrapped
@_need_privileges
def load_dummy():
"""
Load the ``dummy`` module or raise :exc:`ValueError` if sudo are not
allowed.
"""
check_call(['sudo', 'modprobe', 'dummy'])
@_need_privileges
def unload_dummy():
"""
Unload the ``dummy`` module or raise :exc:`ValueError` if sudo are not
allowed.
"""
check_call(['sudo', 'modprobe', '-r', 'dummy'])
def is_unicode_string(value):
"""
Return ``True``, if ``value`` is of a real unicode string type
(``unicode`` in python 2, ``str`` in python 3), ``False`` otherwise.
"""
if sys.version_info[0] >= 3:
unicode_type = str
else:
unicode_type = unicode
return isinstance(value, unicode_type)
def need_udev_version(version_spec):
"""
Decorator to check the udev version before a test is run.
``version_spec`` is a string containing a comparison operator and the right
hand sight operand of this comparison, like ``'>= 165'``. The left hand
side is automatically provided by the current udev version.
If the udev version matches the spec, the test is run. Otherwise the test
is skipped.
"""
expr_template = 'not ({0} {1})'
actual_version = pyudev.udev_version()
expr = expr_template.format(actual_version, version_spec)
reason = 'udev version mismatch: {0} required, {1} found'.format(
version_spec, actual_version)
return pytest.mark.skipif(str(expr), reason=reason)
def pytest_namespace():
return dict((func.__name__, func) for func in
(get_device_sample, patch_libudev, load_dummy, nested,
unload_dummy, is_unicode_string, need_udev_version,
patch_libudev_list, assert_env_error))
def pytest_addoption(parser):
parser.addoption('--all-devices', action='store_true',
help='Run device tests against *all* devices in the '
'database. By default, only a random sample will be '
'checked.', default=False)
parser.addoption('--device', metavar='DEVICE',
help='Run the device tests only against the given '
'DEVICE', default=None)
parser.addoption('--device-sample-size', type='int', metavar='N',
help='Use a random sample of N elements (default: 10)',
default=10)
parser.addoption('--allow-privileges', action='store_true',
help='Permit execution of tests, which require '
'root privileges. This affects all monitor tests, '
'that need to load or unload modules to trigger udev '
'events. "sudo" will be used to execute privileged '
'code, be sure to have proper privileges before '
'enabling this option!', default=False)
def pytest_configure(config):
# these are volatile, frequently changing properties and attributes,
# which lead to bogus failures during tests, and therefore they are
# masked and shall be ignored for test runs.
config.properties_blacklist = frozenset(
['POWER_SUPPLY_CURRENT_NOW', 'POWER_SUPPLY_VOLTAGE_NOW',
'POWER_SUPPLY_CHARGE_NOW'])
config.attributes_blacklist = frozenset(
['power_on_acct', 'temp1_input', 'charge_now', 'current_now',
'urbnum'])
config.udev_database = _read_udev_database(config.properties_blacklist)
config.udev_version = pyudev.udev_version()
def pytest_funcarg__database(request):
"""
The complete udev database parsed from the output of ``udevadm info
--export-db``.
Return a dictionary, mapping the devpath of a device *without* sysfs
mountpoint to a dictionary of properties of the device.
"""
return request.config.udev_database
def pytest_funcarg__context(request):
"""
Return a useable :class:`pyudev.Context` object. The context is cached
with session scope.
"""
return request.cached_setup(setup=pyudev.Context, scope='session')
def pytest_funcarg__device_path(request):
"""
Return a device path as string.
The device path must be available as ``request.param``.
"""
return request.param
def pytest_funcarg__all_properties(request):
"""
Get all properties from the exported database (as returned by the
``database`` funcarg) of the device pointed to by the ``device_path``
funcarg.
"""
device_path = request.getfuncargvalue('device_path')
return dict(request.getfuncargvalue('database')[device_path])
def pytest_funcarg__properties(request):
"""
Same as the ``all_properties`` funcarg, but with the special ``DEVNAME``
property removed.
"""
properties = request.getfuncargvalue('all_properties')
properties.pop('DEVNAME', None)
return properties
def pytest_funcarg__tags(request):
"""
Return the tags of the device pointed to by the ``device_path`` funcarg.
"""
properties = request.getfuncargvalue('properties')
tags = properties.get('TAGS', '')
return [t for t in tags.split(':') if t]
def pytest_funcarg__attributes(request):
"""
Return a dictionary of all attributes for the device pointed to by the
``device_path`` funcarg.
"""
device_path = request.getfuncargvalue('device_path')
return _get_device_attributes(
device_path, request.config.attributes_blacklist)
def pytest_funcarg__device_node(request):
"""
Return the name of the device node for the device pointed to by the
``device_path`` funcarg.
"""
device_path = request.getfuncargvalue('device_path')
return _query_device(device_path, 'name')
def pytest_funcarg__device_number(request):
"""
Return the device number of the device pointed to by the ``device_path``
funcarg.
"""
device_node = request.getfuncargvalue('device_node')
if device_node:
return os.stat(device_node).st_rdev
else:
return 0
def pytest_funcarg__device_links(request):
"""
Return a list of symlink to the device node (``device_node`` funcarg)
for the device pointed to by the ``device_path`` funcarg.
"""
device_path = request.getfuncargvalue('device_path')
return _query_device(device_path, 'symlink')
def pytest_funcarg__sys_path(request):
"""
Return the sys_path including the sysfs mountpoint for the device path
returned by the ``device_path`` funcarg.
"""
context = request.getfuncargvalue('context')
device_path = request.getfuncargvalue('device_path')
return context.sys_path + device_path
def pytest_funcarg__device(request):
"""
Create and return a :class:`pyudev.Device` object for the sys_path
returned by the ``sys_path`` funcarg, and the context from the
``context`` funcarg.
"""
sys_path = request.getfuncargvalue('sys_path')
context = request.getfuncargvalue('context')
return pyudev.Device.from_sys_path(context, sys_path)
def pytest_funcarg__platform_device(request):
"""
Return the platform device at ``/sys/devices/platform``. This device
object exists on all systems, and is therefore suited to for testing
purposes.
"""
context = request.getfuncargvalue('context')
return pyudev.Device.from_sys_path(context, '/sys/devices/platform')
def pytest_funcarg__socket_path(request):
"""
Return a socket path for :meth:`pyudev.Monitor.from_socket`. The path
is unique for each test.
"""
tmpdir = request.getfuncargvalue('tmpdir')
return tmpdir.join('monitor-socket')
def pytest_funcarg__monitor(request):
"""
Return a netlink monitor for udev source.
"""
return pyudev.Monitor.from_netlink(request.getfuncargvalue('context'))
def pytest_funcarg__fake_monitor(request):
"""
Return a FakeMonitor, which emits the platform device as returned by
the ``platform_device`` funcarg on all triggered actions.
"""
return FakeMonitor(request.getfuncargvalue('platform_device'))
|