Ejemplo n.º 1
0
 def __init__(self):
     self._vbox_manage = manage.VBoxManage()
     self._ext_packs = []
     self._ports = {
         'available': [],
         'free': [],
         'used': {},
         'unique': CONF.virtualbox.vrde_unique_port
     }
     self._lock = threading.Lock()
     self._remote_display = CONF.virtualbox.remote_display
     self._vrde_module = CONF.virtualbox.vrde_module
     self._load()
Ejemplo n.º 2
0
    def setUp(self):
        super(VBoxManageTestCase, self).setUp()
        instance_values = {
            'name': 'fake_name',
            'uuid': 'fake_uuid',
        }

        self.flags(retry_count=self._RETRY_COUNT, group="virtualbox")
        self.flags(retry_interval=0, group="virtualbox")
        self._context = 'fake-context'
        self._instance = fake_instance.fake_instance_obj(
            self._context, **instance_values)
        self._vbox_manage = manage.VBoxManage()
Ejemplo n.º 3
0
 def __init__(self):
     self._vbox_manage = manage.VBoxManage()
     self._volume = volumeops.VolumeOperations()
Ejemplo n.º 4
0
 def __init__(self):
     self._vbox_manage = manage.VBoxManage()
Ejemplo n.º 5
0
 def __init__(self):
     self._vbox_manage = manage.VBoxManage()
     self._vbox_ops = vmops.VBoxOperation()