示例#1
0
    def test_export_blocks(self):
        self._add_import_commands()
        self._add_export_commands()

        exported_zfs_device = ZfsDevice(self.zpool_name, True)

        self.assertEqual(exported_zfs_device.__enter__().available, True)
        self.assertEqual(self.lock._RLock__count, 1)

        # Now this thread should block.
        thread = ExceptionThrowingThread(target=self.export,
                                         args=(),
                                         use_threads=True)
        thread.start()

        time.sleep(0.1)
        self.assertEqual(self.thread_running, True)
        time.sleep(0.1)
        self.assertEqual(self.thread_running, True)

        exported_zfs_device.__exit__(0, 0, 0)

        time.sleep(0.1)
        self.assertEqual(self.thread_running, False)

        self.assertEqual(self.lock._RLock__count, 0)

        thread.join()
示例#2
0
    def test_no_import_silient(self):
        exported_zfs_device = ZfsDevice(self.zpool_name, False)

        self.assertEqual(exported_zfs_device.available, True)
        self.assertEqual(exported_zfs_device.__enter__().available, True)
        exported_zfs_device.__exit__(0, 0, 0)

        self.assertRanAllCommandsInOrder()
示例#3
0
    def test_import_writable(self):
        self._add_import_commands()
        self._add_export_commands()

        exported_zfs_device = ZfsDevice(self.zpool_name, True)

        self.assertEqual(exported_zfs_device.__enter__().available, True)
        exported_zfs_device.__exit__(0, 0, 0)

        self.assertRanAllCommandsInOrder()
示例#4
0
    def test_error_in_list(self):
        self.add_commands(
            CommandCaptureCommand(('zpool', 'list', '-H', '-o', 'name'), rc=1))

        exported_zfs_device = ZfsDevice(self.zpool_name, True)

        try:
            self.assertEqual(exported_zfs_device.__enter__(), True)
        except BaseShell.CommandExecutionError:
            pass

        self.assertEqual(self.lock._RLock__count, 0)
示例#5
0
    def test_simple_lock_no_import(self):
        self._add_import_commands(self.zpool_name)

        exported_zfs_device = ZfsDevice(self.zpool_name, True)

        self.assertEqual(exported_zfs_device.__enter__().available, True)
        self.assertEqual(self.lock._RLock__count, 1)

        exported_zfs_device.__exit__(0, 0, 0)
        self.assertEqual(self.lock._RLock__count, 0)

        self.assertRanAllCommandsInOrder()
示例#6
0
    def test_error_in_export(self):
        self._add_import_commands()
        self.add_commands(
            CommandCaptureCommand(('zpool', 'export', self.zpool_name), rc=1))

        exported_zfs_device = ZfsDevice(self.zpool_name, True)

        self.assertEqual(exported_zfs_device.__enter__().available, True)

        self.assertEqual(self.lock._RLock__count, 1)

        try:
            exported_zfs_device.__exit__(0, 0, 0)
        except BaseShell.CommandExecutionError:
            pass

        self.assertEqual(self.lock._RLock__count, 0)

        self.assertRanAllCommandsInOrder()
示例#7
0
    def test_busy_export(self):
        self._add_import_commands()
        self.add_commands(
            CommandCaptureCommand(
                ('zpool', 'export', self.zpool_name),
                rc=1,
                stderr="cannot export '%s': pool is busy" % self.zpool_name,
                executions_remaining=1))
        self._add_export_commands()

        mock.patch(
            'chroma_agent.chroma_common.blockdevices.blockdevice_zfs.time.sleep'
        ).start()

        exported_zfs_device = ZfsDevice(self.zpool_name, True)

        self.assertEqual(exported_zfs_device.__enter__().available, True)
        exported_zfs_device.__exit__(0, 0, 0)

        self.assertRanAllCommandsInOrder()
示例#8
0
    def test_error_in_import(self):
        self.add_commands(
            CommandCaptureCommand(('zpool', 'list', '-H', '-o', 'name'),
                                  stdout='Boris'),
            CommandCaptureCommand(
                ('zpool', 'import', '-f', '-N', '-o', 'readonly=on', '-o',
                 'cachefile=none', self.zpool_name),
                rc=1))

        exported_zfs_device = ZfsDevice(self.zpool_name, True)

        self.assertEqual(exported_zfs_device.__enter__().available, False)

        self.assertEqual(self.lock._RLock__count, 1)

        exported_zfs_device.__exit__(0, 0, 0)

        self.assertEqual(self.lock._RLock__count, 0)

        self.assertRanAllCommandsInOrder()
示例#9
0
    def test_very_busy_export(self):
        self._add_import_commands()
        self.add_commands(
            CommandCaptureCommand(
                ('zpool', 'export', self.zpool_name),
                rc=1,
                stderr="cannot export '%s': pool is busy" % self.zpool_name))
        self._add_export_commands()

        mock.patch(
            'chroma_agent.chroma_common.blockdevices.blockdevice_zfs.time.sleep'
        ).start()

        exported_zfs_device = ZfsDevice(self.zpool_name, True)

        self.assertEqual(exported_zfs_device.__enter__().available, True)

        try:
            exported_zfs_device.__exit__(0, 0, 0)
        except BaseShell.CommandExecutionError:
            pass
示例#10
0
    def test_import(self):
        for force in [True, False]:
            for readonly in [True, False]:
                self.reset_command_capture()

                self.add_commands(
                    CommandCaptureCommand(('zpool', 'import') + (
                        ('-f', ) if force else ()) + (
                            ('-N', '-o', 'readonly=on', '-o',
                             'cachefile=none') if readonly else ()) +
                                          (self.zpool_name, )))

                ZfsDevice(self.zpool_name, False).import_(force, readonly)

                self.assertRanAllCommandsInOrder()
示例#11
0
    def full_scan(self, block_devices):
        zpool_names = set()
        try:
            zpool_names.update(self._search_for_active())
            zpool_names.update(self._search_for_inactive())

            for zpool_name in zpool_names:
                with ZfsDevice(zpool_name, True) as zfs_device:
                    if zfs_device.available:
                        out = AgentShell.try_run([
                            "zpool", "list", "-H", "-o",
                            "name,size,guid,health", zpool_name
                        ])
                        self._add_zfs_pool(out, block_devices)
        except OSError:  # OSError occurs when ZFS is not installed.
            self._zpools = {}
            self._datasets = {}
            self._zvols = {}
示例#12
0
    def test_simple_multiple_entry_lock(self):
        exported_zfs_devices = []

        for count in range(1, 10):
            self._add_import_commands()
            exported_zfs_devices.insert(0, ZfsDevice(self.zpool_name, True))
            self.assertEqual(exported_zfs_devices[0].__enter__().available,
                             True)
            self.assertEqual(self.lock._RLock__count, count)

        for count in range(9, 0, -1):
            self._add_export_commands()
            exported_zfs_devices[0].__exit__(0, 0, 0)
            del exported_zfs_devices[0]
            self.assertEqual(self.lock._RLock__count, count - 1)

        self.assertEqual(self.lock._RLock__count, 0)
        self.assertRanAllCommandsInOrder()
示例#13
0
 def export(self):
     self._add_export_commands()
     self.thread_running = True
     ZfsDevice(self.zpool_name, True).export()
     self.thread_running = False
示例#14
0
 def import_(self):
     self.add_command(('zpool', 'import', self.zpool_name))
     self.thread_running = True
     ZfsDevice(self.zpool_name, True).import_(False, False)
     self.thread_running = False