mirror of
https://github.com/virt-manager/virt-manager.git
synced 2025-01-11 05:17:59 +03:00
4f59c24b40
This is a standalone test like test_urls, and requires interraction. It pulls down a bunch of kernels from public URL trees, inject known kickstarts that induce quick failure. User inspects the output to ensure initrd inject is working as expected.
77 lines
2.2 KiB
Python
77 lines
2.2 KiB
Python
#
|
|
# 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.
|
|
|
|
import atexit
|
|
import imp
|
|
import logging
|
|
import os
|
|
|
|
os.environ["VIRTINST_TEST_TRACKPROPS"] = "1"
|
|
|
|
import virtinst
|
|
virtinst.enable_rhel_defaults = False
|
|
|
|
from virtcli import cliconfig
|
|
cliconfig.default_graphics = "vnc"
|
|
|
|
from tests import utils
|
|
|
|
# pylint: disable=W0212
|
|
# Access to protected member, needed to unittest stuff
|
|
|
|
# Force certain helpers to return consistent values
|
|
virtinst.util.is_blktap_capable = lambda ignore: False
|
|
virtinst.util.default_bridge = lambda ignore1: ["bridge", "eth0"]
|
|
|
|
# Setup logging
|
|
rootLogger = logging.getLogger()
|
|
for handler in rootLogger.handlers:
|
|
rootLogger.removeHandler(handler)
|
|
|
|
logging.basicConfig(level=logging.DEBUG,
|
|
format="%(levelname)-8s %(message)s")
|
|
|
|
if utils.get_debug():
|
|
rootLogger.setLevel(logging.DEBUG)
|
|
else:
|
|
rootLogger.setLevel(logging.ERROR)
|
|
|
|
_cleanup_imports = []
|
|
|
|
|
|
def _import(name, path):
|
|
_cleanup_imports.append(path + "c")
|
|
return imp.load_source(name, path)
|
|
|
|
|
|
def _cleanup_imports_cb():
|
|
for f in _cleanup_imports:
|
|
if os.path.exists(f):
|
|
os.unlink(f)
|
|
|
|
atexit.register(_cleanup_imports_cb)
|
|
virtinstall = _import("virtinstall", "virt-install")
|
|
virtimage = _import("virtimage", "virt-image")
|
|
virtclone = _import("virtclone", "virt-clone")
|
|
virtconvert = _import("virtconvert", "virt-convert")
|
|
|
|
# Variable used to store a local iso or dir path to check for a distro
|
|
# Specified via 'python setup.py test_urls --path"
|
|
URLTEST_LOCAL_MEDIA = []
|
|
|
|
# Used to implement test_initrd_inject --distro
|
|
INITRD_TEST_DISTROS = []
|