Exemple #1
0
 def test_014_main_passphrase_file(self, mock_getpass, mock_input):
     asyncio.set_event_loop(asyncio.new_event_loop())
     mock_input.return_value = 'y'
     mock_getpass.return_value = 'some password'
     self.app.qubesd_connection_type = 'socket'
     self.app.expected_calls[('dom0', 'admin.backup.Info', 'test-profile',
             None)] = \
         b'0\0backup summary'
     self.app.expected_calls[('dom0', 'admin.backup.Execute', 'test-profile',
             None)] = \
         b'0\0'
     profile_path = '/tmp/test-profile.conf'
     try:
         stdin = io.StringIO()
         stdin.write('other passphrase\n')
         stdin.seek(0)
         with mock.patch('sys.stdin', stdin):
             qvm_backup.main([
                 '--passphrase-file', '-', '--save-profile', 'test-profile',
                 '/var/tmp'
             ],
                             app=self.app)
         expected_profile = (
             '{compression: true, destination_path: /var/tmp, '
             'destination_vm: dom0, include: null,\n'
             '  passphrase_text: other passphrase}\n')
         with open(profile_path) as f:
             self.assertEqual(expected_profile, f.read())
     finally:
         os.unlink(profile_path)
Exemple #2
0
    def test_012_main_existing_profile(self, mock_getpass, mock_input):
        asyncio.set_event_loop(asyncio.new_event_loop())
        mock_input.return_value = 'y'
        mock_getpass.return_value = 'some password'
        self.app.qubesd_connection_type = 'socket'
        self.app.expected_calls[('dom0', 'admin.backup.Info', 'test-profile',
                None)] = \
            b'0\0backup summary'
        self.app.expected_calls[('dom0', 'admin.backup.Execute', 'test-profile',
                None)] = \
            b'0\0'
        self.app.expected_calls[('dom0', 'admin.Events', None,
                None)] = \
            b'0\0'
        try:
            patch = mock.patch(
                'qubesadmin.events.EventsDispatcher._get_events_reader')
            mock_events = patch.start()
            self.addCleanup(patch.stop)
            mock_events.side_effect = qubesadmin.tests.tools.MockEventsReader([
                b'1\0\0connection-established\0\0',
                b'1\0\0backup-progress\0backup_profile\0test-profile\0progress\x000'
                b'.25\0\0',
            ])
        except ImportError:
            pass

        qvm_backup.main(['--profile', 'test-profile'], app=self.app)
        self.assertFalse(os.path.exists('/tmp/test-profile.conf'))
        self.assertFalse(mock_getpass.called)
Exemple #3
0
 def test_011_main_save_profile_confirm(self, mock_getpass, mock_input):
     asyncio.set_event_loop(asyncio.new_event_loop())
     mock_input.return_value = 'y'
     mock_getpass.return_value = 'some password'
     self.app.qubesd_connection_type = 'socket'
     self.app.expected_calls[('dom0', 'admin.backup.Info', 'test-profile',
             None)] = \
         b'0\0backup summary'
     self.app.expected_calls[('dom0', 'admin.backup.Execute', 'test-profile',
             None)] = \
         b'0\0'
     profile_path = '/tmp/test-profile.conf'
     try:
         qvm_backup.main(['--save-profile', 'test-profile', '/var/tmp'],
                         app=self.app)
         expected_profile = (
             'destination_path: /var/tmp\n'
             'destination_vm: dom0\n'
             'include: [\'$type:AppVM\', \'$type:TemplateVM\', '
             '\'$type:StandaloneVM\']\n'
             'passphrase_text: some password\n')
         with open(profile_path) as f:
             self.assertEqual(expected_profile, f.read())
     finally:
         os.unlink(profile_path)
Exemple #4
0
 def test_010_main_save_profile_cancel(self, mock_getpass, mock_input):
     asyncio.set_event_loop(asyncio.new_event_loop())
     mock_input.return_value = 'n'
     mock_getpass.return_value = 'some password'
     self.app.qubesd_connection_type = 'socket'
     self.app.expected_calls[('dom0', 'admin.backup.Info', 'test-profile',
             None)] = \
         b'0\0backup summary'
     profile_path = '/tmp/test-profile.conf'
     try:
         qvm_backup.main(['--save-profile', 'test-profile', '/var/tmp'],
                         app=self.app)
         expected_profile = (
             '{compression: true, destination_path: /var/tmp, '
             'destination_vm: dom0, include: null}\n')
         with open(profile_path) as f:
             self.assertEqual(expected_profile, f.read())
     finally:
         os.unlink(profile_path)
Exemple #5
0
 def test_013_main_new_profile_vm(self, mock_getpass, mock_input):
     asyncio.set_event_loop(asyncio.new_event_loop())
     mock_input.return_value = 'y'
     mock_getpass.return_value = 'some password'
     self.app.qubesd_connection_type = 'qrexec'
     with qubesadmin.tests.tools.StdoutBuffer() as stdout:
         qvm_backup.main(['-x', 'vm1', '/var/tmp'], app=self.app)
     expected_output = (
         'To perform the backup according to selected options, create '
         'backup profile (/tmp/profile_name.conf) in dom0 with following '
         'content:\n'
         'compression: true\n'
         'destination_path: /var/tmp\n'
         'destination_vm: dom0\n'
         'exclude: [vm1]\n'
         'include: null\n'
         '# specify backup passphrase below\n'
         'passphrase_text: ...\n')
     self.assertEqual(stdout.getvalue(), expected_output)