2015-10-17 00:10:15 +02:00
|
|
|
# pylint: disable=invalid-name
|
2015-01-19 18:03:23 +01:00
|
|
|
|
|
|
|
#
|
|
|
|
# The Qubes OS Project, https://www.qubes-os.org/
|
|
|
|
#
|
|
|
|
# Copyright (C) 2014-2015 Joanna Rutkowska <joanna@invisiblethingslab.com>
|
2015-10-17 00:10:15 +02:00
|
|
|
# Copyright (C) 2014-2015
|
|
|
|
# Marek Marczykowski-Górecki <marmarek@invisiblethingslab.com>
|
2015-01-19 18:03:23 +01:00
|
|
|
# Copyright (C) 2014-2015 Wojtek Porczyk <woju@invisiblethingslab.com>
|
|
|
|
#
|
|
|
|
# This program is free software; you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU General Public License as published by
|
|
|
|
# the Free Software Foundation; either version 2 of the License, or
|
|
|
|
# (at your option) any later version.
|
|
|
|
#
|
|
|
|
# This program 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 General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License along
|
|
|
|
# with this program; if not, write to the Free Software Foundation, Inc.,
|
|
|
|
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
|
|
#
|
2015-01-05 14:41:59 +01:00
|
|
|
|
2016-03-13 03:36:20 +01:00
|
|
|
"""
|
|
|
|
.. warning::
|
|
|
|
The test suite hereby claims any domain whose name starts with
|
|
|
|
:py:data:`VMPREFIX` as fair game. This is needed to enforce sane
|
|
|
|
test executing environment. If you have domains named ``test-*``,
|
|
|
|
don't run the tests.
|
|
|
|
"""
|
2016-04-11 13:03:12 +02:00
|
|
|
|
2017-04-18 10:16:14 +02:00
|
|
|
import asyncio
|
2015-01-05 15:39:14 +01:00
|
|
|
import collections
|
2016-02-28 03:43:04 +01:00
|
|
|
import functools
|
2015-10-17 00:10:15 +02:00
|
|
|
import logging
|
2015-01-13 23:17:18 +01:00
|
|
|
import os
|
2017-04-18 10:16:14 +02:00
|
|
|
import pathlib
|
2017-06-20 16:14:16 +02:00
|
|
|
import shlex
|
2015-10-17 00:10:15 +02:00
|
|
|
import shutil
|
2015-01-13 23:17:18 +01:00
|
|
|
import subprocess
|
2015-10-17 00:10:15 +02:00
|
|
|
import sys
|
2016-02-26 10:59:20 +01:00
|
|
|
import tempfile
|
2016-09-25 16:31:31 +02:00
|
|
|
import time
|
2016-02-10 19:23:09 +01:00
|
|
|
import traceback
|
2015-01-05 14:41:59 +01:00
|
|
|
import unittest
|
2017-04-18 10:16:14 +02:00
|
|
|
import warnings
|
2016-09-25 16:31:31 +02:00
|
|
|
from distutils import spawn
|
2015-01-05 14:41:59 +01:00
|
|
|
|
2015-01-11 01:19:03 +01:00
|
|
|
import lxml.etree
|
2017-03-16 19:54:22 +01:00
|
|
|
import pkg_resources
|
2015-01-11 01:19:03 +01:00
|
|
|
|
2017-06-05 19:00:18 +02:00
|
|
|
import qubes.api
|
|
|
|
import qubes.api.admin
|
2017-07-04 05:22:39 +02:00
|
|
|
import qubes.api.internal
|
2016-09-25 16:31:31 +02:00
|
|
|
import qubes.backup
|
2015-01-05 17:01:13 +01:00
|
|
|
import qubes.config
|
2016-08-09 04:26:05 +02:00
|
|
|
import qubes.devices
|
2015-01-05 15:39:14 +01:00
|
|
|
import qubes.events
|
2016-03-10 11:22:52 +01:00
|
|
|
import qubes.exc
|
2016-03-13 14:03:53 +01:00
|
|
|
import qubes.vm.standalonevm
|
2015-01-05 15:39:14 +01:00
|
|
|
|
2015-10-27 11:39:59 +01:00
|
|
|
XMLPATH = '/var/lib/qubes/qubes-test.xml'
|
2016-02-10 17:16:06 +01:00
|
|
|
CLASS_XMLPATH = '/var/lib/qubes/qubes-class-test.xml'
|
2015-12-29 01:53:47 +01:00
|
|
|
TEMPLATE = 'fedora-23'
|
2016-02-10 17:16:06 +01:00
|
|
|
VMPREFIX = 'test-inst-'
|
|
|
|
CLSVMPREFIX = 'test-cls-'
|
2015-10-17 00:10:15 +02:00
|
|
|
|
2015-01-05 17:01:13 +01:00
|
|
|
|
2016-10-19 01:58:43 +02:00
|
|
|
if 'DEFAULT_LVM_POOL' in os.environ.keys():
|
|
|
|
DEFAULT_LVM_POOL = os.environ['DEFAULT_LVM_POOL']
|
|
|
|
else:
|
|
|
|
DEFAULT_LVM_POOL = 'qubes_dom0/pool00'
|
|
|
|
|
|
|
|
|
|
|
|
POOL_CONF = {'name': 'test-lvm',
|
|
|
|
'driver': 'lvm_thin',
|
|
|
|
'volume_group': DEFAULT_LVM_POOL.split('/')[0],
|
|
|
|
'thin_pool': DEFAULT_LVM_POOL.split('/')[1]}
|
|
|
|
|
2015-01-05 17:01:13 +01:00
|
|
|
#: :py:obj:`True` if running in dom0, :py:obj:`False` otherwise
|
|
|
|
in_dom0 = False
|
|
|
|
|
2015-01-19 17:06:30 +01:00
|
|
|
#: :py:obj:`False` if outside of git repo,
|
|
|
|
#: path to root of the directory otherwise
|
2015-01-13 23:17:18 +01:00
|
|
|
in_git = False
|
|
|
|
|
2015-01-05 17:01:13 +01:00
|
|
|
try:
|
|
|
|
import libvirt
|
|
|
|
libvirt.openReadOnly(qubes.config.defaults['libvirt_uri']).close()
|
|
|
|
in_dom0 = True
|
|
|
|
except libvirt.libvirtError:
|
|
|
|
pass
|
|
|
|
|
2015-01-13 23:17:18 +01:00
|
|
|
try:
|
2015-01-19 17:06:30 +01:00
|
|
|
in_git = subprocess.check_output(
|
2017-01-18 22:16:46 +01:00
|
|
|
['git', 'rev-parse', '--show-toplevel']).decode().strip()
|
2015-09-23 16:25:53 +02:00
|
|
|
qubes.log.LOGPATH = '/tmp'
|
|
|
|
qubes.log.LOGFILE = '/tmp/qubes.log'
|
2015-01-13 23:17:18 +01:00
|
|
|
except subprocess.CalledProcessError:
|
|
|
|
# git returned nonzero, we are outside git repo
|
|
|
|
pass
|
|
|
|
except OSError:
|
|
|
|
# command not found; let's assume we're outside
|
|
|
|
pass
|
|
|
|
|
2015-01-05 17:01:13 +01:00
|
|
|
def skipUnlessDom0(test_item):
|
|
|
|
'''Decorator that skips test outside dom0.
|
|
|
|
|
|
|
|
Some tests (especially integration tests) have to be run in more or less
|
|
|
|
working dom0. This is checked by connecting to libvirt.
|
2015-10-17 00:10:15 +02:00
|
|
|
'''
|
2015-01-05 19:15:32 +01:00
|
|
|
|
2015-01-05 17:01:13 +01:00
|
|
|
return unittest.skipUnless(in_dom0, 'outside dom0')(test_item)
|
|
|
|
|
|
|
|
|
2015-01-13 23:17:18 +01:00
|
|
|
def skipUnlessGit(test_item):
|
|
|
|
'''Decorator that skips test outside git repo.
|
|
|
|
|
|
|
|
There are very few tests that an be run only in git. One example is
|
|
|
|
correctness of example code that won't get included in RPM.
|
2015-10-17 00:10:15 +02:00
|
|
|
'''
|
2015-01-13 23:17:18 +01:00
|
|
|
|
|
|
|
return unittest.skipUnless(in_git, 'outside git tree')(test_item)
|
|
|
|
|
|
|
|
|
2015-01-05 15:39:14 +01:00
|
|
|
class TestEmitter(qubes.events.Emitter):
|
|
|
|
'''Dummy event emitter which records events fired on it.
|
|
|
|
|
|
|
|
Events are counted in :py:attr:`fired_events` attribute, which is
|
|
|
|
:py:class:`collections.Counter` instance. For each event, ``(event, args,
|
|
|
|
kwargs)`` object is counted. *event* is event name (a string), *args* is
|
|
|
|
tuple with positional arguments and *kwargs* is sorted tuple of items from
|
|
|
|
keyword arguments.
|
|
|
|
|
|
|
|
>>> emitter = TestEmitter()
|
|
|
|
>>> emitter.fired_events
|
|
|
|
Counter()
|
2017-02-21 14:09:06 +01:00
|
|
|
>>> emitter.fire_event('event', spam='eggs', foo='bar')
|
2015-01-05 15:39:14 +01:00
|
|
|
>>> emitter.fired_events
|
|
|
|
Counter({('event', (1, 2, 3), (('foo', 'bar'), ('spam', 'eggs'))): 1})
|
|
|
|
'''
|
2015-01-05 19:15:32 +01:00
|
|
|
|
2015-01-05 15:39:14 +01:00
|
|
|
def __init__(self, *args, **kwargs):
|
|
|
|
super(TestEmitter, self).__init__(*args, **kwargs)
|
|
|
|
|
|
|
|
#: :py:class:`collections.Counter` instance
|
|
|
|
self.fired_events = collections.Counter()
|
|
|
|
|
2017-02-21 14:09:06 +01:00
|
|
|
def fire_event(self, event, **kwargs):
|
|
|
|
effects = super(TestEmitter, self).fire_event(event, **kwargs)
|
2017-03-16 15:30:49 +01:00
|
|
|
ev_kwargs = frozenset(
|
|
|
|
(key,
|
2017-06-26 12:58:14 +02:00
|
|
|
frozenset(value.items()) if isinstance(value, dict)
|
|
|
|
else tuple(value) if isinstance(value, list)
|
|
|
|
else value)
|
2017-03-16 15:30:49 +01:00
|
|
|
for key, value in kwargs.items()
|
|
|
|
)
|
|
|
|
self.fired_events[(event, ev_kwargs)] += 1
|
2016-06-26 04:07:15 +02:00
|
|
|
return effects
|
2015-01-05 15:39:14 +01:00
|
|
|
|
2017-06-23 19:03:57 +02:00
|
|
|
@asyncio.coroutine
|
|
|
|
def fire_event_async(self, event, pre_event=False, **kwargs):
|
|
|
|
effects = yield from super(TestEmitter, self).fire_event_async(
|
|
|
|
event, pre_event=pre_event, **kwargs)
|
|
|
|
ev_kwargs = frozenset(
|
|
|
|
(key,
|
|
|
|
frozenset(value.items()) if isinstance(value, dict) else value)
|
|
|
|
for key, value in kwargs.items()
|
|
|
|
)
|
|
|
|
self.fired_events[(event, ev_kwargs)] += 1
|
|
|
|
return effects
|
|
|
|
|
2015-01-05 15:39:14 +01:00
|
|
|
|
2016-02-28 03:43:04 +01:00
|
|
|
def expectedFailureIfTemplate(templates):
|
|
|
|
"""
|
|
|
|
Decorator for marking specific test as expected to fail only for some
|
|
|
|
templates. Template name is compared as substring, so 'whonix' will
|
|
|
|
handle both 'whonix-ws' and 'whonix-gw'.
|
2017-06-27 02:57:50 +02:00
|
|
|
templates can be either a single string, or an iterable
|
2016-02-28 03:43:04 +01:00
|
|
|
"""
|
|
|
|
def decorator(func):
|
|
|
|
@functools.wraps(func)
|
2016-03-02 14:10:50 +01:00
|
|
|
def wrapper(self, *args, **kwargs):
|
|
|
|
template = self.template
|
2017-01-18 22:16:46 +01:00
|
|
|
if isinstance(templates, str):
|
2016-02-28 03:43:04 +01:00
|
|
|
should_expect_fail = template in templates
|
|
|
|
else:
|
|
|
|
should_expect_fail = any([template in x for x in templates])
|
|
|
|
if should_expect_fail:
|
|
|
|
try:
|
2016-03-02 14:10:50 +01:00
|
|
|
func(self, *args, **kwargs)
|
2016-02-28 03:43:04 +01:00
|
|
|
except Exception:
|
2016-03-02 14:10:50 +01:00
|
|
|
raise unittest.case._ExpectedFailure(sys.exc_info())
|
|
|
|
raise unittest.case._UnexpectedSuccess()
|
2016-02-28 03:43:04 +01:00
|
|
|
else:
|
|
|
|
# Call directly:
|
2016-03-02 14:10:50 +01:00
|
|
|
func(self, *args, **kwargs)
|
2016-02-28 03:43:04 +01:00
|
|
|
return wrapper
|
|
|
|
return decorator
|
2015-01-05 15:39:14 +01:00
|
|
|
|
2015-10-17 00:10:15 +02:00
|
|
|
class _AssertNotRaisesContext(object):
|
|
|
|
"""A context manager used to implement TestCase.assertNotRaises methods.
|
|
|
|
|
|
|
|
Stolen from unittest and hacked. Regexp support stripped.
|
|
|
|
""" # pylint: disable=too-few-public-methods
|
|
|
|
|
|
|
|
def __init__(self, expected, test_case, expected_regexp=None):
|
|
|
|
if expected_regexp is not None:
|
|
|
|
raise NotImplementedError('expected_regexp is unsupported')
|
|
|
|
|
|
|
|
self.expected = expected
|
|
|
|
self.exception = None
|
|
|
|
|
|
|
|
self.failureException = test_case.failureException
|
|
|
|
|
|
|
|
|
|
|
|
def __enter__(self):
|
|
|
|
return self
|
|
|
|
|
|
|
|
|
|
|
|
def __exit__(self, exc_type, exc_value, tb):
|
|
|
|
if exc_type is None:
|
|
|
|
return True
|
|
|
|
|
|
|
|
if issubclass(exc_type, self.expected):
|
|
|
|
raise self.failureException(
|
2016-02-10 19:23:09 +01:00
|
|
|
"{!r} raised, traceback:\n{!s}".format(
|
|
|
|
exc_value, ''.join(traceback.format_tb(tb))))
|
2015-10-17 00:10:15 +02:00
|
|
|
else:
|
|
|
|
# pass through
|
|
|
|
return False
|
|
|
|
|
|
|
|
self.exception = exc_value # store for later retrieval
|
|
|
|
|
2017-04-18 10:16:14 +02:00
|
|
|
class _QrexecPolicyContext(object):
|
2017-07-12 19:01:15 +02:00
|
|
|
'''Context manager for SystemTestCase.qrexec_policy'''
|
2017-04-18 10:16:14 +02:00
|
|
|
|
|
|
|
def __init__(self, service, source, destination, allow=True):
|
|
|
|
try:
|
|
|
|
source = source.name
|
|
|
|
except AttributeError:
|
|
|
|
pass
|
|
|
|
|
|
|
|
try:
|
|
|
|
destination = destination.name
|
|
|
|
except AttributeError:
|
|
|
|
pass
|
|
|
|
|
|
|
|
self._filename = pathlib.Path('/etc/qubes-rpc/policy') / service
|
|
|
|
self._rule = '{} {} {}\n'.format(source, destination,
|
|
|
|
'allow' if allow else 'deny')
|
2017-05-31 23:59:02 +02:00
|
|
|
self._did_create = False
|
|
|
|
self._handle = None
|
|
|
|
|
|
|
|
def load(self):
|
|
|
|
if self._handle is None:
|
|
|
|
try:
|
|
|
|
self._handle = self._filename.open('r+')
|
|
|
|
except FileNotFoundError:
|
|
|
|
self._handle = self._filename.open('w+')
|
|
|
|
self._did_create = True
|
|
|
|
self._handle.seek(0)
|
|
|
|
return self._handle.readlines()
|
|
|
|
|
|
|
|
def save(self, rules):
|
|
|
|
assert self._handle is not None
|
|
|
|
self._handle.truncate(0)
|
|
|
|
self._handle.seek(0)
|
|
|
|
self._handle.write(''.join(rules))
|
2017-06-21 00:09:32 +02:00
|
|
|
self._handle.flush()
|
2017-05-31 23:59:02 +02:00
|
|
|
|
|
|
|
def close(self):
|
|
|
|
assert self._handle is not None
|
|
|
|
self._handle.close()
|
|
|
|
self._handle = None
|
2017-04-18 10:16:14 +02:00
|
|
|
|
|
|
|
def __enter__(self):
|
2017-05-31 23:59:02 +02:00
|
|
|
rules = self.load()
|
|
|
|
rules.insert(0, self._rule)
|
|
|
|
self.save(self._rule)
|
2017-04-18 10:16:14 +02:00
|
|
|
return self
|
|
|
|
|
|
|
|
def __exit__(self, exc_type, exc_value, tb):
|
2017-05-31 23:59:02 +02:00
|
|
|
if not self._did_create:
|
|
|
|
try:
|
|
|
|
rules = self.load()
|
|
|
|
rules.remove(self._rule)
|
|
|
|
self.save(rules)
|
|
|
|
finally:
|
|
|
|
self.close()
|
|
|
|
else:
|
|
|
|
self.close()
|
2017-06-20 17:21:35 +02:00
|
|
|
self._filename.unlink()
|
2015-10-17 00:10:15 +02:00
|
|
|
|
2016-10-24 15:15:06 +02:00
|
|
|
class substitute_entry_points(object):
|
|
|
|
'''Monkey-patch pkg_resources to substitute one group in iter_entry_points
|
|
|
|
|
|
|
|
This is for testing plugins, like device classes.
|
|
|
|
|
|
|
|
:param str group: The group that is to be overloaded.
|
|
|
|
:param str tempgroup: The substitute group.
|
|
|
|
|
|
|
|
Inside this context, if one iterates over entry points in overloaded group,
|
|
|
|
the iteration actually happens over the other group.
|
|
|
|
|
|
|
|
This context manager is stackable. To substitute more than one entry point
|
|
|
|
group, just nest two contexts.
|
|
|
|
''' # pylint: disable=invalid-name
|
|
|
|
|
|
|
|
def __init__(self, group, tempgroup):
|
|
|
|
self.group = group
|
|
|
|
self.tempgroup = tempgroup
|
|
|
|
self._orig_iter_entry_points = None
|
|
|
|
|
|
|
|
def _iter_entry_points(self, group, *args, **kwargs):
|
|
|
|
if group == self.group:
|
|
|
|
group = self.tempgroup
|
|
|
|
return self._orig_iter_entry_points(group, *args, **kwargs)
|
|
|
|
|
|
|
|
def __enter__(self):
|
|
|
|
self._orig_iter_entry_points = pkg_resources.iter_entry_points
|
|
|
|
pkg_resources.iter_entry_points = self._iter_entry_points
|
|
|
|
return self
|
|
|
|
|
|
|
|
def __exit__(self, exc_type, exc_value, tb):
|
|
|
|
pkg_resources.iter_entry_points = self._orig_iter_entry_points
|
|
|
|
self._orig_iter_entry_points = None
|
|
|
|
|
|
|
|
|
2015-10-17 00:10:15 +02:00
|
|
|
class BeforeCleanExit(BaseException):
|
|
|
|
'''Raised from :py:meth:`QubesTestCase.tearDown` when
|
|
|
|
:py:attr:`qubes.tests.run.QubesDNCTestResult.do_not_clean` is set.'''
|
|
|
|
pass
|
|
|
|
|
|
|
|
|
2015-01-05 14:41:59 +01:00
|
|
|
class QubesTestCase(unittest.TestCase):
|
2015-01-05 15:39:14 +01:00
|
|
|
'''Base class for Qubes unit tests.
|
|
|
|
'''
|
2015-01-05 19:15:32 +01:00
|
|
|
|
2015-10-17 00:10:15 +02:00
|
|
|
def __init__(self, *args, **kwargs):
|
|
|
|
super(QubesTestCase, self).__init__(*args, **kwargs)
|
|
|
|
self.longMessage = True
|
|
|
|
self.log = logging.getLogger('{}.{}.{}'.format(
|
|
|
|
self.__class__.__module__,
|
|
|
|
self.__class__.__name__,
|
|
|
|
self._testMethodName))
|
2016-08-09 04:26:05 +02:00
|
|
|
self.addTypeEqualityFunc(qubes.devices.DeviceManager,
|
|
|
|
self.assertDevicesEqual)
|
2015-10-17 00:10:15 +02:00
|
|
|
|
2017-04-18 10:16:14 +02:00
|
|
|
self.loop = None
|
|
|
|
|
2015-10-17 00:10:15 +02:00
|
|
|
|
2015-01-05 14:41:59 +01:00
|
|
|
def __str__(self):
|
|
|
|
return '{}/{}/{}'.format(
|
2016-04-20 02:25:06 +02:00
|
|
|
self.__class__.__module__,
|
2015-01-05 14:41:59 +01:00
|
|
|
self.__class__.__name__,
|
|
|
|
self._testMethodName)
|
2015-01-05 15:39:14 +01:00
|
|
|
|
|
|
|
|
2017-04-18 10:16:14 +02:00
|
|
|
def setUp(self):
|
|
|
|
super().setUp()
|
|
|
|
self.loop = asyncio.new_event_loop()
|
|
|
|
asyncio.set_event_loop(self.loop)
|
|
|
|
|
2015-10-17 00:10:15 +02:00
|
|
|
def tearDown(self):
|
2017-04-18 10:16:14 +02:00
|
|
|
# The loop, when closing, throws a warning if there is
|
|
|
|
# some unfinished bussiness. Let's catch that.
|
|
|
|
with warnings.catch_warnings():
|
|
|
|
warnings.simplefilter('error')
|
|
|
|
self.loop.close()
|
|
|
|
|
2017-01-18 22:16:46 +01:00
|
|
|
# TODO: find better way in py3
|
|
|
|
try:
|
|
|
|
result = self._outcome.result
|
|
|
|
except:
|
|
|
|
result = self._resultForDoCleanups
|
2015-10-17 00:10:15 +02:00
|
|
|
failed_test_cases = result.failures \
|
|
|
|
+ result.errors \
|
|
|
|
+ [(tc, None) for tc in result.unexpectedSuccesses]
|
|
|
|
|
|
|
|
if getattr(result, 'do_not_clean', False) \
|
|
|
|
and any(tc is self for tc, exc in failed_test_cases):
|
|
|
|
raise BeforeCleanExit()
|
|
|
|
|
|
|
|
|
|
|
|
def assertNotRaises(self, excClass, callableObj=None, *args, **kwargs):
|
|
|
|
"""Fail if an exception of class excClass is raised
|
|
|
|
by callableObj when invoked with arguments args and keyword
|
|
|
|
arguments kwargs. If a different type of exception is
|
|
|
|
raised, it will not be caught, and the test case will be
|
|
|
|
deemed to have suffered an error, exactly as for an
|
|
|
|
unexpected exception.
|
|
|
|
|
|
|
|
If called with callableObj omitted or None, will return a
|
|
|
|
context object used like this::
|
|
|
|
|
|
|
|
with self.assertRaises(SomeException):
|
|
|
|
do_something()
|
|
|
|
|
|
|
|
The context manager keeps a reference to the exception as
|
|
|
|
the 'exception' attribute. This allows you to inspect the
|
|
|
|
exception after the assertion::
|
|
|
|
|
|
|
|
with self.assertRaises(SomeException) as cm:
|
|
|
|
do_something()
|
|
|
|
the_exception = cm.exception
|
|
|
|
self.assertEqual(the_exception.error_code, 3)
|
|
|
|
"""
|
|
|
|
context = _AssertNotRaisesContext(excClass, self)
|
|
|
|
if callableObj is None:
|
|
|
|
return context
|
|
|
|
with context:
|
|
|
|
callableObj(*args, **kwargs)
|
|
|
|
|
|
|
|
|
2017-07-17 12:28:24 +02:00
|
|
|
def assertXMLEqual(self, xml1, xml2, msg=''):
|
2015-01-08 17:32:45 +01:00
|
|
|
'''Check for equality of two XML objects.
|
|
|
|
|
|
|
|
:param xml1: first element
|
|
|
|
:param xml2: second element
|
|
|
|
:type xml1: :py:class:`lxml.etree._Element`
|
|
|
|
:type xml2: :py:class:`lxml.etree._Element`
|
2017-07-17 12:28:24 +02:00
|
|
|
'''
|
2015-01-19 19:02:28 +01:00
|
|
|
|
2015-01-08 17:32:45 +01:00
|
|
|
self.assertEqual(xml1.tag, xml2.tag)
|
2017-07-17 12:28:24 +02:00
|
|
|
msg += '/' + str(xml1.tag)
|
|
|
|
|
|
|
|
if xml1.text is not None and xml2.text is not None:
|
|
|
|
self.assertEqual(xml1.text.strip(), xml2.text.strip(), msg)
|
|
|
|
else:
|
|
|
|
self.assertEqual(xml1.text, xml2.text, msg)
|
|
|
|
self.assertCountEqual(xml1.keys(), xml2.keys(), msg)
|
2015-01-08 17:32:45 +01:00
|
|
|
for key in xml1.keys():
|
2017-07-17 12:28:24 +02:00
|
|
|
self.assertEqual(xml1.get(key), xml2.get(key), msg)
|
|
|
|
|
|
|
|
self.assertEqual(len(xml1), len(xml2), msg + ' children count')
|
|
|
|
for child1, child2 in zip(xml1, xml2):
|
|
|
|
self.assertXMLEqual(child1, child2, msg=msg)
|
2015-01-08 17:32:45 +01:00
|
|
|
|
2016-08-09 04:26:05 +02:00
|
|
|
def assertDevicesEqual(self, devices1, devices2, msg=None):
|
|
|
|
self.assertEqual(devices1.keys(), devices2.keys(), msg)
|
|
|
|
for dev_class in devices1.keys():
|
|
|
|
self.assertEqual(
|
|
|
|
[str(dev) for dev in devices1[dev_class]],
|
|
|
|
[str(dev) for dev in devices2[dev_class]],
|
|
|
|
"Devices of class {} differs{}".format(
|
|
|
|
dev_class, (": " + msg) if msg else "")
|
|
|
|
)
|
2015-01-08 17:32:45 +01:00
|
|
|
|
2017-02-21 14:09:06 +01:00
|
|
|
def assertEventFired(self, subject, event, kwargs=None):
|
2015-01-05 15:39:14 +01:00
|
|
|
'''Check whether event was fired on given emitter and fail if it did
|
|
|
|
not.
|
|
|
|
|
2017-02-21 14:09:06 +01:00
|
|
|
:param subject: emitter which is being checked
|
2015-01-05 19:15:32 +01:00
|
|
|
:type emitter: :py:class:`TestEmitter`
|
2015-01-05 15:39:14 +01:00
|
|
|
:param str event: event identifier
|
2015-01-19 17:06:30 +01:00
|
|
|
:param list kwargs: when given, all items must appear in kwargs passed \
|
|
|
|
to an event
|
2015-10-17 00:10:15 +02:00
|
|
|
'''
|
2015-01-05 15:39:14 +01:00
|
|
|
|
2017-02-21 14:09:06 +01:00
|
|
|
will_not_match = object()
|
|
|
|
for ev, ev_kwargs in subject.fired_events:
|
2015-01-05 15:39:14 +01:00
|
|
|
if ev != event:
|
|
|
|
continue
|
2017-02-21 14:09:06 +01:00
|
|
|
if kwargs is not None:
|
|
|
|
ev_kwargs = dict(ev_kwargs)
|
|
|
|
if any(ev_kwargs.get(k, will_not_match) != v
|
|
|
|
for k, v in kwargs.items()):
|
|
|
|
continue
|
2015-01-05 15:39:14 +01:00
|
|
|
|
|
|
|
return
|
|
|
|
|
2017-02-21 14:09:06 +01:00
|
|
|
self.fail('event {!r} {}did not fire on {!r}'.format(
|
|
|
|
event, ('' if kwargs is None else '{!r} '.format(kwargs)), subject))
|
2015-01-05 15:39:14 +01:00
|
|
|
|
|
|
|
|
2017-02-21 14:09:06 +01:00
|
|
|
def assertEventNotFired(self, subject, event, kwargs=None):
|
2015-01-05 15:39:14 +01:00
|
|
|
'''Check whether event was fired on given emitter. Fail if it did.
|
|
|
|
|
2017-02-21 14:09:06 +01:00
|
|
|
:param subject: emitter which is being checked
|
2015-01-05 19:15:32 +01:00
|
|
|
:type emitter: :py:class:`TestEmitter`
|
2015-01-05 15:39:14 +01:00
|
|
|
:param str event: event identifier
|
2015-01-19 17:06:30 +01:00
|
|
|
:param list kwargs: when given, all items must appear in kwargs passed \
|
|
|
|
to an event
|
2015-10-17 00:10:15 +02:00
|
|
|
'''
|
2015-01-05 15:39:14 +01:00
|
|
|
|
2017-02-21 14:09:06 +01:00
|
|
|
will_not_match = object()
|
|
|
|
for ev, ev_kwargs in subject.fired_events:
|
2015-01-05 15:39:14 +01:00
|
|
|
if ev != event:
|
|
|
|
continue
|
2017-02-21 14:09:06 +01:00
|
|
|
if kwargs is not None:
|
|
|
|
ev_kwargs = dict(ev_kwargs)
|
|
|
|
if any(ev_kwargs.get(k, will_not_match) != v
|
|
|
|
for k, v in kwargs.items()):
|
|
|
|
continue
|
|
|
|
|
|
|
|
self.fail('event {!r} {}did fire on {!r}'.format(
|
|
|
|
event,
|
|
|
|
('' if kwargs is None else '{!r} '.format(kwargs)),
|
|
|
|
subject))
|
2015-01-05 15:39:14 +01:00
|
|
|
|
|
|
|
return
|
2015-01-11 01:19:03 +01:00
|
|
|
|
|
|
|
|
|
|
|
def assertXMLIsValid(self, xml, file=None, schema=None):
|
|
|
|
'''Check whether given XML fulfills Relax NG schema.
|
|
|
|
|
|
|
|
Schema can be given in a couple of ways:
|
|
|
|
|
|
|
|
- As separate file. This is most common, and also the only way to
|
2015-01-19 17:06:30 +01:00
|
|
|
handle file inclusion. Call with file name as second argument.
|
2015-01-11 01:19:03 +01:00
|
|
|
|
|
|
|
- As string containing actual schema. Put that string in *schema*
|
|
|
|
keyword argument.
|
|
|
|
|
|
|
|
:param lxml.etree._Element xml: XML element instance to check
|
|
|
|
:param str file: filename of Relax NG schema
|
|
|
|
:param str schema: optional explicit schema string
|
2015-10-17 00:10:15 +02:00
|
|
|
''' # pylint: disable=redefined-builtin
|
2015-01-11 01:19:03 +01:00
|
|
|
|
|
|
|
if schema is not None and file is None:
|
|
|
|
relaxng = schema
|
|
|
|
if isinstance(relaxng, str):
|
|
|
|
relaxng = lxml.etree.XML(relaxng)
|
2015-01-19 19:02:28 +01:00
|
|
|
# pylint: disable=protected-access
|
2015-01-11 01:19:03 +01:00
|
|
|
if isinstance(relaxng, lxml.etree._Element):
|
|
|
|
relaxng = lxml.etree.RelaxNG(relaxng)
|
|
|
|
|
|
|
|
elif file is not None and schema is None:
|
2015-01-13 23:17:18 +01:00
|
|
|
if not os.path.isabs(file):
|
|
|
|
basedirs = ['/usr/share/doc/qubes/relaxng']
|
|
|
|
if in_git:
|
|
|
|
basedirs.insert(0, os.path.join(in_git, 'relaxng'))
|
|
|
|
for basedir in basedirs:
|
|
|
|
abspath = os.path.join(basedir, file)
|
|
|
|
if os.path.exists(abspath):
|
|
|
|
file = abspath
|
|
|
|
break
|
2015-01-11 01:19:03 +01:00
|
|
|
relaxng = lxml.etree.RelaxNG(file=file)
|
|
|
|
|
|
|
|
else:
|
|
|
|
raise TypeError("There should be excactly one of 'file' and "
|
|
|
|
"'schema' arguments specified.")
|
|
|
|
|
|
|
|
# We have to be extra careful here in case someone messed up with
|
|
|
|
# self.failureException. It should by default be AssertionError, just
|
|
|
|
# what is spewed by RelaxNG(), but who knows what might happen.
|
|
|
|
try:
|
|
|
|
relaxng.assert_(xml)
|
|
|
|
except self.failureException:
|
|
|
|
raise
|
|
|
|
except AssertionError as e:
|
|
|
|
self.fail(str(e))
|
2015-10-17 00:10:15 +02:00
|
|
|
|
2016-02-11 05:42:08 +01:00
|
|
|
@staticmethod
|
|
|
|
def make_vm_name(name, class_teardown=False):
|
|
|
|
if class_teardown:
|
|
|
|
return CLSVMPREFIX + name
|
|
|
|
else:
|
|
|
|
return VMPREFIX + name
|
|
|
|
|
2015-10-17 00:10:15 +02:00
|
|
|
|
2017-07-12 19:01:15 +02:00
|
|
|
class SystemTestCase(QubesTestCase):
|
2016-02-10 17:16:06 +01:00
|
|
|
"""
|
|
|
|
Mixin for integration tests. All the tests here should use self.app
|
|
|
|
object and when need qubes.xml path - should use :py:data:`XMLPATH`
|
|
|
|
defined in this file.
|
2017-07-12 19:01:15 +02:00
|
|
|
Every VM created by test, must use :py:meth:`SystemTestCase.make_vm_name`
|
2016-02-10 17:16:06 +01:00
|
|
|
for VM name.
|
|
|
|
By default self.app represents empty collection, if anything is needed
|
|
|
|
there from the real collection it can be imported from self.host_app in
|
2017-07-12 19:01:15 +02:00
|
|
|
:py:meth:`SystemTestCase.setUp`. But *can not be modified* in any way -
|
2016-02-10 17:16:06 +01:00
|
|
|
this include both changing attributes in
|
2017-07-12 19:01:15 +02:00
|
|
|
:py:attr:`SystemTestCase.host_app` and modifying files of such imported
|
2016-02-10 17:16:06 +01:00
|
|
|
VM. If test need to make some modification, it must clone the VM first.
|
|
|
|
|
|
|
|
If some group of tests needs class-wide initialization, first of all the
|
|
|
|
author should consider if it is really needed. But if so, setUpClass can
|
|
|
|
be used to create Qubes(CLASS_XMLPATH) object and create/import required
|
|
|
|
stuff there. VMs created in :py:meth:`TestCase.setUpClass` should
|
|
|
|
use self.make_vm_name('...', class_teardown=True) for name creation.
|
|
|
|
"""
|
|
|
|
# noinspection PyAttributeOutsideInit
|
2015-10-17 00:10:15 +02:00
|
|
|
def setUp(self):
|
2016-02-10 19:45:44 +01:00
|
|
|
if not in_dom0:
|
|
|
|
self.skipTest('outside dom0')
|
2017-07-12 19:01:15 +02:00
|
|
|
super(SystemTestCase, self).setUp()
|
2015-10-17 00:10:15 +02:00
|
|
|
self.remove_test_vms()
|
|
|
|
|
2016-02-10 17:11:50 +01:00
|
|
|
# need some information from the real qubes.xml - at least installed
|
|
|
|
# templates; should not be used for testing, only to initialize self.app
|
2016-02-10 19:30:55 +01:00
|
|
|
self.host_app = qubes.Qubes(os.path.join(
|
2017-07-01 23:25:47 +02:00
|
|
|
qubes.config.qubes_base_dir,
|
2016-02-10 19:30:55 +01:00
|
|
|
qubes.config.system_path['qubes_store_filename']))
|
2016-02-10 17:16:06 +01:00
|
|
|
if os.path.exists(CLASS_XMLPATH):
|
|
|
|
shutil.copy(CLASS_XMLPATH, XMLPATH)
|
|
|
|
else:
|
2017-06-20 16:15:16 +02:00
|
|
|
shutil.copy(self.host_app.store, XMLPATH)
|
|
|
|
self.app = qubes.Qubes(XMLPATH)
|
2016-02-10 19:30:55 +01:00
|
|
|
os.environ['QUBES_XML_PATH'] = XMLPATH
|
2016-02-10 17:11:50 +01:00
|
|
|
|
2017-06-06 15:49:19 +02:00
|
|
|
self.qubesd = self.loop.run_until_complete(
|
|
|
|
qubes.api.create_servers(
|
|
|
|
qubes.api.admin.QubesAdminAPI,
|
2017-06-05 19:00:18 +02:00
|
|
|
qubes.api.internal.QubesInternalAPI,
|
2017-06-06 15:49:19 +02:00
|
|
|
app=self.app, debug=True))
|
2017-06-05 19:00:18 +02:00
|
|
|
|
2016-02-10 17:11:50 +01:00
|
|
|
def init_default_template(self, template=None):
|
|
|
|
if template is None:
|
|
|
|
template = self.host_app.default_template
|
2017-01-18 22:16:46 +01:00
|
|
|
elif isinstance(template, str):
|
2016-02-11 01:46:25 +01:00
|
|
|
template = self.host_app.domains[template]
|
2016-02-10 17:11:50 +01:00
|
|
|
|
2017-06-20 16:15:16 +02:00
|
|
|
self.app.default_template = str(template)
|
2016-02-10 17:11:50 +01:00
|
|
|
|
2016-03-07 01:19:10 +01:00
|
|
|
def init_networking(self):
|
|
|
|
if not self.app.default_template:
|
|
|
|
self.skipTest('Default template required for testing networking')
|
|
|
|
default_netvm = self.host_app.default_netvm
|
2016-08-08 00:11:46 +02:00
|
|
|
# if testing Whonix Workstation based VMs, try to use sys-whonix instead
|
|
|
|
if self.app.default_template.name.startswith('whonix-ws'):
|
|
|
|
if 'sys-whonix' in self.host_app.domains:
|
|
|
|
default_netvm = self.host_app.domains['sys-whonix']
|
2016-03-07 01:19:10 +01:00
|
|
|
if default_netvm is None:
|
|
|
|
self.skipTest('Default netvm required')
|
|
|
|
if not default_netvm.is_running():
|
2016-08-08 00:11:46 +02:00
|
|
|
self.skipTest('VM {} required to be running'.format(
|
|
|
|
default_netvm.name))
|
2017-06-20 16:15:16 +02:00
|
|
|
|
|
|
|
self.app.default_netvm = str(default_netvm)
|
2016-03-07 01:19:10 +01:00
|
|
|
|
2016-10-19 01:58:43 +02:00
|
|
|
|
|
|
|
def _find_pool(self, volume_group, thin_pool):
|
|
|
|
''' Returns the pool matching the specified ``volume_group`` &
|
|
|
|
``thin_pool``, or None.
|
|
|
|
'''
|
|
|
|
pools = [p for p in self.app.pools
|
|
|
|
if issubclass(p.__class__, qubes.storage.lvm.ThinPool)]
|
|
|
|
for pool in pools:
|
|
|
|
if pool.volume_group == volume_group \
|
|
|
|
and pool.thin_pool == thin_pool:
|
|
|
|
return pool
|
|
|
|
return None
|
|
|
|
|
|
|
|
def init_lvm_pool(self):
|
|
|
|
volume_group, thin_pool = DEFAULT_LVM_POOL.split('/', 1)
|
|
|
|
path = "/dev/mapper/{!s}-{!s}".format(volume_group, thin_pool)
|
|
|
|
if not os.path.exists(path):
|
|
|
|
self.skipTest('LVM thin pool {!r} does not exist'.
|
|
|
|
format(DEFAULT_LVM_POOL))
|
|
|
|
self.pool = self._find_pool(volume_group, thin_pool)
|
|
|
|
if not self.pool:
|
|
|
|
self.pool = self.app.add_pool(**POOL_CONF)
|
|
|
|
self.created_pool = True
|
|
|
|
|
2015-12-29 16:49:17 +01:00
|
|
|
def tearDown(self):
|
2017-06-20 16:15:41 +02:00
|
|
|
self.remove_test_vms()
|
|
|
|
|
2017-06-06 15:49:19 +02:00
|
|
|
# close the servers before super(), because that might close the loop
|
|
|
|
for server in self.qubesd:
|
|
|
|
for sock in server.sockets:
|
|
|
|
os.unlink(sock.getsockname())
|
|
|
|
server.close()
|
2017-07-12 19:01:15 +02:00
|
|
|
|
2017-06-06 15:49:19 +02:00
|
|
|
self.loop.run_until_complete(asyncio.wait([
|
|
|
|
server.wait_closed() for server in self.qubesd]))
|
2017-06-05 19:00:18 +02:00
|
|
|
|
2017-07-12 19:01:15 +02:00
|
|
|
super(SystemTestCase, self).tearDown()
|
2016-02-10 17:14:47 +01:00
|
|
|
# remove all references to VM objects, to release resources - most
|
|
|
|
# importantly file descriptors; this object will live
|
|
|
|
# during the whole test run, but all the file descriptors would be
|
|
|
|
# depleted earlier
|
|
|
|
del self.app
|
|
|
|
del self.host_app
|
|
|
|
for attr in dir(self):
|
|
|
|
if isinstance(getattr(self, attr), qubes.vm.BaseVM):
|
|
|
|
delattr(self, attr)
|
2015-10-17 00:10:15 +02:00
|
|
|
|
2016-02-10 17:16:06 +01:00
|
|
|
@classmethod
|
|
|
|
def tearDownClass(cls):
|
2017-07-12 19:01:15 +02:00
|
|
|
super(SystemTestCase, cls).tearDownClass()
|
2016-02-10 19:45:44 +01:00
|
|
|
if not in_dom0:
|
|
|
|
return
|
2016-02-10 17:16:06 +01:00
|
|
|
cls.remove_test_vms(xmlpath=CLASS_XMLPATH, prefix=CLSVMPREFIX)
|
|
|
|
|
|
|
|
@classmethod
|
|
|
|
def _remove_vm_qubes(cls, vm):
|
2015-10-17 00:10:15 +02:00
|
|
|
vmname = vm.name
|
2015-10-27 11:39:59 +01:00
|
|
|
app = vm.app
|
2015-10-17 00:10:15 +02:00
|
|
|
|
|
|
|
try:
|
|
|
|
# XXX .is_running() may throw libvirtError if undefined
|
|
|
|
if vm.is_running():
|
2017-05-29 16:42:40 +02:00
|
|
|
vm.kill()
|
2015-10-17 00:10:15 +02:00
|
|
|
except: # pylint: disable=bare-except
|
|
|
|
pass
|
|
|
|
|
|
|
|
try:
|
|
|
|
vm.remove_from_disk()
|
2017-07-12 10:41:22 +02:00
|
|
|
except: # pylint: disable=bare-except
|
2015-10-17 00:10:15 +02:00
|
|
|
pass
|
|
|
|
|
2016-03-10 11:22:52 +01:00
|
|
|
del app.domains[vm.qid]
|
2015-10-17 00:10:15 +02:00
|
|
|
del vm
|
|
|
|
|
2015-10-27 11:39:59 +01:00
|
|
|
app.save()
|
|
|
|
del app
|
|
|
|
|
2015-10-17 00:10:15 +02:00
|
|
|
# Now ensure it really went away. This may not have happened,
|
|
|
|
# for example if vm.libvirt_domain malfunctioned.
|
|
|
|
try:
|
2015-10-27 11:39:59 +01:00
|
|
|
conn = libvirt.open(qubes.config.defaults['libvirt_uri'])
|
|
|
|
dom = conn.lookupByName(vmname)
|
2017-07-12 10:41:22 +02:00
|
|
|
except: # pylint: disable=bare-except
|
2015-10-17 00:10:15 +02:00
|
|
|
pass
|
|
|
|
else:
|
2016-02-10 17:16:06 +01:00
|
|
|
cls._remove_vm_libvirt(dom)
|
2017-07-12 10:41:22 +02:00
|
|
|
conn.close()
|
2015-10-17 00:10:15 +02:00
|
|
|
|
2016-02-10 17:16:06 +01:00
|
|
|
cls._remove_vm_disk(vmname)
|
2015-10-17 00:10:15 +02:00
|
|
|
|
|
|
|
|
|
|
|
@staticmethod
|
|
|
|
def _remove_vm_libvirt(dom):
|
|
|
|
try:
|
|
|
|
dom.destroy()
|
|
|
|
except libvirt.libvirtError: # not running
|
|
|
|
pass
|
|
|
|
dom.undefine()
|
|
|
|
|
|
|
|
|
|
|
|
@staticmethod
|
|
|
|
def _remove_vm_disk(vmname):
|
|
|
|
for dirspec in (
|
|
|
|
'qubes_appvms_dir',
|
|
|
|
'qubes_servicevms_dir',
|
|
|
|
'qubes_templates_dir'):
|
2017-07-01 23:25:47 +02:00
|
|
|
dirpath = os.path.join(qubes.config.qubes_base_dir,
|
2015-10-17 00:10:15 +02:00
|
|
|
qubes.config.system_path[dirspec], vmname)
|
|
|
|
if os.path.exists(dirpath):
|
|
|
|
if os.path.isdir(dirpath):
|
|
|
|
shutil.rmtree(dirpath)
|
|
|
|
else:
|
|
|
|
os.unlink(dirpath)
|
|
|
|
|
2016-09-29 01:57:37 +02:00
|
|
|
@staticmethod
|
|
|
|
def _remove_vm_disk_lvm(prefix=VMPREFIX):
|
|
|
|
''' Remove LVM volumes with given prefix
|
|
|
|
|
|
|
|
This is "a bit" drastic, as it removes volumes regardless of volume
|
|
|
|
group, thin pool etc. But we assume no important data on test system.
|
|
|
|
'''
|
|
|
|
try:
|
|
|
|
volumes = subprocess.check_output(
|
|
|
|
['sudo', 'lvs', '--noheadings', '-o', 'vg_name,name',
|
2017-01-26 18:26:06 +01:00
|
|
|
'--separator', '/']).decode()
|
2016-09-29 01:57:37 +02:00
|
|
|
if ('/' + prefix) not in volumes:
|
|
|
|
return
|
|
|
|
subprocess.check_call(['sudo', 'lvremove', '-f'] +
|
|
|
|
[vol.strip() for vol in volumes.splitlines()
|
|
|
|
if ('/' + prefix) in vol],
|
2017-07-12 10:41:22 +02:00
|
|
|
stdout=subprocess.DEVNULL)
|
2016-09-29 01:57:37 +02:00
|
|
|
except subprocess.CalledProcessError:
|
|
|
|
pass
|
2015-10-17 00:10:15 +02:00
|
|
|
|
2016-02-10 17:16:06 +01:00
|
|
|
@classmethod
|
|
|
|
def remove_vms(cls, vms):
|
2015-10-17 00:10:15 +02:00
|
|
|
for vm in vms:
|
2016-02-10 17:16:06 +01:00
|
|
|
cls._remove_vm_qubes(vm)
|
2015-10-17 00:10:15 +02:00
|
|
|
|
|
|
|
|
2016-02-10 17:16:06 +01:00
|
|
|
@classmethod
|
|
|
|
def remove_test_vms(cls, xmlpath=XMLPATH, prefix=VMPREFIX):
|
2015-10-17 00:10:15 +02:00
|
|
|
'''Aggresively remove any domain that has name in testing namespace.
|
|
|
|
'''
|
|
|
|
|
|
|
|
# first, remove them Qubes-way
|
2016-02-10 17:16:06 +01:00
|
|
|
if os.path.exists(xmlpath):
|
2016-02-10 18:16:05 +01:00
|
|
|
try:
|
|
|
|
cls.remove_vms(vm for vm in qubes.Qubes(xmlpath).domains
|
|
|
|
if vm.name.startswith(prefix))
|
2017-02-23 03:07:57 +01:00
|
|
|
except (qubes.exc.QubesException, lxml.etree.XMLSyntaxError):
|
2016-02-10 18:16:05 +01:00
|
|
|
# If qubes-test.xml is broken that much it doesn't even load,
|
|
|
|
# simply remove it. VMs will be cleaned up the hard way.
|
|
|
|
# TODO logging?
|
|
|
|
pass
|
2016-02-10 17:16:06 +01:00
|
|
|
os.unlink(xmlpath)
|
2015-10-17 00:10:15 +02:00
|
|
|
|
|
|
|
# now remove what was only in libvirt
|
2015-10-27 11:39:59 +01:00
|
|
|
conn = libvirt.open(qubes.config.defaults['libvirt_uri'])
|
|
|
|
for dom in conn.listAllDomains():
|
2016-02-10 17:16:06 +01:00
|
|
|
if dom.name().startswith(prefix):
|
|
|
|
cls._remove_vm_libvirt(dom)
|
2016-02-10 17:14:47 +01:00
|
|
|
conn.close()
|
2015-10-17 00:10:15 +02:00
|
|
|
|
|
|
|
# finally remove anything that is left on disk
|
|
|
|
vmnames = set()
|
|
|
|
for dirspec in (
|
|
|
|
'qubes_appvms_dir',
|
|
|
|
'qubes_servicevms_dir',
|
|
|
|
'qubes_templates_dir'):
|
2017-07-01 23:25:47 +02:00
|
|
|
dirpath = os.path.join(qubes.config.qubes_base_dir,
|
2015-10-17 00:10:15 +02:00
|
|
|
qubes.config.system_path[dirspec])
|
|
|
|
for name in os.listdir(dirpath):
|
2016-02-10 17:16:06 +01:00
|
|
|
if name.startswith(prefix):
|
2015-10-17 00:10:15 +02:00
|
|
|
vmnames.add(name)
|
|
|
|
for vmname in vmnames:
|
2016-02-10 17:16:06 +01:00
|
|
|
cls._remove_vm_disk(vmname)
|
2016-09-29 01:57:37 +02:00
|
|
|
cls._remove_vm_disk_lvm(prefix)
|
2015-10-17 00:10:15 +02:00
|
|
|
|
2016-03-03 01:07:23 +01:00
|
|
|
def qrexec_policy(self, service, source, destination, allow=True):
|
|
|
|
"""
|
|
|
|
Allow qrexec calls for duration of the test
|
|
|
|
:param service: service name
|
|
|
|
:param source: source VM name
|
|
|
|
:param destination: destination VM name
|
|
|
|
:return:
|
|
|
|
"""
|
|
|
|
|
2017-04-18 10:16:14 +02:00
|
|
|
return _QrexecPolicyContext(service, source, destination, allow=allow)
|
2016-03-03 01:07:23 +01:00
|
|
|
|
2016-02-10 17:18:27 +01:00
|
|
|
def wait_for_window(self, title, timeout=30, show=True):
|
|
|
|
"""
|
|
|
|
Wait for a window with a given title. Depending on show parameter,
|
|
|
|
it will wait for either window to show or to disappear.
|
|
|
|
|
|
|
|
:param title: title of the window to wait for
|
|
|
|
:param timeout: timeout of the operation, in seconds
|
|
|
|
:param show: if True - wait for the window to be visible,
|
|
|
|
otherwise - to not be visible
|
|
|
|
:return: None
|
|
|
|
"""
|
|
|
|
|
|
|
|
wait_count = 0
|
|
|
|
while subprocess.call(['xdotool', 'search', '--name', title],
|
2017-07-12 10:41:22 +02:00
|
|
|
stdout=subprocess.DEVNULL, stderr=subprocess.STDOUT) \
|
2017-01-18 22:16:46 +01:00
|
|
|
== int(show):
|
2016-02-10 17:18:27 +01:00
|
|
|
wait_count += 1
|
|
|
|
if wait_count > timeout*10:
|
|
|
|
self.fail("Timeout while waiting for {} window to {}".format(
|
|
|
|
title, "show" if show else "hide")
|
|
|
|
)
|
|
|
|
time.sleep(0.1)
|
|
|
|
|
|
|
|
def enter_keys_in_window(self, title, keys):
|
|
|
|
"""
|
|
|
|
Search for window with given title, then enter listed keys there.
|
|
|
|
The function will wait for said window to appear.
|
|
|
|
|
|
|
|
:param title: title of window
|
|
|
|
:param keys: list of keys to enter, as for `xdotool key`
|
|
|
|
:return: None
|
|
|
|
"""
|
|
|
|
|
|
|
|
# 'xdotool search --sync' sometimes crashes on some race when
|
|
|
|
# accessing window properties
|
|
|
|
self.wait_for_window(title)
|
|
|
|
command = ['xdotool', 'search', '--name', title,
|
2016-06-29 23:50:52 +02:00
|
|
|
'windowactivate', '--sync',
|
2016-02-10 17:18:27 +01:00
|
|
|
'key'] + keys
|
|
|
|
subprocess.check_call(command)
|
|
|
|
|
|
|
|
def shutdown_and_wait(self, vm, timeout=60):
|
|
|
|
vm.shutdown()
|
|
|
|
while timeout > 0:
|
|
|
|
if not vm.is_running():
|
|
|
|
return
|
|
|
|
time.sleep(1)
|
|
|
|
timeout -= 1
|
|
|
|
self.fail("Timeout while waiting for VM {} shutdown".format(vm.name))
|
|
|
|
|
2016-02-26 10:59:20 +01:00
|
|
|
def prepare_hvm_system_linux(self, vm, init_script, extra_files=None):
|
|
|
|
if not os.path.exists('/usr/lib/grub/i386-pc'):
|
|
|
|
self.skipTest('grub2 not installed')
|
|
|
|
if not spawn.find_executable('grub2-install'):
|
|
|
|
self.skipTest('grub2-tools not installed')
|
|
|
|
if not spawn.find_executable('dracut'):
|
|
|
|
self.skipTest('dracut not installed')
|
|
|
|
# create a single partition
|
|
|
|
p = subprocess.Popen(['sfdisk', '-q', '-L', vm.storage.root_img],
|
|
|
|
stdin=subprocess.PIPE,
|
2017-07-12 10:41:22 +02:00
|
|
|
stdout=subprocess.DEVNULL,
|
2016-02-26 10:59:20 +01:00
|
|
|
stderr=subprocess.STDOUT)
|
|
|
|
p.communicate('2048,\n')
|
|
|
|
assert p.returncode == 0, 'sfdisk failed'
|
|
|
|
# TODO: check if root_img is really file, not already block device
|
|
|
|
p = subprocess.Popen(['sudo', 'losetup', '-f', '-P', '--show',
|
|
|
|
vm.storage.root_img], stdout=subprocess.PIPE)
|
|
|
|
(loopdev, _) = p.communicate()
|
|
|
|
loopdev = loopdev.strip()
|
|
|
|
looppart = loopdev + 'p1'
|
|
|
|
assert p.returncode == 0, 'losetup failed'
|
|
|
|
subprocess.check_call(['sudo', 'mkfs.ext2', '-q', '-F', looppart])
|
|
|
|
mountpoint = tempfile.mkdtemp()
|
|
|
|
subprocess.check_call(['sudo', 'mount', looppart, mountpoint])
|
|
|
|
try:
|
|
|
|
subprocess.check_call(['sudo', 'grub2-install',
|
|
|
|
'--target', 'i386-pc',
|
|
|
|
'--modules', 'part_msdos ext2',
|
|
|
|
'--boot-directory', mountpoint, loopdev],
|
2017-07-12 10:41:22 +02:00
|
|
|
stderr=subprocess.DEVNULL
|
2016-02-26 10:59:20 +01:00
|
|
|
)
|
|
|
|
grub_cfg = '{}/grub2/grub.cfg'.format(mountpoint)
|
|
|
|
subprocess.check_call(
|
|
|
|
['sudo', 'chown', '-R', os.getlogin(), mountpoint])
|
|
|
|
with open(grub_cfg, 'w') as f:
|
|
|
|
f.write(
|
|
|
|
"set timeout=1\n"
|
|
|
|
"menuentry 'Default' {\n"
|
|
|
|
" linux /vmlinuz root=/dev/xvda1 "
|
|
|
|
"rd.driver.blacklist=bochs_drm "
|
2016-11-30 03:07:39 +01:00
|
|
|
"rd.driver.blacklist=uhci_hcd console=hvc0\n"
|
2016-02-26 10:59:20 +01:00
|
|
|
" initrd /initrd\n"
|
|
|
|
"}"
|
|
|
|
)
|
|
|
|
p = subprocess.Popen(['uname', '-r'], stdout=subprocess.PIPE)
|
|
|
|
(kernel_version, _) = p.communicate()
|
|
|
|
kernel_version = kernel_version.strip()
|
|
|
|
kernel = '/boot/vmlinuz-{}'.format(kernel_version)
|
|
|
|
shutil.copy(kernel, os.path.join(mountpoint, 'vmlinuz'))
|
|
|
|
init_path = os.path.join(mountpoint, 'init')
|
|
|
|
with open(init_path, 'w') as f:
|
|
|
|
f.write(init_script)
|
2017-01-18 22:16:46 +01:00
|
|
|
os.chmod(init_path, 0o755)
|
2016-02-26 10:59:20 +01:00
|
|
|
dracut_args = [
|
|
|
|
'--kver', kernel_version,
|
|
|
|
'--include', init_path,
|
|
|
|
'/usr/lib/dracut/hooks/pre-pivot/initscript.sh',
|
|
|
|
'--no-hostonly', '--nolvmconf', '--nomdadmconf',
|
|
|
|
]
|
|
|
|
if extra_files:
|
|
|
|
dracut_args += ['--install', ' '.join(extra_files)]
|
|
|
|
subprocess.check_call(
|
|
|
|
['dracut'] + dracut_args + [os.path.join(mountpoint,
|
|
|
|
'initrd')],
|
2017-07-12 10:41:22 +02:00
|
|
|
stderr=subprocess.DEVNULL
|
2016-02-26 10:59:20 +01:00
|
|
|
)
|
|
|
|
finally:
|
|
|
|
subprocess.check_call(['sudo', 'umount', mountpoint])
|
|
|
|
shutil.rmtree(mountpoint)
|
|
|
|
subprocess.check_call(['sudo', 'losetup', '-d', loopdev])
|
2016-02-10 17:18:27 +01:00
|
|
|
|
2017-06-20 16:14:16 +02:00
|
|
|
def create_local_file(self, filename, content, mode='w'):
|
|
|
|
with open(filename, mode) as file:
|
|
|
|
file.write(content)
|
|
|
|
self.addCleanup(os.unlink, filename)
|
|
|
|
|
|
|
|
def create_remote_file(self, vm, filename, content):
|
|
|
|
self.loop.run_until_complete(vm.run_for_stdio(
|
|
|
|
'cat > {}'.format(shlex.quote(filename)),
|
|
|
|
user='root', input=content.encode('utf-8')))
|
|
|
|
|
2017-06-21 04:45:46 +02:00
|
|
|
@asyncio.coroutine
|
|
|
|
def wait_for_session(self, vm):
|
|
|
|
yield from asyncio.wait_for(
|
|
|
|
vm.run_service_for_stdio(
|
|
|
|
'qubes.WaitForSession', input=vm.default_user.encode()),
|
|
|
|
timeout=30)
|
|
|
|
|
2015-10-17 00:10:15 +02:00
|
|
|
|
|
|
|
def load_tests(loader, tests, pattern): # pylint: disable=unused-argument
|
|
|
|
# discard any tests from this module, because it hosts base classes
|
|
|
|
tests = unittest.TestSuite()
|
|
|
|
|
|
|
|
for modname in (
|
|
|
|
# unit tests
|
|
|
|
'qubes.tests.events',
|
2016-03-09 14:20:32 +01:00
|
|
|
'qubes.tests.devices',
|
2017-05-29 21:20:06 +02:00
|
|
|
'qubes.tests.devices_block',
|
2016-09-08 04:10:02 +02:00
|
|
|
'qubes.tests.firewall',
|
2016-04-28 16:00:29 +02:00
|
|
|
'qubes.tests.init',
|
2015-10-17 00:10:15 +02:00
|
|
|
'qubes.tests.vm.init',
|
2016-02-11 05:45:17 +01:00
|
|
|
'qubes.tests.storage',
|
2016-04-30 20:42:46 +02:00
|
|
|
'qubes.tests.storage_file',
|
2016-07-12 18:43:28 +02:00
|
|
|
'qubes.tests.storage_lvm',
|
2017-05-17 01:40:10 +02:00
|
|
|
'qubes.tests.storage_kernels',
|
2017-06-12 12:22:39 +02:00
|
|
|
'qubes.tests.ext',
|
2015-10-17 00:10:15 +02:00
|
|
|
'qubes.tests.vm.qubesvm',
|
2016-04-20 13:41:33 +02:00
|
|
|
'qubes.tests.vm.mix.net',
|
2015-10-17 00:10:15 +02:00
|
|
|
'qubes.tests.vm.adminvm',
|
2017-06-04 01:13:57 +02:00
|
|
|
'qubes.tests.vm.appvm',
|
2016-04-28 16:00:29 +02:00
|
|
|
'qubes.tests.app',
|
2016-10-04 21:54:29 +02:00
|
|
|
'qubes.tests.tarwriter',
|
2017-06-21 06:25:59 +02:00
|
|
|
'qubes.tests.api',
|
2017-05-12 19:07:41 +02:00
|
|
|
'qubes.tests.api_admin',
|
2017-06-03 04:52:30 +02:00
|
|
|
'qubes.tests.api_misc',
|
2017-03-20 22:54:03 +01:00
|
|
|
'qubespolicy.tests',
|
2016-03-04 13:03:43 +01:00
|
|
|
):
|
|
|
|
tests.addTests(loader.loadTestsFromName(modname))
|
2015-10-17 00:10:15 +02:00
|
|
|
|
2017-04-07 12:29:32 +02:00
|
|
|
# GTK/Glib is way too old there
|
|
|
|
if 'TRAVIS' not in os.environ:
|
|
|
|
for modname in (
|
|
|
|
'qubespolicy.tests.gtkhelpers',
|
|
|
|
'qubespolicy.tests.rpcconfirmation',
|
|
|
|
):
|
|
|
|
tests.addTests(loader.loadTestsFromName(modname))
|
|
|
|
|
2016-03-04 13:03:43 +01:00
|
|
|
tests.addTests(loader.discover(
|
|
|
|
os.path.join(os.path.dirname(__file__), 'tools')))
|
|
|
|
|
2016-06-02 22:02:06 +02:00
|
|
|
if not in_dom0:
|
|
|
|
return tests
|
|
|
|
|
2016-03-04 13:03:43 +01:00
|
|
|
for modname in (
|
2015-10-17 00:10:15 +02:00
|
|
|
# integration tests
|
2017-01-18 22:16:46 +01:00
|
|
|
'qubes.tests.integ.basic',
|
|
|
|
'qubes.tests.integ.storage',
|
|
|
|
'qubes.tests.integ.devices_pci',
|
|
|
|
'qubes.tests.integ.dom0_update',
|
|
|
|
'qubes.tests.integ.network',
|
|
|
|
'qubes.tests.integ.dispvm',
|
|
|
|
'qubes.tests.integ.vm_qrexec_gui',
|
|
|
|
'qubes.tests.integ.backup',
|
|
|
|
'qubes.tests.integ.backupcompatibility',
|
2015-10-17 00:10:15 +02:00
|
|
|
# 'qubes.tests.regressions',
|
2015-10-27 11:39:59 +01:00
|
|
|
|
2016-04-20 02:26:16 +02:00
|
|
|
# external modules
|
2016-10-18 13:10:06 +02:00
|
|
|
# 'qubes.tests.extra',
|
2015-10-17 00:10:15 +02:00
|
|
|
):
|
|
|
|
tests.addTests(loader.loadTestsFromName(modname))
|
|
|
|
|
|
|
|
return tests
|