123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645 |
- # -*- encoding: utf-8 -*-
- #
- # The Qubes OS Project, http://www.qubes-os.org
- #
- # Copyright (C) 2017 Marek Marczykowski-Górecki
- # <marmarek@invisiblethingslab.com>
- #
- # This program 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 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 Lesser General Public License for more details.
- #
- # You should have received a copy of the GNU Lesser General Public License along
- # with this program; if not, see <http://www.gnu.org/licenses/>.
- import io
- import os
- import unittest.mock
- import subprocess
- import sys
- import qubesadmin.tests
- import qubesadmin.tools.qvm_run
- class TC_00_qvm_run(qubesadmin.tests.QubesTestCase):
- def setUp(self):
- if sys.stdout is not sys.__stdout__ or \
- sys.stderr is not sys.__stderr__:
- self.skipTest('qvm-run change behavior on redirected stdout/stderr')
- super(TC_00_qvm_run, self).setUp()
- def default_filter_esc(self):
- return os.isatty(sys.stdout.fileno())
- def test_000_run_single(self):
- self.app.expected_calls[
- ('dom0', 'admin.vm.List', None, None)] = \
- b'0\x00test-vm class=AppVM state=Running\n'
- self.app.expected_calls[
- ('test-vm', 'admin.vm.feature.CheckWithTemplate', 'os', None)] = \
- b'2\x00QubesFeatureNotFoundError\x00\x00Feature \'os\' not set\x00'
- self.app.expected_calls[
- ('test-vm', 'admin.vm.CurrentState', None, None)] = \
- b'0\x00power_state=Running'
- ret = qubesadmin.tools.qvm_run.main(
- ['--no-gui', 'test-vm', 'command'],
- app=self.app)
- self.assertEqual(ret, 0)
- self.assertEqual(self.app.service_calls, [
- ('test-vm', 'qubes.VMShell', {
- 'stdout': subprocess.DEVNULL,
- 'stderr': subprocess.DEVNULL,
- 'user': None,
- }),
- ('test-vm', 'qubes.VMShell', b'command; exit\n')
- ])
- self.assertAllCalled()
- def test_001_run_multiple(self):
- self.app.expected_calls[
- ('dom0', 'admin.vm.List', None, None)] = \
- b'0\x00test-vm class=AppVM state=Running\n' \
- b'test-vm2 class=AppVM state=Running\n' \
- b'test-vm3 class=AppVM state=Halted\n'
- self.app.expected_calls[
- ('test-vm', 'admin.vm.CurrentState', None, None)] = \
- b'0\x00power_state=Running'
- self.app.expected_calls[
- ('test-vm2', 'admin.vm.CurrentState', None, None)] = \
- b'0\x00power_state=Running'
- self.app.expected_calls[
- ('test-vm3', 'admin.vm.CurrentState', None, None)] = \
- b'0\x00power_state=Halted'
- self.app.expected_calls[
- ('test-vm', 'admin.vm.feature.CheckWithTemplate', 'os', None)] = \
- b'2\x00QubesFeatureNotFoundError\x00\x00Feature \'os\' not set\x00'
- self.app.expected_calls[
- ('test-vm2', 'admin.vm.feature.CheckWithTemplate', 'os', None)] = \
- b'2\x00QubesFeatureNotFoundError\x00\x00Feature \'os\' not set\x00'
- ret = qubesadmin.tools.qvm_run.main(
- ['--no-gui', '--all', 'command'],
- app=self.app)
- self.assertEqual(ret, 0)
- self.assertEqual(self.app.service_calls, [
- ('test-vm', 'qubes.VMShell', {
- 'stdout': subprocess.DEVNULL,
- 'stderr': subprocess.DEVNULL,
- 'user': None,
- }),
- ('test-vm', 'qubes.VMShell', b'command; exit\n'),
- ('test-vm2', 'qubes.VMShell', {
- 'stdout': subprocess.DEVNULL,
- 'stderr': subprocess.DEVNULL,
- 'user': None,
- }),
- ('test-vm2', 'qubes.VMShell', b'command; exit\n')
- ])
- self.assertAllCalled()
- def test_002_passio(self):
- self.app.expected_calls[
- ('dom0', 'admin.vm.List', None, None)] = \
- b'0\x00test-vm class=AppVM state=Running\n'
- self.app.expected_calls[
- ('test-vm', 'admin.vm.feature.CheckWithTemplate', 'os', None)] = \
- b'2\x00QubesFeatureNotFoundError\x00\x00Feature \'os\' not set\x00'
- self.app.expected_calls[
- ('test-vm', 'admin.vm.CurrentState', None, None)] = \
- b'0\x00power_state=Running'
- # self.app.expected_calls[
- # ('test-vm', 'admin.vm.List', None, None)] = \
- # b'0\x00test-vm class=AppVM state=Running\n'
- echo = subprocess.Popen(['echo', 'some-data'], stdout=subprocess.PIPE)
- with unittest.mock.patch('sys.stdin', echo.stdout):
- ret = qubesadmin.tools.qvm_run.main(
- ['--no-gui', '--pass-io', '--filter-escape-chars',
- 'test-vm', 'command'],
- app=self.app)
- echo.stdout.close()
- echo.wait()
- self.assertEqual(ret, 0)
- self.assertEqual(self.app.service_calls, [
- ('test-vm', 'qubes.VMShell', {
- 'filter_esc': True,
- 'stdout': None,
- 'stderr': None,
- 'user': None,
- }),
- # TODO: find a way to compare b'some-data\n' sent from another
- # proces
- ('test-vm', 'qubes.VMShell', b'command; exit\n')
- ])
- self.assertAllCalled()
- def test_002_passio_service(self):
- self.app.expected_calls[
- ('dom0', 'admin.vm.List', None, None)] = \
- b'0\x00test-vm class=AppVM state=Running\n'
- self.app.expected_calls[
- ('test-vm', 'admin.vm.CurrentState', None, None)] = \
- b'0\x00power_state=Running'
- echo = subprocess.Popen(['echo', 'some-data'], stdout=subprocess.PIPE)
- with unittest.mock.patch('sys.stdin', echo.stdout):
- ret = qubesadmin.tools.qvm_run.main(
- ['--no-gui', '--service', '--pass-io', '--filter-escape-chars',
- 'test-vm', 'test.service'],
- app=self.app)
- echo.stdout.close()
- echo.wait()
- self.assertEqual(ret, 0)
- self.assertEqual(self.app.service_calls, [
- ('test-vm', 'test.service', {
- 'filter_esc': True,
- 'stdout': None,
- 'stderr': None,
- 'user': None,
- }),
- # TODO: find a way to compare b'some-data\n' sent from another
- # proces
- ('test-vm', 'test.service', b'')
- ])
- self.assertAllCalled()
- @unittest.expectedFailure
- def test_002_color_output(self):
- self.app.expected_calls[
- ('dom0', 'admin.vm.List', None, None)] = \
- b'0\x00test-vm class=AppVM state=Running\n'
- self.app.expected_calls[
- ('test-vm', 'admin.vm.feature.CheckWithTemplate', 'os', None)] = \
- b'2\x00QubesFeatureNotFoundError\x00\x00Feature \'os\' not set\x00'
- # self.app.expected_calls[
- # ('test-vm', 'admin.vm.List', None, None)] = \
- # b'0\x00test-vm class=AppVM state=Running\n'
- stdout = io.StringIO()
- echo = subprocess.Popen(['echo', 'some-data'], stdout=subprocess.PIPE)
- with unittest.mock.patch('sys.stdin', echo.stdout):
- with unittest.mock.patch('sys.stdout', stdout):
- ret = qubesadmin.tools.qvm_run.main(
- ['--no-gui', '--filter-esc', '--pass-io', 'test-vm',
- 'command'],
- app=self.app)
- echo.stdout.close()
- echo.wait()
- self.assertEqual(ret, 0)
- self.assertEqual(self.app.service_calls, [
- ('test-vm', 'qubes.VMShell', {
- 'filter_esc': True,
- 'stdout': None,
- 'stderr': None,
- 'user': None,
- }),
- ('test-vm', 'qubes.VMShell', b'command; exit\nsome-data\n')
- ])
- self.assertEqual(stdout.getvalue(), '\033[0;31m\033[0m')
- stdout.close()
- self.assertAllCalled()
- @unittest.expectedFailure
- def test_003_no_color_output(self):
- self.app.expected_calls[
- ('dom0', 'admin.vm.List', None, None)] = \
- b'0\x00test-vm class=AppVM state=Running\n'
- # self.app.expected_calls[
- # ('test-vm', 'admin.vm.List', None, None)] = \
- # b'0\x00test-vm class=AppVM state=Running\n'
- stdout = io.StringIO()
- echo = subprocess.Popen(['echo', 'some-data'], stdout=subprocess.PIPE)
- with unittest.mock.patch('sys.stdin', echo.stdout):
- with unittest.mock.patch('sys.stdout', stdout):
- ret = qubesadmin.tools.qvm_run.main(
- ['--no-gui', '--pass-io', '--no-color-output',
- 'test-vm', 'command'],
- app=self.app)
- echo.stdout.close()
- echo.wait()
- self.assertEqual(ret, 0)
- self.assertEqual(self.app.service_calls, [
- ('test-vm', 'qubes.VMShell', {
- 'filter_esc': self.default_filter_esc(),
- 'stdout': None,
- 'stderr': None,
- 'user': None,
- }),
- ('test-vm', 'qubes.VMShell', b'command; exit\nsome-data\n')
- ])
- self.assertEqual(stdout.getvalue(), '')
- stdout.close()
- self.assertAllCalled()
- @unittest.expectedFailure
- def test_004_no_filter_esc(self):
- self.app.expected_calls[
- ('dom0', 'admin.vm.List', None, None)] = \
- b'0\x00test-vm class=AppVM state=Running\n'
- self.app.expected_calls[
- ('test-vm', 'admin.vm.feature.CheckWithTemplate', 'os', None)] = \
- b'2\x00QubesFeatureNotFoundError\x00\x00Feature \'os\' not set\x00'
- # self.app.expected_calls[
- # ('test-vm', 'admin.vm.List', None, None)] = \
- # b'0\x00test-vm class=AppVM state=Running\n'
- stdout = io.StringIO()
- echo = subprocess.Popen(['echo', 'some-data'], stdout=subprocess.PIPE)
- with unittest.mock.patch('sys.stdin', echo.stdout):
- with unittest.mock.patch('sys.stdout', stdout):
- ret = qubesadmin.tools.qvm_run.main(
- ['--no-gui', '--pass-io', '--no-filter-esc',
- 'test-vm', 'command'],
- app=self.app)
- echo.stdout.close()
- echo.wait()
- self.assertEqual(ret, 0)
- self.assertEqual(self.app.service_calls, [
- ('test-vm', 'qubes.VMShell', {
- 'filter_esc': False,
- 'stdout': None,
- 'stderr': None,
- 'user': None,
- }),
- ('test-vm', 'qubes.VMShell', b'command; exit\nsome-data\n')
- ])
- self.assertEqual(stdout.getvalue(), '')
- stdout.close()
- self.assertAllCalled()
- @unittest.mock.patch('subprocess.Popen')
- def test_005_localcmd(self, mock_popen):
- self.app.expected_calls[
- ('dom0', 'admin.vm.List', None, None)] = \
- b'0\x00test-vm class=AppVM state=Running\n'
- self.app.expected_calls[
- ('test-vm', 'admin.vm.feature.CheckWithTemplate', 'os', None)] = \
- b'2\x00QubesFeatureNotFoundError\x00\x00Feature \'os\' not set\x00'
- self.app.expected_calls[
- ('test-vm', 'admin.vm.CurrentState', None, None)] = \
- b'0\x00power_state=Running'
- mock_popen.return_value.wait.return_value = 0
- ret = qubesadmin.tools.qvm_run.main(
- ['--no-gui', '--pass-io', '--localcmd', 'local-command',
- 'test-vm', 'command'],
- app=self.app)
- self.assertEqual(ret, 0)
- self.assertEqual(self.app.service_calls, [
- ('test-vm', 'qubes.VMShell', {
- 'stdout': subprocess.PIPE,
- 'stdin': subprocess.PIPE,
- 'stderr': None,
- 'user': None,
- }),
- ('test-vm', 'qubes.VMShell', b'command; exit\n')
- ])
- mock_popen.assert_called_once_with('local-command',
- # TODO: check if the right stdin/stdout objects are used
- stdout=unittest.mock.ANY, stdin=unittest.mock.ANY, shell=True)
- self.assertAllCalled()
- def test_006_run_single_with_gui(self):
- self.app.expected_calls[
- ('dom0', 'admin.vm.List', None, None)] = \
- b'0\x00test-vm class=AppVM state=Running\n'
- self.app.expected_calls[
- ('test-vm', 'admin.vm.property.Get', 'default_user', None)] = \
- b'0\x00default=yes type=str user'
- self.app.expected_calls[
- ('test-vm', 'admin.vm.feature.CheckWithTemplate', 'os', None)] = \
- b'2\x00QubesFeatureNotFoundError\x00\x00Feature \'os\' not set\x00'
- self.app.expected_calls[
- ('test-vm', 'admin.vm.CurrentState', None, None)] = \
- b'0\x00power_state=Running'
- ret = qubesadmin.tools.qvm_run.main(
- ['test-vm', 'command'],
- app=self.app)
- self.assertEqual(ret, 0)
- # make sure we have the same instance below
- self.assertEqual(self.app.service_calls, [
- ('test-vm', 'qubes.WaitForSession', {
- 'stdout': subprocess.DEVNULL,
- 'stderr': subprocess.DEVNULL,
- }),
- ('test-vm', 'qubes.WaitForSession', b'user'),
- ('test-vm', 'qubes.VMShell', {
- 'stdout': subprocess.DEVNULL,
- 'stderr': subprocess.DEVNULL,
- 'user': None,
- }),
- ('test-vm', 'qubes.VMShell', b'command; exit\n')
- ])
- self.assertAllCalled()
- def test_007_run_service_with_gui(self):
- self.app.expected_calls[
- ('dom0', 'admin.vm.List', None, None)] = \
- b'0\x00test-vm class=AppVM state=Running\n'
- self.app.expected_calls[
- ('test-vm', 'admin.vm.property.Get', 'default_user', None)] = \
- b'0\x00default=yes type=str user'
- self.app.expected_calls[
- ('test-vm', 'admin.vm.CurrentState', None, None)] = \
- b'0\x00power_state=Running'
- ret = qubesadmin.tools.qvm_run.main(
- ['--service', 'test-vm', 'service.name'],
- app=self.app)
- self.assertEqual(ret, 0)
- # make sure we have the same instance below
- self.assertEqual(self.app.service_calls, [
- ('test-vm', 'qubes.WaitForSession', {
- 'stdout': subprocess.DEVNULL,
- 'stderr': subprocess.DEVNULL,
- }),
- ('test-vm', 'qubes.WaitForSession', b'user'),
- ('test-vm', 'service.name', {
- 'stdout': subprocess.DEVNULL,
- 'stderr': subprocess.DEVNULL,
- 'user': None,
- }),
- ('test-vm', 'service.name', b''),
- ])
- self.assertAllCalled()
- def test_008_dispvm_remote(self):
- ret = qubesadmin.tools.qvm_run.main(
- ['--dispvm', '--service', 'test.service'], app=self.app)
- self.assertEqual(ret, 0)
- self.assertEqual(self.app.service_calls, [
- ('$dispvm', 'test.service', {
- 'stdout': subprocess.DEVNULL,
- 'stderr': subprocess.DEVNULL,
- 'user': None,
- }),
- ('$dispvm', 'test.service', b''),
- ])
- self.assertAllCalled()
- def test_009_dispvm_remote_specific(self):
- ret = qubesadmin.tools.qvm_run.main(
- ['--dispvm=test-vm', '--service', 'test.service'], app=self.app)
- self.assertEqual(ret, 0)
- self.assertEqual(self.app.service_calls, [
- ('$dispvm:test-vm', 'test.service', {
- 'stdout': subprocess.DEVNULL,
- 'stderr': subprocess.DEVNULL,
- 'user': None,
- }),
- ('$dispvm:test-vm', 'test.service', b''),
- ])
- self.assertAllCalled()
- def test_010_dispvm_local(self):
- self.app.qubesd_connection_type = 'socket'
- self.app.expected_calls[
- ('dom0', 'admin.vm.CreateDisposable', None, None)] = \
- b'0\0disp123'
- self.app.expected_calls[('disp123', 'admin.vm.Kill', None, None)] = \
- b'0\0'
- self.app.expected_calls[
- ('disp123', 'admin.vm.property.Get', 'qrexec_timeout', None)] = \
- b'0\0default=yes type=int 30'
- ret = qubesadmin.tools.qvm_run.main(
- ['--dispvm', '--service', 'test.service'], app=self.app)
- self.assertEqual(ret, 0)
- self.assertEqual(self.app.service_calls, [
- ('disp123', 'test.service', {
- 'stdout': subprocess.DEVNULL,
- 'stderr': subprocess.DEVNULL,
- 'user': None,
- 'connect_timeout': 30,
- }),
- ('disp123', 'test.service', b''),
- ])
- self.assertAllCalled()
- def test_011_dispvm_local_specific(self):
- self.app.qubesd_connection_type = 'socket'
- self.app.expected_calls[
- ('test-vm', 'admin.vm.CreateDisposable', None, None)] = \
- b'0\0disp123'
- self.app.expected_calls[('disp123', 'admin.vm.Kill', None, None)] = \
- b'0\0'
- self.app.expected_calls[
- ('disp123', 'admin.vm.property.Get', 'qrexec_timeout', None)] = \
- b'0\0default=yes type=int 30'
- ret = qubesadmin.tools.qvm_run.main(
- ['--dispvm=test-vm', '--service', 'test.service'], app=self.app)
- self.assertEqual(ret, 0)
- self.assertEqual(self.app.service_calls, [
- ('disp123', 'test.service', {
- 'stdout': subprocess.DEVNULL,
- 'stderr': subprocess.DEVNULL,
- 'user': None,
- 'connect_timeout': 30,
- }),
- ('disp123', 'test.service', b''),
- ])
- self.assertAllCalled()
- def test_012_exclude(self):
- self.app.expected_calls[
- ('dom0', 'admin.vm.List', None, None)] = \
- b'0\x00test-vm class=AppVM state=Running\n' \
- b'test-vm2 class=AppVM state=Running\n' \
- b'test-vm3 class=AppVM state=Halted\n'
- self.app.expected_calls[
- ('test-vm', 'admin.vm.CurrentState', None, None)] = \
- b'0\x00power_state=Running'
- self.app.expected_calls[
- ('test-vm3', 'admin.vm.CurrentState', None, None)] = \
- b'0\x00power_state=Halted'
- self.app.expected_calls[
- ('test-vm', 'admin.vm.feature.CheckWithTemplate', 'os', None)] = \
- b'2\x00QubesFeatureNotFoundError\x00\x00Feature \'os\' not set\x00'
- ret = qubesadmin.tools.qvm_run.main(
- ['--no-gui', '--all', '--exclude', 'test-vm2', 'command'],
- app=self.app)
- self.assertEqual(ret, 0)
- self.assertEqual(self.app.service_calls, [
- ('test-vm', 'qubes.VMShell', {
- 'stdout': subprocess.DEVNULL,
- 'stderr': subprocess.DEVNULL,
- 'user': None,
- }),
- ('test-vm', 'qubes.VMShell', b'command; exit\n'),
- ])
- self.assertAllCalled()
- def test_013_no_autostart(self):
- self.app.expected_calls[
- ('dom0', 'admin.vm.List', None, None)] = \
- b'0\x00test-vm class=AppVM state=Running\n' \
- b'test-vm2 class=AppVM state=Running\n' \
- b'test-vm3 class=AppVM state=Halted\n'
- self.app.expected_calls[
- ('test-vm3', 'admin.vm.CurrentState', None, None)] = \
- b'0\x00power_state=Halted'
- ret = qubesadmin.tools.qvm_run.main(
- ['--no-gui', '--no-autostart', 'test-vm3', 'command'],
- app=self.app)
- self.assertEqual(ret, 1)
- self.assertEqual(self.app.service_calls, [])
- self.assertAllCalled()
- def test_014_dispvm_local_gui(self):
- self.app.qubesd_connection_type = 'socket'
- self.app.expected_calls[
- ('dom0', 'admin.vm.CreateDisposable', None, None)] = \
- b'0\0disp123'
- self.app.expected_calls[('disp123', 'admin.vm.Kill', None, None)] = \
- b'0\0'
- self.app.expected_calls[
- ('disp123', 'admin.vm.property.Get', 'qrexec_timeout', None)] = \
- b'0\0default=yes type=int 30'
- self.app.expected_calls[
- ('disp123', 'admin.vm.feature.CheckWithTemplate', 'os', None)] = \
- b'2\x00QubesFeatureNotFoundError\x00\x00Feature \'os\' not set\x00'
- ret = qubesadmin.tools.qvm_run.main(
- ['--dispvm', '--', 'test.command'], app=self.app)
- self.assertEqual(ret, 0)
- self.assertEqual(self.app.service_calls, [
- ('disp123', 'qubes.VMShell+WaitForSession', {
- 'stdout': subprocess.DEVNULL,
- 'stderr': subprocess.DEVNULL,
- 'user': None,
- 'connect_timeout': 30,
- }),
- ('disp123', 'qubes.VMShell+WaitForSession',
- b'test.command; exit\n'),
- ])
- self.assertAllCalled()
- def test_015_dispvm_local_no_gui(self):
- self.app.qubesd_connection_type = 'socket'
- self.app.expected_calls[
- ('dom0', 'admin.vm.CreateDisposable', None, None)] = \
- b'0\0disp123'
- self.app.expected_calls[('disp123', 'admin.vm.Kill', None, None)] = \
- b'0\0'
- self.app.expected_calls[
- ('disp123', 'admin.vm.property.Get', 'qrexec_timeout', None)] = \
- b'0\0default=yes type=int 30'
- self.app.expected_calls[
- ('disp123', 'admin.vm.feature.CheckWithTemplate', 'os', None)] = \
- b'2\x00QubesFeatureNotFoundError\x00\x00Feature \'os\' not set\x00'
- ret = qubesadmin.tools.qvm_run.main(
- ['--dispvm', '--no-gui', 'test.command'], app=self.app)
- self.assertEqual(ret, 0)
- self.assertEqual(self.app.service_calls, [
- ('disp123', 'qubes.VMShell', {
- 'stdout': subprocess.DEVNULL,
- 'stderr': subprocess.DEVNULL,
- 'user': None,
- 'connect_timeout': 30,
- }),
- ('disp123', 'qubes.VMShell', b'test.command; exit\n'),
- ])
- self.assertAllCalled()
- def test_016_run_single_windows(self):
- self.app.expected_calls[
- ('dom0', 'admin.vm.List', None, None)] = \
- b'0\x00test-vm class=AppVM state=Running\n'
- self.app.expected_calls[
- ('test-vm', 'admin.vm.feature.CheckWithTemplate', 'os', None)] = \
- b'0\x00Windows'
- self.app.expected_calls[
- ('test-vm', 'admin.vm.CurrentState', None, None)] = \
- b'0\x00power_state=Running'
- ret = qubesadmin.tools.qvm_run.main(
- ['--no-gui', 'test-vm', 'command'],
- app=self.app)
- self.assertEqual(ret, 0)
- self.assertEqual(self.app.service_calls, [
- ('test-vm', 'qubes.VMShell', {
- 'stdout': subprocess.DEVNULL,
- 'stderr': subprocess.DEVNULL,
- 'user': None,
- }),
- ('test-vm', 'qubes.VMShell', b'command& exit\n')
- ])
- self.assertAllCalled()
- def test_020_run_exec_with_vmexec_not_supported(self):
- self.app.expected_calls[
- ('dom0', 'admin.vm.List', None, None)] = \
- b'0\x00test-vm class=AppVM state=Running\n'
- self.app.expected_calls[
- ('test-vm', 'admin.vm.feature.CheckWithTemplate', 'os', None)] = \
- b'2\x00QubesFeatureNotFoundError\x00\x00Feature \'os\' not set\x00'
- self.app.expected_calls[
- ('test-vm', 'admin.vm.feature.CheckWithTemplate', 'vmexec', None)] = \
- b'2\x00QubesFeatureNotFoundError\x00\x00Feature \'vmexec\' not set\x00'
- self.app.expected_calls[
- ('test-vm', 'admin.vm.CurrentState', None, None)] = \
- b'0\x00power_state=Running'
- ret = qubesadmin.tools.qvm_run.main(
- ['--no-gui', 'test-vm', 'command', 'arg'],
- app=self.app)
- self.assertEqual(ret, 0)
- self.assertEqual(self.app.service_calls, [
- ('test-vm', 'qubes.VMShell', {
- 'stdout': subprocess.DEVNULL,
- 'stderr': subprocess.DEVNULL,
- 'user': None,
- }),
- ('test-vm', 'qubes.VMShell', b'command arg; exit\n')
- ])
- self.assertAllCalled()
- def test_020_run_exec_with_vmexec_supported(self):
- self.app.expected_calls[
- ('dom0', 'admin.vm.List', None, None)] = \
- b'0\x00test-vm class=AppVM state=Running\n'
- self.app.expected_calls[
- ('test-vm', 'admin.vm.feature.CheckWithTemplate',
- 'vmexec', None)] = \
- b'0\x001'
- self.app.expected_calls[
- ('test-vm', 'admin.vm.CurrentState', None, None)] = \
- b'0\x00power_state=Running'
- ret = qubesadmin.tools.qvm_run.main(
- ['--no-gui', 'test-vm', 'command', 'arg'],
- app=self.app)
- self.assertEqual(ret, 0)
- self.assertEqual(self.app.service_calls, [
- ('test-vm', 'qubes.VMExec+command+arg', {
- 'stdout': subprocess.DEVNULL,
- 'stderr': subprocess.DEVNULL,
- 'user': None,
- }),
- ('test-vm', 'qubes.VMExec+command+arg', b'')
- ])
- self.assertAllCalled()
- def test_021_paused_vm(self):
- self.app.expected_calls[
- ('dom0', 'admin.vm.List', None, None)] = \
- b'0\x00test-vm class=AppVM state=Paused\n'
- self.app.expected_calls[
- ('test-vm', 'admin.vm.feature.CheckWithTemplate', 'os', None)] = \
- b'2\x00QubesFeatureNotFoundError\x00\x00Feature \'os\' not set\x00'
- self.app.expected_calls[
- ('test-vm', 'admin.vm.CurrentState', None, None)] = \
- b'0\x00power_state=Paused'
- self.app.expected_calls[
- ('test-vm', 'admin.vm.Unpause', None, None)] = \
- b'0\x00'
- ret = qubesadmin.tools.qvm_run.main(
- ['--no-gui', 'test-vm', 'command'],
- app=self.app)
- self.assertEqual(ret, 0)
- self.assertEqual(self.app.service_calls, [
- ('test-vm', 'qubes.VMShell', {
- 'stdout': subprocess.DEVNULL,
- 'stderr': subprocess.DEVNULL,
- 'user': None,
- }),
- ('test-vm', 'qubes.VMShell', b'command; exit\n')
- ])
- self.assertAllCalled()
|