def test_mount_tape_non_zero_returncode_and_drive_is_full_error_msg(self, mock_popen): attrs = {'communicate.return_value': ('output', 'Drive 42 Full (Storage Element 21 loaded)'), 'returncode': 1} mock_popen.return_value.configure_mock(**attrs) with self.assertRaises(TapeMountedError): mount_tape("device_to_mount", 21, 42) cmd = 'mtx -f device_to_mount load 21 42' mock_popen.assert_called_once_with(cmd, shell=True, stderr=PIPE, stdout=PIPE)
def test_mount_tape_non_zero_returncode(self, mock_popen): attrs = {'communicate.return_value': ('output', 'error'), 'returncode': 1} mock_popen.return_value.configure_mock(**attrs) with self.assertRaises(RobotMountException): mount_tape("device_to_mount", 21, 42) cmd = 'mtx -f device_to_mount load 21 42' mock_popen.assert_called_once_with(cmd, shell=True, stderr=PIPE, stdout=PIPE)
def run(self, medium=None, drive=None, timeout=120): """ Mounts tape into drive Args: medium: Which medium to mount drive: Which drive to load to """ medium = StorageMedium.objects.get(pk=medium) slot = medium.tape_slot.slot_id tape_drive = TapeDrive.objects.get(pk=drive) mount_tape(tape_drive.robot.device, slot, drive) wait_to_come_online(tape_drive.device, timeout) if medium.format not in [100, 101]: label_root = Path.objects.get(entity='label').value xmlpath = os.path.join(label_root, '%s_label.xml' % medium.medium_id) if tape_empty(tape_drive.device): create_tape_label(medium, xmlpath) rewind_tape(tape_drive.device) write_to_tape(tape_drive.device, xmlpath) else: tar = tarfile.open(tape_drive.device, 'r|') first_member = tar.getmembers()[0] if first_member.name.endswith('_label.xml'): xmlstring = tar.extractfile(first_member).read() tar.close() if not verify_tape_label(medium, xmlstring): raise ValueError( 'Tape contains labelfile with wrong tapeid') elif first_member.name == 'reuse': tar.close() create_tape_label(medium, xmlpath) rewind_tape(tape_drive.device) write_to_tape(tape_drive.device, xmlpath) else: raise ValueError('Tape contains unknown information') TapeDrive.objects.filter(pk=drive).update( num_of_mounts=F('num_of_mounts') + 1, ) StorageMedium.objects.filter(pk=medium.pk).update( num_of_mounts=F('num_of_mounts') + 1, tape_drive_id=drive)
def test_mount_tape_zero_returncode_should_return_output(self, mock_popen): attrs = {'communicate.return_value': ('All good', ''), 'returncode': 0} mock_popen.return_value.configure_mock(**attrs) self.assertEqual(mount_tape("device_to_mount", 21, 42), "All good") cmd = 'mtx -f device_to_mount load 21 42' mock_popen.assert_called_once_with(cmd, shell=True, stderr=PIPE, stdout=PIPE)
def mount_tape_medium_into_drive(drive_id, medium_id, timeout): """ Mounts tape into drive Args: medium_id: Which medium to mount drive_id: Which drive to load to timeout: Number of times to try to mount the tape (1 sec sleep between each retry) """ medium = StorageMedium.objects.get(pk=medium_id) slot_id = medium.tape_slot.slot_id tape_drive = TapeDrive.objects.get(pk=drive_id) if tape_drive.locked: raise TapeDriveLockedError() tape_drive.locked = True tape_drive.save(update_fields=['locked']) try: mount_tape(tape_drive.robot.device, slot_id, tape_drive.drive_id) wait_to_come_online(tape_drive.device, timeout) except BaseException: StorageMedium.objects.filter(pk=medium_id).update( status=100, last_changed_local=timezone.now(), ) TapeDrive.objects.filter(pk=drive_id).update(locked=False, status=100) TapeSlot.objects.filter(slot_id=slot_id).update(status=100) raise TapeDrive.objects.filter(pk=drive_id).update( num_of_mounts=F('num_of_mounts') + 1, last_change=timezone.now(), ) StorageMedium.objects.filter(pk=medium.pk).update( num_of_mounts=F('num_of_mounts') + 1, tape_drive_id=drive_id, last_changed_local=timezone.now(), ) write_medium_label_to_drive(drive_id, medium, slot_id, tape_drive)
def run(self, medium=None, drive=None, timeout=120): """ Mounts tape into drive Args: medium: Which medium to mount drive: Which drive to load to """ medium = StorageMedium.objects.get(pk=medium) slot = medium.tape_slot.slot_id tape_drive = TapeDrive.objects.get(pk=drive) if tape_drive.locked: raise TapeDriveLockedError() tape_drive.locked = True tape_drive.save(update_fields=['locked']) try: mount_tape(tape_drive.robot.device, slot, tape_drive.drive_id) wait_to_come_online(tape_drive.device, timeout) except: StorageMedium.objects.filter(pk=medium.pk).update(status=100) TapeDrive.objects.filter(pk=drive).update(locked=False, status=100) TapeSlot.objects.filter(slot_id=slot).update(status=100) raise TapeDrive.objects.filter(pk=drive).update( num_of_mounts=F('num_of_mounts') + 1, last_change=timezone.now(), ) StorageMedium.objects.filter(pk=medium.pk).update( num_of_mounts=F('num_of_mounts') + 1, tape_drive_id=drive) xmlfile = tempfile.NamedTemporaryFile(delete=False) try: arcname = '%s_label.xml' % medium.medium_id if medium.format not in [100, 101]: if tape_empty(tape_drive.device): create_tape_label(medium, xmlfile.name) rewind_tape(tape_drive.device) write_to_tape(tape_drive.device, xmlfile.name, arcname=arcname) else: tar = tarfile.open(tape_drive.device, 'r|') first_member = tar.getmembers()[0] tar.close() rewind_tape(tape_drive.device) if first_member.name.endswith('_label.xml'): tar = tarfile.open(tape_drive.device, 'r|') xmlstring = tar.extractfile(first_member).read() tar.close() if not verify_tape_label(medium, xmlstring): raise ValueError( 'Tape contains invalid label file') elif first_member.name == 'reuse': create_tape_label(medium, xmlfile.name) rewind_tape(tape_drive.device) write_to_tape(tape_drive.device, xmlfile.name, arcname=arcname) else: raise ValueError('Tape contains unknown information') rewind_tape(tape_drive.device) except: StorageMedium.objects.filter(pk=medium.pk).update(status=100) TapeDrive.objects.filter(pk=drive).update(locked=False, status=100) TapeSlot.objects.filter(slot_id=slot).update(status=100) raise finally: xmlfile.close() TapeDrive.objects.filter(pk=drive).update(locked=False)