2013-03-18 01:06:52 +04:00
#
# 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.
2013-08-06 22:58:43 +04:00
import atexit
import imp
2013-03-18 01:06:52 +04:00
import logging
import os
2013-03-18 02:18:22 +04:00
2013-07-12 23:16:29 +04:00
os . environ [ " VIRTINST_TEST_TRACKPROPS " ] = " 1 "
2013-03-18 01:06:52 +04:00
import virtinst
2013-07-14 03:38:38 +04:00
virtinst . enable_rhel_defaults = False
2013-07-17 10:14:34 +04:00
from virtcli import cliconfig
cliconfig . default_graphics = " vnc "
2013-03-18 02:18:22 +04:00
from tests import utils
2013-03-18 01:06:52 +04:00
2013-04-12 00:32:00 +04:00
# pylint: disable=W0212
# Access to protected member, needed to unittest stuff
2013-03-18 01:06:52 +04:00
# Force certain helpers to return consistent values
2013-07-06 20:44:53 +04:00
virtinst . util . is_blktap_capable = lambda ignore : False
2013-04-11 19:14:13 +04:00
virtinst . util . default_bridge = lambda ignore1 : [ " bridge " , " eth0 " ]
2013-03-18 01:06:52 +04:00
# 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 )
2013-08-06 22:58:43 +04:00
_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 " )
2013-09-27 02:32:50 +04:00
# 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 = [ ]
2013-09-28 22:42:37 +04:00
# Used to implement test_initrd_inject --distro
INITRD_TEST_DISTROS = [ ]