def createSnapshot(self, volumeid): try: Snapshot.create( self.apiclient, volumeid ) except Exception as e: self.debug("Exception occurred: %s" % e) self.exceptionOccured = True
def createSnapshot(self, volumeid): try: Snapshot.create( self.apiclient, volumeid ) except Exception as e: self.debug("Exception occured: %s" % e) self.exceptionOccured = True
def test_01_check_revert_snapshot(self): """ Test revert snapshot on XenServer # 1. Deploy a VM. # 2. Take VM snapshot. # 3. Verify that volume snapshot fails with error can not create volume snapshot for VM with VM-snapshot """ # Step 1 vm = VirtualMachine.create( self.userapiclient, self.testdata["small"], templateid=self.template.id, accountid=self.account.name, domainid=self.account.domainid, serviceofferingid=self.service_offering.id, zoneid=self.zone.id, ) volumes_cluster_list = list_volumes( self.apiclient, virtualmachineid=vm.id, type='ROOT', listall=True ) volume_list_validation = validateList(volumes_cluster_list) self.assertEqual( volume_list_validation[0], PASS, "Event list validation failed due to %s" % volume_list_validation[2] ) root_volume = volumes_cluster_list[0] #Step 2 vm_snap = VmSnapshot.create(self.apiclient, vm.id) self.assertEqual( vm_snap.state, "Ready", "Check the snapshot of vm is ready!" ) #Step 3 with self.assertRaises(Exception): Snapshot.create( self.apiclient, root_volume.id) return
def test_05_snapshots_per_project(self): """Test Snapshot limit per project """ # Validate the following # 1. set max no of snapshots per project to 1. # 2. Create one snapshot in the project. Snapshot should be # successfully created # 5. Try to create another snapshot in this project. It should give # user an appropriate error and an alert should be generated. if self.hypervisor.lower() in ["hyperv"]: raise self.skipTest("Snapshots feature is not supported on Hyper-V") self.debug("Updating snapshot resource limits for project: %s" % self.project.id) # Set usage_vm=1 for Account 1 update_resource_limit(self.apiclient, 3, max=1, projectid=self.project.id) # Snapshot self.debug("Deploying VM for account: %s" % self.account.name) virtual_machine_1 = VirtualMachine.create( self.apiclient, self.services["server"], templateid=self.template.id, serviceofferingid=self.service_offering.id, projectid=self.project.id, ) self.cleanup.append(virtual_machine_1) # Verify VM state self.assertEqual(virtual_machine_1.state, "Running", "Check VM state is Running or not") # Get the Root disk of VM volumes = list_volumes( self.apiclient, virtualmachineid=virtual_machine_1.id, projectid=self.project.id, type="ROOT" ) self.assertEqual(isinstance(volumes, list), True, "Check for list volume response return valid data") self.debug("Creating snapshot from volume: %s" % volumes[0].id) # Create a snapshot from the ROOTDISK snapshot_1 = Snapshot.create(self.apiclient, volumes[0].id, projectid=self.project.id) self.cleanup.append(snapshot_1) # list snapshots snapshots = list_snapshots(self.apiclient, projectid=self.project.id) self.debug("snapshots list: %s" % snapshots) self.assertEqual(validateList(snapshots)[0], PASS, "Snapshots list validation failed") self.assertEqual(len(snapshots), 1, "Snapshots list should have exactly one entity") # Exception should be raised for second snapshot with self.assertRaises(Exception): Snapshot.create(self.apiclient, volumes[0].id, projectid=self.project.id) return
def test_07_snapshot_to_template_bypass_secondary(self): ''' Create template from snapshot bypassing secondary storage ''' ##cls.virtual_machine volume = list_volumes(self.apiclient, virtualmachineid=self.virtual_machine.id) snapshot = Snapshot.create(self.apiclient, volume_id=volume[0].id) backup_config = list_configurations(self.apiclient, name="sp.bypass.secondary.storage") if (backup_config[0].value == "false"): backup_config = Configurations.update( self.apiclient, name="sp.bypass.secondary.storage", value="true") self.assertIsNotNone(snapshot, "Could not create snapshot") self.assertIsInstance(snapshot, Snapshot, "Snapshot is not an instance of Snapshot") template = self.create_template_from_snapshot(self.apiclient, self.services, snapshotid=snapshot.id) virtual_machine = VirtualMachine.create( self.apiclient, {"name": "StorPool-%d" % random.randint(0, 100)}, zoneid=self.zone.id, templateid=template.id, serviceofferingid=self.service_offering.id, hypervisor=self.hypervisor, rootdisksize=10) ssh_client = virtual_machine.get_ssh_client() self.assertIsNotNone(template, "Template is None") self.assertIsInstance(template, Template, "Template is instance of template") self._cleanup.append(snapshot) self._cleanup.append(template)
def _create_and_test_snapshot(self, cs_vol_id, primary_storage_db_id, expected_num_snapshots, err_mesg): vol_snap = Snapshot.create(self.apiClient, volume_id=cs_vol_id) list_volumes_response = list_volumes(self.apiClient, id=cs_vol_id) cs_volume = list_volumes_response[0] dt_volume = self._get_dt_volume_for_cs_volume(cs_volume) dt_snapshots = self._get_native_snapshots_for_dt_volume(dt_volume) self._check_list(dt_snapshots, expected_num_snapshots, err_mesg) dt_snapshot = self._most_recent_dt_snapshot(dt_snapshots) vol_snap_db_id = self._get_cs_volume_snapshot_db_id(vol_snap) snapshot_details = self._get_snapshot_details(vol_snap_db_id) dt_volume_id = self._get_app_instance_name_from_cs_volume(cs_volume) dt_snapshot_id = dt_volume_id + ':' + dt_snapshot['timestamp'] self._check_snapshot_details(snapshot_details, vol_snap_db_id, dt_volume_id, dt_snapshot_id, primary_storage_db_id) return vol_snap
def test_15_snapshot_root_vol_glid(self): vm = VirtualMachine.create(self.apiclient, {"name": "StorPool-%s" % uuid.uuid4()}, zoneid=self.zone.id, templateid=self.template.id, serviceofferingid=self.service_offering.id, hypervisor=self.hypervisor, rootdisksize=10) list = list_volumes(self.apiclient, virtualmachineid=vm.id, type="ROOT") self.assertIsNotNone(list, "Could not find ROOT volume") self.helper.storpool_volume_globalid(list[0]) snapshot = Snapshot.create( self.apiclient, volume_id=list[0].id, ) self.assertIsNotNone(snapshot, "Could not create snapshot") self.assertIsInstance(snapshot, Snapshot, "Created snapshot is not instance of Snapshot") self.helper.storpool_snapshot_globalid(snapshot) self._cleanup.append(vm) self._cleanup.append(snapshot)
def test_04_snapshot_volume_bypass_secondary(self): ''' Test snapshot bypassing secondary ''' Configurations.update(self.apiclient, name = "sp.bypass.secondary.storage", value = "true") volume = list_volumes( self.apiclient, virtualmachineid = self.virtual_machine.id, type = "ROOT", listall = True, ) snapshot = Snapshot.create( self.apiclient, volume_id = volume[0].id, account=self.account.name, domainid=self.account.domainid, ) try: cmd = getVolumeSnapshotDetails.getVolumeSnapshotDetailsCmd() cmd.snapshotid = snapshot.id snapshot_details = self.apiclient.getVolumeSnapshotDetails(cmd) flag = False for s in snapshot_details: if s["snapshotDetailsName"] == snapshot.id: name = s["snapshotDetailsValue"].split("/")[3] sp_snapshot = self.spapi.snapshotList(snapshotName = "~" + name) flag = True self.debug('################ %s' % sp_snapshot) if flag == False: raise Exception("Could not find snapshot in snapshot details") except spapi.ApiError as err: raise Exception(err) self.assertIsNotNone(snapshot, "Could not create snapshot")
def test_01_verify_events_table(self): """ Test events table # 1. Deploy a VM. # 2. Take VM snapshot. # 3. Verify that events table records UUID of the volume in descrption instead of volume ID """ # Step 1 # Create VM vm = VirtualMachine.create( self.userapiclient, self.testdata["small"], templateid=self.template.id, accountid=self.account.name, domainid=self.account.domainid, serviceofferingid=self.service_offering.id, zoneid=self.zone.id, ) volumes_list = list_volumes(self.apiclient, virtualmachineid=vm.id, type='ROOT', listall=True) volume_list_validation = validateList(volumes_list) self.assertEqual( volume_list_validation[0], PASS, "volume list validation failed due to %s" % volume_list_validation[2]) root_volume = volumes_list[0] # Step 2 # Create snapshot of root volume snapshot = Snapshot.create(self.apiclient, root_volume.id) snapshots_list = Snapshot.list(self.userapiclient, id=snapshot.id) status = validateList(snapshots_list) self.assertEqual(status[0], PASS, "Snapshots List Validation Failed") self.assertEqual(snapshot.state, "BackedUp", "Check if snapshot gets created properly") # Step 3 qresultset = self.dbclient.execute( "select description from event where type='SNAPSHOT.CREATE' AND \ description like '%%%s%%'" % root_volume.id) event_validation_result = validateList(qresultset) self.assertEqual( event_validation_result[0], PASS, "event list validation failed due to %s" % event_validation_result[2]) self.assertNotEqual( len(qresultset), 0, "Check if events table records UUID of the volume") return
def test_04_delete_snapshot(self): """Test Delete Snapshot """ # 1. Snapshot the Volume # 2. Delete the snapshot # 3. Verify snapshot is removed by calling List Snapshots API # 4. Verify snapshot was removed from image store self.debug("Creating volume under account: %s" % self.account.name) volume = Volume.create( self.apiclient, self.services["volume"], zoneid=self.zone.id, account=self.account.name, domainid=self.account.domainid, diskofferingid=self.disk_offering.id, ) self.debug("Created volume: %s" % volume.id) self.debug("Attaching volume to vm: %s" % self.virtual_machine.id) self.virtual_machine.attach_volume(self.apiclient, volume) self.debug("Volume attached to vm") volumes = list_volumes(self.apiclient, virtualmachineid=self.virtual_machine.id, type="DATADISK", id=volume.id) self.assertEqual(isinstance(volumes, list), True, "Check list response returns a valid list") snapshot = Snapshot.create( self.apiclient, volumes[0].id, account=self.account.name, domainid=self.account.domainid ) snapshot.delete(self.apiclient) snapshots = list_snapshots(self.apiclient, id=snapshot.id) self.assertEqual(snapshots, None, "Check if result exists in list item call") self.assertFalse(is_snapshot_on_nfs(self.apiclient, self.dbclient, self.config, self.zone.id, snapshot.id)) return
def test_08_vcpolicy_tag_to_reverted_disk(self): tag = Tag.create(self.apiclient, resourceIds=self.virtual_machine2.id, resourceType='UserVm', tags={'vc-policy': 'testing_vc-policy'}) vm = list_virtual_machines(self.apiclient, id=self.virtual_machine2.id, listall=True) vm_tags = vm[0].tags volume = Volume.list(self.apiclient, virtualmachineid=self.virtual_machine2.id, listall=True, type="ROOT") self.vc_policy_tags(volume, vm_tags, vm) snapshot = Snapshot.create(self.apiclient, volume[0].id, account=self.account.name, domainid=self.account.domainid) virtual_machine = self.virtual_machine2.stop(self.apiclient, forced=True) cmd = revertSnapshot.revertSnapshotCmd() cmd.id = snapshot.id revertedn = self.apiclient.revertSnapshot(cmd) vm = list_virtual_machines(self.apiclient, id=self.virtual_machine2.id) vm_tags = vm[0].tags vol = list_volumes(self.apiclient, id=snapshot.volumeid, listall=True) self.vc_policy_tags(vol, vm_tags, vm)
def test_08_migrate_vm_live_with_snapshots_on_remote(self): """ Create snapshots on all the volumes, Migrate all the volumes and VM. """ global vm2 # Get ROOT Volume vol_for_snap = list_volumes( self.apiclient, virtualmachineid=vm2.id, listall=True) for vol in vol_for_snap: snapshot = Snapshot.create( self.apiclient, volume_id=vol.id ) globalId = self.storpool_snapshot_globalid(snapshot) sn = sptypes.SnapshotUpdateDesc(rename = snapshot.id) rename = self.spapi.snapshotUpdate(snapshotName = globalId, json = sn) snapshot.validateState( self.apiclient, snapshotstate="backedup", ) self._cleanup.append(snapshot) # Migrate all volumes and VMs destinationHost, vol_list = self.get_destination_pools_hosts(vm2) vm2 = self.migrateVm(self.virtual_machine_on_remote, destinationHost)
def test_13_snapshot_detached_vol_with_glid(self): volume = Volume.create( self.apiclient, {"diskname": "StorPoolDisk-GlId-%d" % random.randint(0, 100)}, zoneid=self.zone.id, diskofferingid=self.disk_offering.id, ) self.virtual_machine3.start(self.apiclient) self.virtual_machine3.attach_volume(self.apiclient, volume) list = list_volumes(self.apiclient, virtualmachineid=self.virtual_machine3.id, id=volume.id) self.assertIsNotNone(list, "Volume was not attached") self.helper.storpool_volume_globalid(list[0]) self.virtual_machine3.stop(self.apiclient, forced=True) snapshot = Snapshot.create( self.apiclient, volume_id=volume.id, ) self.assertIsNotNone(snapshot, "Could not create snapshot") self.helper.storpool_snapshot_globalid(snapshot) self._cleanup.append(volume) self._cleanup.append(snapshot)
def test_01_snapshot_detached_volume(self): ''' Test Snapshot Detached Volume ''' self.virtual_machine.stop( self.apiClient, forced = True ) self.volume = self.virtual_machine.attach_volume( self.apiClient, self.volume ) self.assertIsNotNone(self.volume, "Attach: Is none") self.volume = self.virtual_machine.detach_volume( self.apiClient, self.volume ) self.assertIsNotNone(self.volume, "Detach: Is none") snapshot = Snapshot.create( self.apiClient, self.volume.id, ) self.assertIsNotNone(snapshot, "Snapshot is None") self.assertIsInstance(snapshot, Snapshot, "Snapshot is not Instance of Snappshot") snapshot = Snapshot.delete( snapshot, self.apiClient ) self.assertIsNone(snapshot, "Snapshot was not deleted")
def test_08_migrate_vm_live_with_snapshots_on_remote(self): """ Create snapshots on all the volumes, Migrate all the volumes and VM. """ global vm2 # Get ROOT Volume vol_for_snap = list_volumes(self.apiclient, virtualmachineid=vm2.id, listall=True) for vol in vol_for_snap: snapshot = Snapshot.create( self.apiclient, volume_id=vol.id, account=self.account.name, domainid=self.account.domainid, ) snapshot.validateState( self.apiclient, snapshotstate="backedup", ) # Migrate all volumes and VMs destinationHost, vol_list = self.helper.get_destination_pools_hosts( self.apiclient, vm2, self.host_remote) vm2 = self.helper.migrateVm(self.apiclient, self.virtual_machine_on_remote, destinationHost)
def test_12_migrate_vm_live_with_snapshots_on_remote(self): """ Create snapshots on all the volumes, Migrate all the volumes and VM. """ global vm2 # Get ROOT Volume vol_for_snap = list_volumes( self.apiclient, virtualmachineid=vm2.id, listall=True) for vol in vol_for_snap: snapshot = Snapshot.create( self.apiclient, volume_id=vol.id ) snapshot.validateState( self.apiclient, snapshotstate="backedup", ) # Migrate all volumes and VMs destinationHost, vol_list = self.helper.get_destination_pools_hosts(self.apiclient, vm2, self.host_remote) for v in vol_list: self.helper.check_storpool_volume_iops(self.spapi, v) vm2 = self.helper.migrateVm(self.apiclient, self.virtual_machine_live_migration_2, destinationHost) destinationHost, vol_list = self.helper.get_destination_pools_hosts(self.apiclient, vm2, self.host_remote) for v in vol_list: self.helper.check_storpool_volume_iops(self.spapi, v)
def test_02_snapshot_data_disk(self): """Test Snapshot Data Disk """ volume = list_volumes( self.apiclient, virtualmachineid=self.virtual_machine_with_disk.id, type='DATADISK', listall=True) self.assertEqual(isinstance(volume, list), True, "Check list response returns a valid list") self.debug("Creating a Snapshot from data volume: %s" % volume[0].id) snapshot = Snapshot.create(self.apiclient, volume[0].id, account=self.account.name, domainid=self.account.domainid) snapshots = list_snapshots(self.apiclient, id=snapshot.id) self.assertEqual(isinstance(snapshots, list), True, "Check list response returns a valid list") self.assertNotEqual(snapshots, None, "Check if result exists in list item call") self.assertEqual(snapshots[0].id, snapshot.id, "Check resource id in list resources call") self.assertTrue( is_snapshot_on_nfs(self.apiclient, self.dbclient, self.config, self.zone.id, snapshot.id)) return
def test_05_snapshot_events(self): """Test snapshot events """ # Validate the following # 1. Perform snapshot on the root disk of this VM and check the events/alerts. # 2. delete the snapshots and check the events/alerts # 3. listEvents() shows created/deleted snapshot events # Get the Root disk of VM volumes = list_volumes(self.apiclient, virtualmachineid=self.virtual_machine.id, type="ROOT", listall=True) self.assertEqual(isinstance(volumes, list), True, "Check list response returns a valid list") volume = volumes[0] # Create a snapshot from the ROOTDISK snapshot = Snapshot.create(self.apiclient, volume.id) self.debug("Snapshot created with ID: %s" % snapshot.id) snapshots = list_snapshots(self.apiclient, id=snapshot.id) self.assertEqual(isinstance(snapshots, list), True, "Check list response returns a valid list") self.assertNotEqual(snapshots, None, "Check if result exists in list snapshots call") self.assertEqual(snapshots[0].id, snapshot.id, "Check snapshot id in list resources call") snapshot.delete(self.apiclient) # Sleep to ensure that snapshot is deleted properly time.sleep(self.services["sleep"]) events = list_events( self.apiclient, account=self.account.name, domainid=self.account.domainid, type="SNAPSHOT.DELETE" ) self.assertEqual(isinstance(events, list), True, "Check list response returns a valid list") self.assertNotEqual(events, None, "Check if event exists in list events call") self.assertIn(events[0].state, ["Completed", "Scheduled"], "Check events state in list events call") return
def test_01_snapshot_root_disk(self): """Test Snapshot Root Disk """ # Validate the following # 1. listSnapshots should list the snapshot that was created. # 2. verify that secondary storage NFS share contains # the reqd volume under # /secondary/snapshots//$account_id/$volumeid/$snapshot_uuid # 3. verify backup_snap_id was non null in the `snapshots` table # 4. Verify that zoneid is returned in listSnapshots API response volumes = list_volumes( self.apiclient, virtualmachineid=self.virtual_machine_with_disk.id, type='ROOT', listall=True) snapshot = Snapshot.create(self.apiclient, volumes[0].id, account=self.account.name, domainid=self.account.domainid) self.cleanup.append(snapshot) self.debug("Snapshot created: ID - %s" % snapshot.id) snapshots = list_snapshots(self.apiclient, id=snapshot.id) self.assertEqual(isinstance(snapshots, list), True, "Check list response returns a valid list") self.assertNotEqual(snapshots, None, "Check if result exists in list item call") self.assertEqual(snapshots[0].id, snapshot.id, "Check resource id in list resources call") self.assertIsNotNone(snapshots[0].zoneid, "Zone id is not none in listSnapshots") self.assertEqual(snapshots[0].zoneid, self.zone.id, "Check zone id in the list snapshots") self.debug( "select backup_snap_id, account_id, volume_id from snapshots where uuid = '%s';" % str(snapshot.id)) qresultset = self.dbclient.execute( "select backup_snap_id, account_id, volume_id from snapshots where uuid = '%s';" % str(snapshot.id)) self.assertNotEqual(len(qresultset), 0, "Check DB Query result set") qresult = qresultset[0] snapshot_uuid = qresult[0] # backup_snap_id = snapshot UUID self.assertNotEqual(str(snapshot_uuid), 'NULL', "Check if backup_snap_id is not null") self.assertTrue( is_snapshot_on_nfs(self.apiclient, self.dbclient, self.config, self.zone.id, snapshot.id)) return
def setUpClass(cls): cls.testClient = super(TestAccountSnapshotClean, cls).getClsTestClient() cls.api_client = cls.testClient.getApiClient() cls.services = Services().services # Get Zone, Domain and templates cls.domain = get_domain(cls.api_client) cls.zone = get_zone(cls.api_client, cls.testClient.getZoneForTests()) cls.services['mode'] = cls.zone.networktype cls.hypervisor = cls.testClient.getHypervisorInfo() if cls.hypervisor.lower() in ['lxc']: raise unittest.SkipTest("snapshots are not supported on %s" % cls.hypervisor.lower()) template = get_template(cls.api_client, cls.zone.id, cls.services["ostype"]) cls.services["server"]["zoneid"] = cls.zone.id cls.services["template"] = template.id cls._cleanup = [] try: # Create VMs, NAT Rules etc cls.account = Account.create(cls.api_client, cls.services["account"], domainid=cls.domain.id) cls.services["account"] = cls.account.name if cls.zone.localstorageenabled: cls.services["service_offering"]["storagetype"] = "local" cls.service_offering = ServiceOffering.create( cls.api_client, cls.services["service_offering"]) cls.virtual_machine = VirtualMachine.create( cls.api_client, cls.services["server"], templateid=template.id, accountid=cls.account.name, domainid=cls.account.domainid, serviceofferingid=cls.service_offering.id) # Get the Root disk of VM volumes = list_volumes(cls.api_client, virtualmachineid=cls.virtual_machine.id, type='ROOT', listall=True) volume = volumes[0] # Create a snapshot from the ROOTDISK cls.snapshot = Snapshot.create(cls.api_client, volume.id) except Exception as e: cls.tearDownClass() unittest.SkipTest("setupClass fails for %s" % cls.__name__) raise e return
def test_01_check_revert_snapshot(self): """ Test revert snapshot on XenServer # 1. Deploy a VM. # 2. Take VM snapshot. # 3. Verify that volume snapshot fails with error can not create volume snapshot for VM with VM-snapshot """ # Step 1 vm = VirtualMachine.create( self.userapiclient, self.testdata["small"], templateid=self.template.id, accountid=self.account.name, domainid=self.account.domainid, serviceofferingid=self.service_offering.id, zoneid=self.zone.id, ) volumes_cluster_list = list_volumes(self.apiclient, virtualmachineid=vm.id, type='ROOT', listall=True) volume_list_validation = validateList(volumes_cluster_list) self.assertEqual( volume_list_validation[0], PASS, "Event list validation failed due to %s" % volume_list_validation[2]) root_volume = volumes_cluster_list[0] #Step 2 vm_snap = VmSnapshot.create(self.apiclient, vm.id) self.assertEqual(vm_snap.state, "Ready", "Check the snapshot of vm is ready!") #Step 3 with self.assertRaises(Exception): Snapshot.create(self.apiclient, root_volume.id) return
def test_01_test_vm_volume_snapshot(self): """ @Desc: Test that Volume snapshot for root volume is allowed when VM snapshot is present for the VM @Steps: 1: Deploy a VM and create a VM snapshot for VM 2: Try to create snapshot for the root volume of the VM, It should not fail """ # Creating Virtual Machine virtual_machine = VirtualMachine.create( self.apiclient, self.services["virtual_machine"], accountid=self.account.name, domainid=self.account.domainid, serviceofferingid=self.service_offering.id, ) VmSnapshot.create( self.apiclient, virtual_machine.id, ) volumes = Volume.list(self.apiclient, virtualmachineid=virtual_machine.id, type="ROOT", listall=True) self.assertEqual(validateList(volumes)[0], PASS, "Failed to get root volume of the VM") snapshot = Snapshot.create( self.apiclient, volumes[0].id, account=self.account.name, domainid=self.account.domainid ) self.debug("Snapshot created: ID - %s" % snapshot.id) snapshots = list_snapshots( self.apiclient, id=snapshot.id ) self.assertEqual( validateList(snapshots)[0], PASS, "Invalid snapshot list" ) self.assertEqual( snapshots[0].id, snapshot.id, "Check resource id in list resources call" ) return
def test_05_snapshot_root_disk_working_vm_on_remote(self): """ Snapshot root disk on running virtual machine on remote""" volume = list_volumes(self.apiclient, virtualmachineid=self.virtual_machine.id, type="ROOT", listall=True) snapshot = Snapshot.create(self.apiclient, volume[0].id, account=self.account.name, domainid=self.account.domainid) self.assertIsNotNone(snapshot, "Could not create snapshot from ROOT")
def test_14_snapshot_root_vol_with_uuid(self): list = list_volumes(self.apiclient, virtualmachineid = self.virtual_machine.id, type = "ROOT") self.assertIsNotNone(list, "Could not find ROOT volume") self.helper.storpool_volume_globalid(list[0]) snapshot = Snapshot.create(self.apiclient, volume_id = list[0].id,) self.assertIsNotNone(snapshot, "Could not create snapshot") self.helper.storpool_snapshot_globalid(snapshot) self._cleanup.append(snapshot)
def create_snapshot(cls, bypassed, virtual_machine): volume = Volume.list( cls.testClass.apiclient, virtualmachineid = virtual_machine.id, type = "ROOT" ) cls.bypass_secondary(bypassed) cfg.logger.info('Create snapshot bypassed secondary %s' % bypassed) return Snapshot.create( cls.testClass.apiclient, volume_id = volume[0].id )
def test_08_snapshot_detached_volume(self): ''' Test Snapshot Detached Volume ''' self.virtual_machine.stop( self.apiclient, forced = True ) self.volume = self.virtual_machine.attach_volume( self.apiclient, self.volume ) self.assertIsNotNone(self.volume, "Attach: Is none") self.volume = self.virtual_machine.detach_volume( self.apiclient, self.volume ) self.assertIsNotNone(self.volume, "Detach: Is none") snapshot = Snapshot.create( self.apiclient, self.volume.id, account=self.account.name, domainid=self.account.domainid, ) try: cmd = getVolumeSnapshotDetails.getVolumeSnapshotDetailsCmd() cmd.snapshotid = snapshot.id snapshot_details = self.apiclient.getVolumeSnapshotDetails(cmd) flag = False for s in snapshot_details: if s["snapshotDetailsName"] == snapshot.id: name = s["snapshotDetailsValue"].split("/")[3] sp_snapshot = self.spapi.snapshotList(snapshotName = "~" + name) self.debug('################ %s' % sp_snapshot) flag = True if flag == False: raise Exception("Could not find snapshot in snapshot details") except spapi.ApiError as err: raise Exception(err) self.assertIsNotNone(snapshot, "Snapshot is None") self.assertIsInstance(snapshot, Snapshot, "Snapshot is not Instance of Snappshot") snapshot = Snapshot.delete( snapshot, self.apiclient ) self.assertIsNone(snapshot, "Snapshot was not deleted")
def test_02_snapshot_data_disk(self): """Test Snapshot Data Disk """ if self.hypervisor.lower() in ['hyperv']: self.skipTest("Snapshots feature is not supported on Hyper-V") volume = list_volumes( self.apiclient, virtualmachineid=self.virtual_machine_with_disk.id, type='DATADISK', listall=True ) self.assertEqual( isinstance(volume, list), True, "Check list response returns a valid list" ) self.debug("Creating a Snapshot from data volume: %s" % volume[0].id) snapshot = Snapshot.create( self.apiclient, volume[0].id, account=self.account.name, domainid=self.account.domainid ) snapshots = list_snapshots( self.apiclient, id=snapshot.id ) self.assertEqual( isinstance(snapshots, list), True, "Check list response returns a valid list" ) self.assertNotEqual( snapshots, None, "Check if result exists in list item call" ) self.assertEqual( snapshots[0].id, snapshot.id, "Check resource id in list resources call" ) self.assertTrue( is_snapshot_on_nfs( self.apiclient, self.dbclient, self.config, self.zone.id, snapshot.id)) return
def test_12_snapshot_detached_vol_with_uuid(self): #volume is created with UUID, but after DB update, has to be with it's globalId volume = Volume.list(self.apiclient, id = self.volume6.id ) self.helper.storpool_volume_globalid(volume[0]) snapshot = Snapshot.create(self.apiclient, volume_id = self.volume6.id,) self.assertIsNotNone(snapshot, "Could not create snapshot") self.helper.storpool_snapshot_globalid(snapshot) self._cleanup.append(snapshot)
def test_01_test_vm_volume_snapshot(self): """ @Desc: Test that Volume snapshot for root volume is not allowed when VM snapshot is present for the VM @Steps: 1: Deploy a VM and create a VM snapshot for VM 2: Try to create snapshot for the root volume of the VM, It should expect Exception """ # Creating Virtual Machine virtual_machine = VirtualMachine.create( self.apiclient, self.services["virtual_machine"], accountid=self.account.name, domainid=self.account.domainid, serviceofferingid=self.service_offering.id, ) VmSnapshot.create( self.apiclient, virtual_machine.id, ) volumes = Volume.list(self.apiclient, virtualmachineid=virtual_machine.id, type="ROOT", listall=True) self.assertEqual( validateList(volumes)[0], PASS, "Failed to get root volume of the VM") volume = volumes[0] with self.assertRaises(Exception): Snapshot.create(self.apiclient, volume_id=volume.id) return
def test_01_test_vm_volume_snapshot(self): """ @Desc: Test that Volume snapshot for root volume is not allowed when VM snapshot is present for the VM @Steps: 1: Deploy a VM and create a VM snapshot for VM 2: Try to create snapshot for the root volume of the VM, It should expect Exception """ # Creating Virtual Machine virtual_machine = VirtualMachine.create( self.apiclient, self.services["virtual_machine"], accountid=self.account.name, domainid=self.account.domainid, serviceofferingid=self.service_offering.id, ) VmSnapshot.create( self.apiclient, virtual_machine.id, ) volumes = Volume.list(self.apiclient, virtualmachineid=virtual_machine.id, type="ROOT", listall=True) self.assertEqual(validateList(volumes)[0], PASS, "Failed to get root volume of the VM") volume = volumes[0] with self.assertRaises(Exception): Snapshot.create(self.apiclient, volume_id=volume.id) return
def test_04_template_from_snapshot(self): """Create Template from snapshot """ # Validate the following # 2. Snapshot the Root disk # 3. Create Template from snapshot # 4. Deploy Virtual machine using this template # 5. VM should be in running state userapiclient = self.testClient.getUserApiClient(UserName=self.account.name, DomainName=self.account.domain) volumes = Volume.list(userapiclient, virtualmachineid=self.virtual_machine.id, type="ROOT", listall=True) volume = volumes[0] self.debug("Creating a snapshot from volume: %s" % volume.id) # Create a snapshot of volume snapshot = Snapshot.create(userapiclient, volume.id, account=self.account.name, domainid=self.account.domainid) self.debug("Creating a template from snapshot: %s" % snapshot.id) # Generate template from the snapshot template = Template.create_from_snapshot(userapiclient, snapshot, self.services["template"]) self.cleanup.append(template) # Verify created template templates = Template.list( userapiclient, templatefilter=self.services["template"]["templatefilter"], id=template.id ) self.assertNotEqual(templates, None, "Check if result exists in list item call") self.assertEqual(templates[0].id, template.id, "Check new template id in list resources call") self.debug("Deploying a VM from template: %s" % template.id) # Deploy new virtual machine using template virtual_machine = VirtualMachine.create( userapiclient, self.services["virtual_machine"], templateid=template.id, accountid=self.account.name, domainid=self.account.domainid, serviceofferingid=self.service_offering.id, ) self.cleanup.append(virtual_machine) vm_response = VirtualMachine.list( userapiclient, id=virtual_machine.id, account=self.account.name, domainid=self.account.domainid ) self.assertEqual(isinstance(vm_response, list), True, "Check for list VM response return valid list") # Verify VM response to check whether VM deployment was successful self.assertNotEqual(len(vm_response), 0, "Check VMs available in List VMs response") vm = vm_response[0] self.assertEqual(vm.state, "Running", "Check the state of VM created from Template") return
def test_07_snapshot_to_volume(self): ''' Create volume from snapshot ''' snapshot = Snapshot.create( self.apiclient, volume_id = self.volume_2.id, account=self.account.name, domainid=self.account.domainid, ) try: cmd = getVolumeSnapshotDetails.getVolumeSnapshotDetailsCmd() cmd.snapshotid = snapshot.id snapshot_details = self.apiclient.getVolumeSnapshotDetails(cmd) flag = False for s in snapshot_details: if s["snapshotDetailsName"] == snapshot.id: name = s["snapshotDetailsValue"].split("/")[3] sp_snapshot = self.spapi.snapshotList(snapshotName = "~" + name) self.debug('################ %s' % sp_snapshot) flag = True if flag == False: raise Exception("Could not find snapshot in snapshot details") except spapi.ApiError as err: raise Exception(err) self.assertIsNotNone(snapshot, "Could not create snapshot") self.assertIsInstance(snapshot, Snapshot, "Snapshot is not an instance of Snapshot") volume = self.helper.create_custom_disk( self.apiclient, {"diskname":"StorPoolDisk" }, account=self.account.name, domainid=self.account.domainid, zoneid = self.zone.id, snapshotid = snapshot.id ) listvol = Volume.list( self.apiclient, id=volume.id, listall= True ) name = listvol[0].path.split("/")[3] try: spvolume = self.spapi.volumeList(volumeName="~" + name) except spapi.ApiError as err: raise Exception(err) self.assertIsNotNone(volume, "Could not create volume from snapshot") self.assertIsInstance(volume, Volume, "Volume is not instance of Volume")
def test_02_check_size_snapshotTemplate(self): """TS_BUG_010-Test check size of snapshot and template """ # Validate the following # 1. Deploy VM using default template, small service offering # and small data disk offering. # 2. Perform snapshot on the root disk of this VM. # 3. Create a template from snapshot. # 4. Check the size of snapshot and template # Create a snapshot from the ROOTDISK snapshot = Snapshot.create(self.apiclient, self.volume.id, account=self.account.name, domainid=self.account.domainid) self.debug("Created snapshot with ID: %s" % snapshot.id) snapshots = Snapshot.list(self.apiclient, id=snapshot.id) self.assertEqual(isinstance(snapshots, list), True, "Check list response returns a valid list") self.assertNotEqual(snapshots, None, "Check if result exists in list snapshots call") self.assertEqual(snapshots[0].id, snapshot.id, "Check snapshot id in list resources call") # Generate template from the snapshot template = Template.create_from_snapshot(self.apiclient, snapshot, self.services["template"]) self.cleanup.append(template) self.debug("Created template from snapshot with ID: %s" % template.id) templates = Template.list( self.apiclient, templatefilter=\ self.services["template"]["templatefilter"], id=template.id ) self.assertEqual(isinstance(templates, list), True, "Check list response returns a valid list") self.assertNotEqual(templates, None, "Check if result exists in list item call") self.assertEqual(templates[0].isready, True, "Check new template state in list templates call") # check size of template with that of snapshot self.assertEqual( templates[0].size, self.volume.size, "Derived template size (%s) does not match snapshot size (%s)" % (templates[0].size, self.volume.size)) return
def createSnapshotFromVirtualMachineVolume(apiclient, account, vmid): """Create snapshot from volume""" try: volumes = Volume.list(apiclient, account=account.name, domainid=account.domainid, virtualmachineid=vmid) validationresult = validateList(volumes) assert validateList(volumes)[0] == PASS, "List volumes should return a valid response" snapshot = Snapshot.create(apiclient, volume_id=volumes[0].id, account=account.name, domainid=account.domainid) snapshots = Snapshot.list(apiclient, id=snapshot.id, listall=True) validationresult = validateList(snapshots) assert validationresult[0] == PASS, "List snapshot should return a valid list" except Exception as e: return [FAIL, e] return [PASS, snapshot]
def tearDown(self): try: root_volume = list_volumes(self.apiclient, virtualmachineid=self.vm_1.id, type='ROOT', listall=True) self.vm_1.stop(self.apiclient) snaps = [] for i in range(2): root_vol_snap = Snapshot.create(self.apiclient, root_volume[0].id) self.assertEqual( root_vol_snap.state, "BackedUp", "Check if the data vol snapshot state is correct ") snaps.append(root_vol_snap) for snap in snaps: self.assertNotEqual( self.dbclient.execute( "select status from snapshots where name='%s'" % snap.name), "Destroyed") for snap in snaps: self.assertTrue( is_snapshot_on_nfs(self.apiclient, self.dbclient, self.config, self.zone.id, snap.id)) self.account.delete(self.apiclient) for snap in snaps: self.assertEqual( self.dbclient.execute( "select status from snapshots where name='%s'" % snap.name)[0][0], "Destroyed") for snap in snaps: self.assertFalse( is_snapshot_on_nfs(self.apiclient, self.dbclient, self.config, self.zone.id, snap.id)) cleanup_resources(self.apiclient, self.cleanup) except Exception as e: raise Exception("Warning: Exception during cleanup : %s" % e) return
def test_01_snapshot_data_disk(self): """Test Snapshot Data Disk """ volume = list_volumes( self.apiclient, virtualmachineid=self.virtual_machine_with_disk.id, type='DATADISK', listall=True ) self.assertEqual( isinstance(volume, list), True, "Check list response returns a valid list" ) self.debug("Creating a Snapshot from data volume: %s" % volume[0].id) snapshot = Snapshot.create( self.apiclient, volume[0].id, account=self.account.name, domainid=self.account.domainid, asyncbackup=True ) snapshots = list_snapshots( self.apiclient, id=snapshot.id ) self.assertEqual( isinstance(snapshots, list), True, "Check list response returns a valid list" ) self.assertNotEqual( snapshots, None, "Check if result exists in list item call" ) self.assertEqual( snapshots[0].id, snapshot.id, "Check resource id in list resources call" ) self.assertEqual( snapshot.state, "BackingUp", "Check resource state in list resources call" ) return
def test_13_snapshot_to_volume_from_secondary(self): ''' Try to create volume from snapshot which is deleted from primary and exists on secondary storage ''' virtual_machine = VirtualMachine.create(self.apiclient, {"name":"StorPool-%s" % uuid.uuid4() }, zoneid=self.zone.id, templateid=self.template.id, accountid=self.account.name, domainid=self.account.domainid, serviceofferingid=self.service_offering.id, hypervisor=self.hypervisor, rootdisksize=10 ) volume1 = list_volumes( self.apiclient, virtualmachineid = self.virtual_machine.id, type = "ROOT", listall = True ) Configurations.update(self.apiclient, name = "sp.bypass.secondary.storage", value = "false") snapshot = Snapshot.create( self.apiclient, volume_id = volume1[0].id, account=self.account.name, domainid=self.account.domainid, ) snapshot_name = self.getSnapshotName(snapshot) self.spapi.snapshotDelete(snapshotName = snapshot_name) self.assertIsNotNone(snapshot, "Could not create snapshot") self.assertIsInstance(snapshot, Snapshot, "Snapshot is not an instance of Snapshot") volume = self.helper.create_custom_disk( self.apiclient, {"diskname":"StorPoolDisk" }, account=self.account.name, domainid=self.account.domainid, zoneid = self.zone.id, snapshotid = snapshot.id ) self.assertIsNotNone(volume, "Could not create volume from snapshot") self.assertIsInstance(volume, Volume, "Volume is not instance of Volume")
def test_23_template_from_snapshot_glid_on_secondary(self): volume = list_volumes(self.apiclient, virtualmachineid = self.virtual_machine6.id, type = "ROOT") self.helper.bypass_secondary(False) snapshot = Snapshot.create(self.apiclient, volume_id = volume[0].id,) self.helper.storpool_snapshot_globalid(snapshot) template = self.helper.create_template_from_snapshot_or_volume(services = self.services, snapshotid = snapshot.id) self.helper.create_vm_from_template(template) self._cleanup.append(template) self._cleanup.append(snapshot)
def CreateSnapshot(self, root_volume, is_recurring): """Create Snapshot""" if is_recurring: self.testdata["recurring_snapshot"]["intervaltype"] = 'HOURLY' self.testdata["recurring_snapshot"]["schedule"] = 1 recurring_snapshot = SnapshotPolicy.create( self.apiclient, root_volume.id, self.testdata["recurring_snapshot"]) self.rec_policy_pool.append(recurring_snapshot) else: root_vol_snapshot = Snapshot.create(self.apiclient, root_volume.id) self.snapshot_pool.append(root_vol_snapshot) return
def test_05_snapshot_events(self): """Test snapshot events """ # Validate the following # 1. Perform snapshot on the root disk of this VM and # check the events/alerts. # 2. delete the snapshots and check the events/alerts # 3. listEvents() shows created/deleted snapshot events if self.hypervisor.lower() in ['hyperv']: self.skipTest("Snapshots feature is not supported on Hyper-V") # Get the Root disk of VM volumes = list_volumes(self.apiclient, virtualmachineid=self.virtual_machine.id, type='ROOT', listall=True) self.assertEqual(isinstance(volumes, list), True, "Check list response returns a valid list") volume = volumes[0] # Create a snapshot from the ROOTDISK snapshot = Snapshot.create(self.apiclient, volume.id) self.debug("Snapshot created with ID: %s" % snapshot.id) snapshots = list_snapshots(self.apiclient, id=snapshot.id) self.assertEqual(isinstance(snapshots, list), True, "Check list response returns a valid list") self.assertNotEqual(snapshots, None, "Check if result exists in list snapshots call") self.assertEqual(snapshots[0].id, snapshot.id, "Check snapshot id in list resources call") snapshot.delete(self.apiclient) # Sleep to ensure that snapshot is deleted properly time.sleep(self.services["sleep"]) events = list_events(self.apiclient, account=self.account.name, domainid=self.account.domainid, type='SNAPSHOT.DELETE') self.assertEqual(isinstance(events, list), True, "Check list response returns a valid list") self.assertNotEqual(events, None, "Check if event exists in list events call") self.assertIn(events[0].state, ['Completed', 'Scheduled'], "Check events state in list events call") return
def CreateSnapshot(self, root_volume, is_recurring): """Create Snapshot""" if is_recurring: self.testdata["recurring_snapshot"]["intervaltype"] = 'HOURLY' self.testdata["recurring_snapshot"]["schedule"] = 1 recurring_snapshot = SnapshotPolicy.create( self.apiclient, root_volume.id, self.testdata["recurring_snapshot"] ) self.rec_policy_pool.append(recurring_snapshot) else: root_vol_snapshot = Snapshot.create( self.apiclient, root_volume.id) self.snapshot_pool.append(root_vol_snapshot) return
def test_06_create_snapshots_in_project(self): """Test create snapshots in project """ # Validate the following # 1. Create a project # 2. Add some snapshots to the project # 3. Verify snapshot created inside project can only be used in inside # the project self.debug("Deploying VM for Project: %s" % self.project.id) virtual_machine_1 = VirtualMachine.create( self.apiclient, self.services["server"], templateid=self.template.id, serviceofferingid=self.service_offering.id, projectid=self.project.id, ) self.cleanup.append(virtual_machine_1) # Verify VM state self.assertEqual(virtual_machine_1.state, "Running", "Check VM state is Running or not") # Get the Root disk of VM volumes = list_volumes(self.apiclient, projectid=self.project.id, type="ROOT", listall=True) self.assertEqual(isinstance(volumes, list), True, "Check for list volume response return valid data") self.debug("Creating snapshot from volume: %s" % volumes[0].id) # Create a snapshot from the ROOTDISK snapshot = Snapshot.create(self.apiclient, volumes[0].id, projectid=self.project.id) self.cleanup.append(snapshot) # Verify Snapshot state self.assertEqual( snapshot.state in ["BackedUp", "CreatedOnPrimary", "Allocated"], True, "Check Snapshot state is in one of the mentioned possible states, \ It is currently: %s" % snapshot.state, ) snapshots = Snapshot.list(self.apiclient, account=self.account.name, domainid=self.account.domainid) self.assertEqual(snapshots, None, "Snapshots should not be available outside the project") return
def create_vm(self, account, domain, isRunning=False, project =None, limit =None, pfrule =False, lbrule =None, natrule =None, volume =None, snapshot =False): #TODO: Implemnt pfrule/lbrule/natrule self.debug("Deploying instance in the account: %s" % account.name) self.virtual_machine = VirtualMachine.create(self.apiclient, self.services["virtual_machine"], accountid=account.name, domainid=domain.id, serviceofferingid=self.service_offering.id, mode=self.zone.networktype if pfrule else 'basic', projectid=project.id if project else None) self.debug("Deployed instance in account: %s" % account.name) list_virtual_machines(self.apiclient, id=self.virtual_machine.id) if snapshot: volumes = list_volumes(self.apiclient, virtualmachineid=self.virtual_machine.id, type='ROOT', listall=True) self.snapshot = Snapshot.create(self.apiclient, volumes[0].id, account=account.name, domainid=account.domainid) if volume: self.virtual_machine.attach_volume(self.apiclient, volume) if not isRunning: self.virtual_machine.stop(self.apiclient) self.cleanup.append(self.virtual_machine)
def test_01_verify_events_table(self): """ Test events table # 1. Deploy a VM. # 2. Take VM snapshot. # 3. Verify that events table records UUID of the volume in descrption instead of volume ID """ # Step 1 # Create VM vm = VirtualMachine.create( self.userapiclient, self.testdata["small"], templateid=self.template.id, accountid=self.account.name, domainid=self.account.domainid, serviceofferingid=self.service_offering.id, zoneid=self.zone.id, ) volumes_list = list_volumes( self.apiclient, virtualmachineid=vm.id, type='ROOT', listall=True ) volume_list_validation = validateList(volumes_list) self.assertEqual( volume_list_validation[0], PASS, "volume list validation failed due to %s" % volume_list_validation[2] ) root_volume = volumes_list[0] # Step 2 # Create snapshot of root volume snapshot = Snapshot.create( self.apiclient, root_volume.id) snapshots_list = Snapshot.list(self.userapiclient, id=snapshot.id) status = validateList(snapshots_list) self.assertEqual(status[0], PASS, "Snapshots List Validation Failed") self.assertEqual( snapshot.state, "BackedUp", "Check if snapshot gets created properly" ) # Step 3 qresultset = self.dbclient.execute( "select description from event where type='SNAPSHOT.CREATE' AND \ description like '%%%s%%'" % root_volume.id) event_validation_result = validateList(qresultset) self.assertEqual( event_validation_result[0], PASS, "event list validation failed due to %s" % event_validation_result[2] ) self.assertNotEqual( len(qresultset), 0, "Check if events table records UUID of the volume" ) return
def test_01_storage_snapshots_limits(self): """ Storage and Snapshot Limit 1. Create Snapshot of ROOT disk. 2. Verify the Secondary Storage value is increased by the size of snapshot. 3. Delete Snaphshot. 4. Verify the Secondary Storage value is decreased by the size of snapshot. 5. Set the Snapshot limit of Account. 6. Create Snasphots till limit is reached. 7. Create Snapshot of ROOT Volume. Creation should fail. 8. Delete few Snapshots. 9. Create Snapshot again. Creation should succeed. """ # Get ROOT Volume root_volumes_list = Volume.list( self.userapiclient, virtualmachineid=self.vm.id, type='ROOT' ) status = validateList(root_volumes_list) self.assertEqual(status[0], PASS, "ROOT Volume List Validation Failed") root_volume = root_volumes_list[0] self.data_volume_created = Volume.create( self.userapiclient, self.testdata["volume"], zoneid=self.zone.id, account=self.account.name, domainid=self.account.domainid, diskofferingid=self.disk_offering.id ) self.cleanup.append(self.data_volume_created) data_volumes_list = Volume.list( self.userapiclient, id=self.data_volume_created.id ) status = validateList(data_volumes_list) self.assertEqual(status[0], PASS, "DATA Volume List Validation Failed") self.data_volume = data_volumes_list[0] self.vm.attach_volume( self.userapiclient, self.data_volume ) # Get Secondary Storage Value from Database qryresult_before_snapshot = self.dbclient.execute( " select id, account_name, secondaryStorageTotal\ from account_view where account_name = '%s';" % self.account.name) status = validateList(qryresult_before_snapshot) self.assertEqual( status[0], PASS, "Check sql query to return SecondaryStorageTotal of account") secStorageBeforeSnapshot = qryresult_before_snapshot[0][2] # Step 1 snapshot = Snapshot.create( self.userapiclient, root_volume.id) snapshots_list = Snapshot.list(self.userapiclient, id=snapshot.id) status = validateList(snapshots_list) self.assertEqual(status[0], PASS, "Snapshots List Validation Failed") # Verify Snapshot state self.assertEqual( snapshots_list[0].state.lower() in [ BACKED_UP, ], True, "Snapshot state is not as expected. It is %s" % snapshots_list[0].state ) # Step 2 qryresult_after_snapshot = self.dbclient.execute( " select id, account_name, secondaryStorageTotal\ from account_view where account_name = '%s';" % self.account.name) status = validateList(qryresult_after_snapshot) self.assertEqual( status[0], PASS, "Check sql query to return SecondaryStorageTotal of account") secStorageAfterSnapshotCreated = qryresult_after_snapshot[0][2] snapshot_size = snapshots_list[0].physicalsize secStorageIncreased = secStorageBeforeSnapshot + \ snapshot_size self.assertEqual( secStorageIncreased, secStorageAfterSnapshotCreated, "Secondary storage Total after Snapshot\ should be incremented by size of snapshot.") # Step 3 snapshot.delete(self.apiclient) snapshots_list = Snapshot.list(self.userapiclient, id=snapshot.id) status = validateList(snapshots_list) self.assertEqual(status[0], FAIL, "Snapshots Not Deleted.") # Step 4 qryresult_after_snapshot_deleted = self.dbclient.execute( " select id, account_name, secondaryStorageTotal\ from account_view where account_name = '%s';" % self.account.name) status = validateList(qryresult_after_snapshot_deleted) self.assertEqual( status[0], PASS, "Check sql query to return SecondaryStorageTotal of account") secStorageAfterSnapshotDeleted = qryresult_after_snapshot_deleted[0][2] secStorageDecreased = secStorageAfterSnapshotCreated - \ snapshot_size self.assertEqual( secStorageDecreased, secStorageAfterSnapshotDeleted, "Secondary storage Total after Snapshot\ should be incremented by size of snapshot.") # Step 5 # Set Snapshot Limit for account Resources.updateLimit(self.apiclient, resourcetype=3, max=1, account=self.account.name, domainid=self.account.domainid) # Step 6 snapshot = Snapshot.create( self.userapiclient, root_volume.id) snapshots_list = Snapshot.list(self.userapiclient, id=snapshot.id) status = validateList(snapshots_list) self.assertEqual(status[0], PASS, "Snapshots List Validation Failed") # Verify Snapshot state self.assertEqual( snapshots_list[0].state.lower() in [ BACKED_UP, ], True, "Snapshot state is not as expected. It is %s" % snapshots_list[0].state ) # Step 7 with self.assertRaises(Exception): Snapshot.create( self.userapiclient, self.data_volume.id) # Step 8 snapshot.delete(self.userapiclient) snapshots_list = Snapshot.list(self.userapiclient, id=snapshot.id) status = validateList(snapshots_list) self.assertEqual(status[0], FAIL, "Snapshots Not Deleted.") # Step 9 snapshot = Snapshot.create( self.userapiclient, root_volume.id) snapshots_list = Snapshot.list(self.userapiclient, id=snapshot.id) status = validateList(snapshots_list) self.assertEqual(status[0], PASS, "Snapshots List Validation Failed") # Verify Snapshot state self.assertEqual( snapshots_list[0].state.lower() in [ BACKED_UP, ], True, "Snapshot state is not as expected. It is %s" % snapshots_list[0].state ) return
def tearDown(self): try: root_volume = list_volumes( self.apiclient, virtualmachineid=self.vm_1.id, type='ROOT', listall=True ) self.vm_1.stop(self.apiclient) snaps = [] for i in range(2): root_vol_snap = Snapshot.create( self.apiclient, root_volume[0].id) self.assertEqual( root_vol_snap.state, "BackedUp", "Check if the data vol snapshot state is correct " ) snaps.append(root_vol_snap) for snap in snaps: self.assertNotEqual( self.dbclient.execute( "select status from snapshots where name='%s'" % snap.name), "Destroyed" ) for snap in snaps: self.assertTrue( is_snapshot_on_nfs( self.apiclient, self.dbclient, self.config, self.zone.id, snap.id)) self.account.delete(self.apiclient) for snap in snaps: self.assertEqual( self.dbclient.execute( "select status from snapshots where name='%s'" % snap.name)[0][0], "Destroyed" ) for snap in snaps: self.assertFalse( is_snapshot_on_nfs( self.apiclient, self.dbclient, self.config, self.zone.id, snap.id)) cleanup_resources(self.apiclient, self.cleanup) except Exception as e: raise Exception("Warning: Exception during cleanup : %s" % e) return
def test_03_reuse_template_name(self): """TS_BUG_011-Test Reusing deleted template name """ # Validate the following # 1. Deploy VM using default template, small service offering # and small data disk offering. # 2. Perform snapshot on the root disk of this VM. # 3. Create a template from snapshot. # 4. Delete the template and create a new template with same name # 5. Template should be created succesfully # Create a snapshot from the ROOTDISK snapshot = Snapshot.create( self.apiclient, self.volume.id, account=self.account.name, domainid=self.account.domainid ) self.debug("Created snapshot with ID: %s" % snapshot.id) snapshots = Snapshot.list( self.apiclient, id=snapshot.id ) self.assertEqual( isinstance(snapshots, list), True, "Check list response returns a valid list" ) self.assertNotEqual( snapshots, None, "Check if result exists in list snapshots call" ) self.assertEqual( snapshots[0].id, snapshot.id, "Check snapshot id in list resources call" ) # Generate template from the snapshot template = Template.create_from_snapshot( self.apiclient, snapshot, self.services["template"], random_name=False ) self.debug("Created template from snapshot: %s" % template.id) templates = Template.list( self.apiclient, templatefilter=\ self.services["template"]["templatefilter"], id=template.id ) self.assertEqual( isinstance(templates, list), True, "Check list response returns a valid list" ) self.assertNotEqual( templates, None, "Check if result exists in list item call" ) self.assertEqual( templates[0].isready, True, "Check new template state in list templates call" ) self.debug("Deleting template: %s" % template.id) template.delete(self.apiclient) # Wait for some time to ensure template state is reflected in other calls time.sleep(self.services["sleep"]) # Generate template from the snapshot self.debug("Creating template from snapshot: %s with same name" % template.id) template = Template.create_from_snapshot( self.apiclient, snapshot, self.services["template"], random_name=False ) templates = Template.list( self.apiclient, templatefilter=\ self.services["template"]["templatefilter"], id=template.id ) self.assertEqual( isinstance(templates, list), True, "Check list response returns a valid list" ) self.assertNotEqual( templates, None, "Check if result exists in list item call" ) self.assertEqual( templates[0].name, self.services["template"]["name"], "Check the name of the template" ) return
def test_02_check_size_snapshotTemplate(self): """TS_BUG_010-Test check size of snapshot and template """ # Validate the following # 1. Deploy VM using default template, small service offering # and small data disk offering. # 2. Perform snapshot on the root disk of this VM. # 3. Create a template from snapshot. # 4. Check the size of snapshot and template # Create a snapshot from the ROOTDISK snapshot = Snapshot.create( self.apiclient, self.volume.id, account=self.account.name, domainid=self.account.domainid ) self.debug("Created snapshot with ID: %s" % snapshot.id) snapshots = Snapshot.list( self.apiclient, id=snapshot.id ) self.assertEqual( isinstance(snapshots, list), True, "Check list response returns a valid list" ) self.assertNotEqual( snapshots, None, "Check if result exists in list snapshots call" ) self.assertEqual( snapshots[0].id, snapshot.id, "Check snapshot id in list resources call" ) # Generate template from the snapshot template = Template.create_from_snapshot( self.apiclient, snapshot, self.services["template"] ) self.cleanup.append(template) self.debug("Created template from snapshot with ID: %s" % template.id) templates = Template.list( self.apiclient, templatefilter=\ self.services["template"]["templatefilter"], id=template.id ) self.assertEqual( isinstance(templates, list), True, "Check list response returns a valid list" ) self.assertNotEqual( templates, None, "Check if result exists in list item call" ) self.assertEqual( templates[0].isready, True, "Check new template state in list templates call" ) # check size of template with that of snapshot self.assertEqual( templates[0].size, self.volume.size, "Derived template size (%s) does not match snapshot size (%s)" % (templates[0].size, self.volume.size) ) return
def test_02_list_volume_snapshots_byid(self): """ @Desc: Test to List Volume Snapshots by Id @Steps: Step1: Listing all the volume snapshots for a user Step2: Verifying that list size is 0 Step3: Creating a volume snapshot Step4: Listing all the volume snapshots again for a user Step5: Verifying that list size is 1 Step6: Listing all the volume snapshots by specifying snapshot id Step7: Verifying that list size is 1 Step8: Verifying details of the listed volume snapshot """ if self.hypervisor.lower() in ['hyperv']: raise unittest.SkipTest("This feature is not supported on existing hypervisor. Hence, skipping the test") # Listing all the volume snapshots for a User list_vol_snaps_before = Snapshot.list( self.userapiclient, listall=self.services["listall"] ) # Verifying list size is 0 self.assertIsNone( list_vol_snaps_before, "Volume snapshots exists for newly created user" ) # Listing the root volumes available for the user volumes_list = Volume.list( self.userapiclient, listall=self.services["listall"] ) status = validateList(volumes_list) self.assertEquals( PASS, status[0], "Root volume did not get created while deploying a VM" ) # Verifying list size to be 1 self.assertEquals( 1, len(volumes_list), "More than 1 root volume created for deployed VM" ) root_volume = volumes_list[0] # Creating a volume snapshot snapshot_created = Snapshot.create( self.userapiclient, root_volume.id, ) self.assertIsNotNone( snapshot_created, "Snapshot creation failed" ) self.cleanup.append(snapshot_created) # Listing all the volume snapshots for user again list_vol_snaps_after = Snapshot.list( self.userapiclient, listall=self.services["listall"] ) status = validateList(list_vol_snaps_after) self.assertEquals( PASS, status[0], "Volume snapshot creation failed" ) # Verifying that list size is 1 self.assertEquals( 1, len(list_vol_snaps_after), "Failed to create Volume snapshot" ) # Listing volume snapshot by id list_vol_snapshot = Snapshot.list( self.userapiclient, listall=self.services["listall"], id=snapshot_created.id ) status = validateList(list_vol_snapshot) self.assertEquals( PASS, status[0], "Failed to list Volume snapshot by Id" ) # Verifying that list size is 1 self.assertEquals( 1, len(list_vol_snapshot), "Size of the list volume snapshot by Id is not matching" ) # Verifying details of the listed snapshot to be same as snapshot created above # Creating expected and actual values dictionaries expected_dict = { "id":snapshot_created.id, "name":snapshot_created.name, "state":snapshot_created.state, "intervaltype":snapshot_created.intervaltype, "account":snapshot_created.account, "domain":snapshot_created.domainid, "volume":snapshot_created.volumeid } actual_dict = { "id":list_vol_snapshot[0].id, "name":list_vol_snapshot[0].name, "state":list_vol_snapshot[0].state, "intervaltype":list_vol_snapshot[0].intervaltype, "account":list_vol_snapshot[0].account, "domain":list_vol_snapshot[0].domainid, "volume":list_vol_snapshot[0].volumeid } vol_snapshot_status = self.__verify_values( expected_dict, actual_dict ) self.assertEqual( True, vol_snapshot_status, "Listed Volume Snapshot details are not as expected" ) return
def test_01_list_volume_snapshots_pagination(self): """ @Desc: Test to List Volume Snapshots pagination @steps: Step1: Listing all the volume snapshots for a user Step2: Verifying that list size is 0 Step3: Creating (page size + 1) number of volume snapshots Step4: Listing all the volume snapshots again for a user Step5: Verifying that list size is (page size + 1) Step6: Listing all the volume snapshots in page1 Step7: Verifying that list size is (page size) Step8: Listing all the volume snapshots in page2 Step9: Verifying that list size is 1 Step10: Deleting the volume snapshot present in page 2 Step11: Listing all the volume snapshots in page2 Step12: Verifying that list size is 0 """ if self.hypervisor.lower() in ['hyperv']: raise unittest.SkipTest("This feature is not supported on existing hypervisor. Hence, skipping the test") # Listing all the volume snapshots for a User list_vol_snaps_before = Snapshot.list( self.userapiclient, listall=self.services["listall"] ) # Verifying list size is 0 self.assertIsNone( list_vol_snaps_before, "Volume snapshots exists for newly created user" ) # Listing the root volumes available for the user volumes_list = Volume.list( self.userapiclient, listall=self.services["listall"] ) status = validateList(volumes_list) self.assertEquals( PASS, status[0], "Root volume did not get created while deploying a VM" ) # Verifying list size to be 1 self.assertEquals( 1, len(volumes_list), "More than 1 root volume created for deployed VM" ) root_volume = volumes_list[0] # Creating pagesize + 1 number of volume snapshots for i in range(0, (self.services["pagesize"] + 1)): snapshot_created = Snapshot.create( self.userapiclient, root_volume.id, ) self.assertIsNotNone( snapshot_created, "Snapshot creation failed" ) self.cleanup.append(snapshot_created) # Listing all the volume snapshots for user again list_vol_snaps_after = Snapshot.list( self.userapiclient, listall=self.services["listall"] ) status = validateList(list_vol_snaps_after) self.assertEquals( PASS, status[0], "Volume snapshot creation failed" ) # Verifying that list size is pagesize + 1 self.assertEquals( self.services["pagesize"] + 1, len(list_vol_snaps_after), "Failed to create pagesize + 1 number of Volume snapshots" ) # Listing all the volume snapshots in page 1 list_vol_snaps_page1 = Snapshot.list( self.userapiclient, listall=self.services["listall"], page=1, pagesize=self.services["pagesize"] ) status = validateList(list_vol_snaps_page1) self.assertEquals( PASS, status[0], "Failed to list volume snapshots in page 1" ) # Verifying the list size to be equal to pagesize self.assertEquals( self.services["pagesize"], len(list_vol_snaps_page1), "Size of volume snapshots in page 1 is not matching" ) # Listing all the volume snapshots in page 2 list_vol_snaps_page2 = Snapshot.list( self.userapiclient, listall=self.services["listall"], page=2, pagesize=self.services["pagesize"] ) status = validateList(list_vol_snaps_page2) self.assertEquals( PASS, status[0], "Failed to list volume snapshots in page 2" ) # Verifying the list size to be equal to pagesize self.assertEquals( 1, len(list_vol_snaps_page2), "Size of volume snapshots in page 2 is not matching" ) # Deleting the volume snapshot present in page 2 Snapshot.delete( snapshot_created, self.userapiclient ) self.cleanup.remove(snapshot_created) # Listing all the snapshots in page 2 again list_vol_snaps_page2 = Snapshot.list( self.userapiclient, listall=self.services["listall"], page=2, pagesize=self.services["pagesize"] ) # Verifying that list size is 0 self.assertIsNone( list_vol_snaps_page2, "Volume snapshot not deleted from page 2" ) return
def test_03_snapshot_detachedDisk(self): """Test snapshot from detached disk """ # Validate the following # 1. login in VM and write some data on data disk(use fdisk to # partition datadisk,fdisk, and make filesystem using # mkfs.ext3) # 2. Detach the data disk and write some data on data disk # 3. perform the snapshot on the detached volume # 4. listvolumes with VM id shouldn't show the detached volume # 5. listSnapshots should list the snapshot that was created # 6. verify backup_snap_id was non null in the `snapshots` table if self.hypervisor.lower() in ['hyperv']: self.skipTest("Snapshots feature is not supported on Hyper-V") volumes = list_volumes( self.apiclient, virtualmachineid=self.virtual_machine.id, type='DATADISK', listall=True ) self.assertEqual( isinstance(volumes, list), True, "Check list response returns a valid list" ) volume = volumes[0] random_data_0 = random_gen(size=100) random_data_1 = random_gen(size=100) try: ssh_client = self.virtual_machine.get_ssh_client() # Format partition using ext3 format_volume_to_ext3( ssh_client, self.services["volume"][self.hypervisor]["datadiskdevice_1"] ) cmds = [ "mkdir -p %s" % self.services["paths"]["mount_dir"], "mount %s1 %s" % (self.services["volume"][ self.hypervisor]["datadiskdevice_1"], self.services["paths"]["mount_dir"]), "pushd %s" % self.services["paths"]["mount_dir"], "mkdir -p %s/{%s,%s} " % (self.services["paths"]["sub_dir"], self.services["paths"]["sub_lvl_dir1"], self.services["paths"]["sub_lvl_dir2"]), "echo %s > %s/%s/%s" % (random_data_0, self.services["paths"]["sub_dir"], self.services["paths"]["sub_lvl_dir1"], self.services["paths"]["random_data"]), "echo %s > %s/%s/%s" % (random_data_1, self.services["paths"]["sub_dir"], self.services["paths"]["sub_lvl_dir2"], self.services["paths"]["random_data"]), "sync", "umount %s" % (self.services["paths"]["mount_dir"]), ] for c in cmds: self.debug(ssh_client.execute(c)) # detach volume from VM cmd = detachVolume.detachVolumeCmd() cmd.id = volume.id self.apiclient.detachVolume(cmd) # Create snapshot from detached volume snapshot = Snapshot.create(self.apiclient, volume.id) volumes = list_volumes( self.apiclient, virtualmachineid=self.virtual_machine.id, type='DATADISK', listall=True ) self.assertEqual( volumes, None, "Check Volume is detached" ) # Verify the snapshot was created or not snapshots = list_snapshots( self.apiclient, id=snapshot.id ) self.assertNotEqual( snapshots, None, "Check if result exists in list snapshots call" ) self.assertEqual( snapshots[0].id, snapshot.id, "Check snapshot id in list resources call" ) except Exception as e: self.fail("SSH failed for VM with IP: %s - %s" % (self.virtual_machine.ssh_ip, e)) qresultset = self.dbclient.execute( "select id from snapshots where uuid = '%s';" % snapshot.id ) self.assertNotEqual( len(qresultset), 0, "Check DB Query result set" ) qresult = qresultset[0] self.assertNotEqual( str(qresult[0]), 'NULL', "Check if backup_snap_id is not null" ) return
def test_01_create__snapshot_new_resized_rootvolume_size(self): """Test create snapshot on resized root volume # Validate the following # 1. Deploy a VM without any disk offering (only root disk) # 2. Perform(resize) of the root volume # 3. Perform snapshot on resized volume """ # deploy a vm try: if self.updateclone: self.virtual_machine = VirtualMachine.create( self.apiclient, self.services["virtual_machine"], accountid=self.parentd_admin.name, domainid=self.parent_domain.id, serviceofferingid=self.services_offering_vmware.id, mode=self.zone.networktype ) else: self.virtual_machine = VirtualMachine.create( self.apiclient, self.services["virtual_machine"], accountid=self.parentd_admin.name, domainid=self.parent_domain.id, serviceofferingid=self.service_offering.id, mode=self.zone.networktype ) # listVirtual machine list_vms = VirtualMachine.list(self.apiclient, id=self.virtual_machine.id) self.debug( "Verify listVirtualMachines response for virtual machine: %s" % self.virtual_machine.id ) res = validateList(list_vms) self.assertNotEqual(res[2], INVALID_INPUT, "Invalid list response") vm = list_vms[0] self.assertEqual( vm.id, self.virtual_machine.id, "Virtual Machine ids do not match" ) self.assertEqual( vm.name, self.virtual_machine.name, "Virtual Machine names do not match" ) self.assertEqual( vm.state, "Running", msg="VM is not in Running state" ) result = self.chk_volume_resize(self.apiclient, vm) if result: # get root vol from created vm, verify it is correct size list_volume_response = Volume.list( self.apiclient, virtualmachineid= self.virtual_machine.id, type='ROOT', listall='True' ) res = validateList(list_volume_response) self.assertNotEqual(res[2], INVALID_INPUT, "listVolumes returned invalid object in response") rootvolume = list_volume_response[0] self.debug("Creating a Snapshot from root volume: " "%s" % rootvolume.id) snapshot = Snapshot.create( self.apiclient, rootvolume.id, account=self.parentd_admin.name, domainid=self.parent_domain.id ) snapshots = list_snapshots( self.apiclient, id=snapshot.id ) res = validateList(snapshots) self.assertNotEqual(res[2], INVALID_INPUT, "Invalid list response") self.assertEqual( snapshots[0].id, snapshot.id, "Check resource id in list resources call" ) else: self.debug("Volume resize is failed") except Exception as e: raise Exception("Exception while performing" " the snapshot on resized root volume" " test case: %s" % e) self.cleanup.append(self.virtual_machine) self.cleanup.append(snapshot) return
def test_02_host_maintenance_mode_with_activities(self): """Test host maintenance mode with activities """ # Validate the following # 1. Create Vms. Acquire IP. Create port forwarding & load balancing # rules for Vms. # 2. While activities are ongoing: Create snapshots, recurring # snapshots, create templates, download volumes, Host 1: put to # maintenance mode. All Vms should failover to Host 2 in cluster # Vms should be in running state. All port forwarding rules and # load balancing Rules should work. # 3. After failover to Host 2 succeeds, deploy Vms. Deploy Vms on host # 2 should succeed. All ongoing activities in step 3 should succeed # 4. Host 1: cancel maintenance mode. # 5. While activities are ongoing: Create snapshots, recurring # snapshots, create templates, download volumes, Host 2: put to # maintenance mode. All Vms should failover to Host 1 in cluster. # 6. After failover to Host 1 succeeds, deploy VMs. Deploy Vms on # host 1 should succeed. All ongoing activities in step 6 should # succeed. hosts = Host.list( self.apiclient, zoneid=self.zone.id, resourcestate='Enabled', type='Routing' ) self.assertEqual( isinstance(hosts, list), True, "List hosts should return valid host response" ) if len(hosts) < 2: self.skipTest("There must be at least 2 hosts present in cluster") self.debug("Checking HA with hosts: %s, %s" % ( hosts[0].name, hosts[1].name )) self.debug("Deploying VM in account: %s" % self.account.name) # Spawn an instance in that network virtual_machine = VirtualMachine.create( self.apiclient, self.services["virtual_machine"], accountid=self.account.name, domainid=self.account.domainid, serviceofferingid=self.service_offering.id ) vms = VirtualMachine.list( self.apiclient, id=virtual_machine.id, listall=True ) self.assertEqual( isinstance(vms, list), True, "List VMs should return valid response for deployed VM" ) self.assertNotEqual( len(vms), 0, "List VMs should return valid response for deployed VM" ) vm = vms[0] self.debug("Deployed VM on host: %s" % vm.hostid) self.assertEqual( vm.state, "Running", "Deployed VM should be in RUnning state" ) networks = Network.list( self.apiclient, account=self.account.name, domainid=self.account.domainid, listall=True ) self.assertEqual( isinstance(networks, list), True, "List networks should return valid list for the account" ) network = networks[0] self.debug("Associating public IP for account: %s" % self.account.name) public_ip = PublicIPAddress.create( self.apiclient, accountid=self.account.name, zoneid=self.zone.id, domainid=self.account.domainid, networkid=network.id ) self.debug("Associated %s with network %s" % ( public_ip.ipaddress.ipaddress, network.id )) self.debug("Creating PF rule for IP address: %s" % public_ip.ipaddress.ipaddress) NATRule.create( self.apiclient, virtual_machine, self.services["natrule"], ipaddressid=public_ip.ipaddress.id ) self.debug("Creating LB rule on IP with NAT: %s" % public_ip.ipaddress.ipaddress) # Create Load Balancer rule on IP already having NAT rule lb_rule = LoadBalancerRule.create( self.apiclient, self.services["lbrule"], ipaddressid=public_ip.ipaddress.id, accountid=self.account.name ) self.debug("Created LB rule with ID: %s" % lb_rule.id) # Should be able to SSH VM try: self.debug("SSH into VM: %s" % virtual_machine.id) virtual_machine.get_ssh_client( ipaddress=public_ip.ipaddress.ipaddress) except Exception as e: self.fail("SSH Access failed for %s: %s" % (virtual_machine.ipaddress, e) ) # Get the Root disk of VM volumes = list_volumes( self.apiclient, virtualmachineid=virtual_machine.id, type='ROOT', listall=True ) volume = volumes[0] self.debug( "Root volume of VM(%s): %s" % ( virtual_machine.name, volume.name )) # Create a snapshot from the ROOTDISK self.debug("Creating snapshot on ROOT volume: %s" % volume.name) snapshot = Snapshot.create(self.apiclient, volumes[0].id) self.debug("Snapshot created: ID - %s" % snapshot.id) snapshots = list_snapshots( self.apiclient, id=snapshot.id, listall=True ) self.assertEqual( isinstance(snapshots, list), True, "Check list response returns a valid list" ) self.assertNotEqual( snapshots, None, "Check if result exists in list snapshots call" ) self.assertEqual( snapshots[0].id, snapshot.id, "Check snapshot id in list resources call" ) # Generate template from the snapshot self.debug("Generating template from snapshot: %s" % snapshot.name) template = Template.create_from_snapshot( self.apiclient, snapshot, self.services["templates"] ) self.debug("Created template from snapshot: %s" % template.id) templates = list_templates( self.apiclient, templatefilter=self.services["templates"]["templatefilter"], id=template.id ) self.assertEqual( isinstance(templates, list), True, "List template call should return the newly created template" ) self.assertEqual( templates[0].isready, True, "The newly created template should be in ready state" ) first_host = vm.hostid self.debug("Enabling maintenance mode for host %s" % vm.hostid) cmd = prepareHostForMaintenance.prepareHostForMaintenanceCmd() cmd.id = first_host self.apiclient.prepareHostForMaintenance(cmd) self.debug("Waiting for SSVMs to come up") wait_for_ssvms( self.apiclient, zoneid=self.zone.id, podid=self.pod.id, ) timeout = self.services["timeout"] # Poll and check state of VM while it migrates from one host to another while True: vms = VirtualMachine.list( self.apiclient, id=virtual_machine.id, listall=True ) self.assertEqual( isinstance(vms, list), True, "List VMs should return valid response for deployed VM" ) self.assertNotEqual( len(vms), 0, "List VMs should return valid response for deployed VM" ) vm = vms[0] self.debug("VM 1 state: %s" % vm.state) if vm.state in ["Stopping", "Stopped", "Running", "Starting", "Migrating"]: if vm.state == "Running": break else: time.sleep(self.services["sleep"]) timeout = timeout - 1 else: self.fail( "VM migration from one-host-to-other failed\ while enabling maintenance" ) second_host = vm.hostid self.assertEqual( vm.state, "Running", "VM should be in Running state after enabling host maintenance" ) # Should be able to SSH VM try: self.debug("SSH into VM: %s" % virtual_machine.id) virtual_machine.get_ssh_client( ipaddress=public_ip.ipaddress.ipaddress) except Exception as e: self.fail("SSH Access failed for %s: %s" % (virtual_machine.ipaddress, e) ) self.debug("Deploying VM in account: %s" % self.account.name) # Spawn an instance on other host virtual_machine_2 = VirtualMachine.create( self.apiclient, self.services["virtual_machine"], accountid=self.account.name, domainid=self.account.domainid, serviceofferingid=self.service_offering.id ) vms = VirtualMachine.list( self.apiclient, id=virtual_machine_2.id, listall=True ) self.assertEqual( isinstance(vms, list), True, "List VMs should return valid response for deployed VM" ) self.assertNotEqual( len(vms), 0, "List VMs should return valid response for deployed VM" ) vm = vms[0] self.debug("Deployed VM on host: %s" % vm.hostid) self.debug("VM 2 state: %s" % vm.state) self.assertEqual( vm.state, "Running", "Deployed VM should be in Running state" ) self.debug("Canceling host maintenance for ID: %s" % first_host) cmd = cancelHostMaintenance.cancelHostMaintenanceCmd() cmd.id = first_host self.apiclient.cancelHostMaintenance(cmd) self.debug("Maintenance mode canceled for host: %s" % first_host) # Get the Root disk of VM volumes = list_volumes( self.apiclient, virtualmachineid=virtual_machine_2.id, type='ROOT', listall=True ) volume = volumes[0] self.debug( "Root volume of VM(%s): %s" % ( virtual_machine_2.name, volume.name )) # Create a snapshot from the ROOTDISK self.debug("Creating snapshot on ROOT volume: %s" % volume.name) snapshot = Snapshot.create(self.apiclient, volumes[0].id) self.debug("Snapshot created: ID - %s" % snapshot.id) snapshots = list_snapshots( self.apiclient, id=snapshot.id, listall=True ) self.assertEqual( isinstance(snapshots, list), True, "Check list response returns a valid list" ) self.assertNotEqual( snapshots, None, "Check if result exists in list snapshots call" ) self.assertEqual( snapshots[0].id, snapshot.id, "Check snapshot id in list resources call" ) # Generate template from the snapshot self.debug("Generating template from snapshot: %s" % snapshot.name) template = Template.create_from_snapshot( self.apiclient, snapshot, self.services["templates"] ) self.debug("Created template from snapshot: %s" % template.id) templates = list_templates( self.apiclient, templatefilter=self.services["templates"]["templatefilter"], id=template.id ) self.assertEqual( isinstance(templates, list), True, "List template call should return the newly created template" ) self.assertEqual( templates[0].isready, True, "The newly created template should be in ready state" ) self.debug("Enabling maintenance mode for host %s" % second_host) cmd = prepareHostForMaintenance.prepareHostForMaintenanceCmd() cmd.id = second_host self.apiclient.prepareHostForMaintenance(cmd) self.debug("Maintenance mode enabled for host: %s" % second_host) self.debug("Waiting for SSVMs to come up") wait_for_ssvms( self.apiclient, zoneid=self.zone.id, podid=self.pod.id, ) # Poll and check the status of VMs timeout = self.services["timeout"] while True: vms = VirtualMachine.list( self.apiclient, account=self.account.name, domainid=self.account.domainid, listall=True ) self.assertEqual( isinstance(vms, list), True, "List VMs should return valid response for deployed VM" ) self.assertNotEqual( len(vms), 0, "List VMs should return valid response for deployed VM" ) vm = vms[0] self.debug( "VM state after enabling maintenance on first host: %s" % vm.state) if vm.state in ["Stopping", "Stopped", "Running", "Starting", "Migrating"]: if vm.state == "Running": break else: time.sleep(self.services["sleep"]) timeout = timeout - 1 else: self.fail( "VM migration from one-host-to-other failed\ while enabling maintenance" ) # Poll and check the status of VMs timeout = self.services["timeout"] while True: vms = VirtualMachine.list( self.apiclient, account=self.account.name, domainid=self.account.domainid, listall=True ) self.assertEqual( isinstance(vms, list), True, "List VMs should return valid response for deployed VM" ) self.assertNotEqual( len(vms), 0, "List VMs should return valid response for deployed VM" ) vm = vms[1] self.debug( "VM state after enabling maintenance on first host: %s" % vm.state) if vm.state in ["Stopping", "Stopped", "Running", "Starting", "Migrating"]: if vm.state == "Running": break else: time.sleep(self.services["sleep"]) timeout = timeout - 1 else: self.fail( "VM migration from one-host-to-other failed\ while enabling maintenance" ) for vm in vms: self.debug( "VM states after enabling maintenance mode on host: %s - %s" % (first_host, vm.state)) self.assertEqual( vm.state, "Running", "Deployed VM should be in Running state" ) # Spawn an instance on other host virtual_machine_3 = VirtualMachine.create( self.apiclient, self.services["virtual_machine"], accountid=self.account.name, domainid=self.account.domainid, serviceofferingid=self.service_offering.id ) vms = VirtualMachine.list( self.apiclient, id=virtual_machine_3.id, listall=True ) self.assertEqual( isinstance(vms, list), True, "List VMs should return valid response for deployed VM" ) self.assertNotEqual( len(vms), 0, "List VMs should return valid response for deployed VM" ) vm = vms[0] self.debug("Deployed VM on host: %s" % vm.hostid) self.debug("VM 3 state: %s" % vm.state) self.assertEqual( vm.state, "Running", "Deployed VM should be in Running state" ) self.debug("Canceling host maintenance for ID: %s" % second_host) cmd = cancelHostMaintenance.cancelHostMaintenanceCmd() cmd.id = second_host self.apiclient.cancelHostMaintenance(cmd) self.debug("Maintenance mode canceled for host: %s" % second_host) self.debug("Waiting for SSVMs to come up") wait_for_ssvms( self.apiclient, zoneid=self.zone.id, podid=self.pod.id, ) return
def setUpClass(cls): cls.testClient = super(TestAccountSnapshotClean, cls).getClsTestClient() cls.api_client = cls.testClient.getApiClient() cls.services = Services().services # Get Zone, Domain and templates cls.domain = get_domain(cls.api_client) cls.zone = get_zone(cls.api_client, cls.testClient.getZoneForTests()) cls.services['mode'] = cls.zone.networktype cls.hypervisor = cls.testClient.getHypervisorInfo() if cls.hypervisor.lower() in ['lxc']: raise unittest.SkipTest("snapshots are not supported on %s" % cls.hypervisor.lower()) template = get_template( cls.api_client, cls.zone.id, cls.services["ostype"] ) cls.services["server"]["zoneid"] = cls.zone.id cls.services["template"] = template.id cls._cleanup = [] try: # Create VMs, NAT Rules etc cls.account = Account.create( cls.api_client, cls.services["account"], domainid=cls.domain.id ) cls.services["account"] = cls.account.name if cls.zone.localstorageenabled: cls.services["service_offering"]["storagetype"] = "local" cls.service_offering = ServiceOffering.create( cls.api_client, cls.services["service_offering"] ) cls.virtual_machine = VirtualMachine.create( cls.api_client, cls.services["server"], templateid=template.id, accountid=cls.account.name, domainid=cls.account.domainid, serviceofferingid=cls.service_offering.id ) # Get the Root disk of VM volumes = list_volumes( cls.api_client, virtualmachineid=cls.virtual_machine.id, type='ROOT', listall=True ) volume = volumes[0] # Create a snapshot from the ROOTDISK cls.snapshot = Snapshot.create(cls.api_client, volume.id) except Exception, e: cls.tearDownClass() unittest.SkipTest("setupClass fails for %s" % cls.__name__) raise e
def test_07_template_from_snapshot(self): """Create Template from snapshot """ # 1. Login to machine; create temp/test directories on data volume # 2. Snapshot the Volume # 3. Create Template from snapshot # 4. Deploy Virtual machine using this template # 5. Login to newly created virtual machine # 6. Compare data in the root disk with the one that was written on the # volume, it should match if self.hypervisor.lower() in ['hyperv']: self.skipTest("Snapshots feature is not supported on Hyper-V") userapiclient = self.testClient.getUserApiClient( UserName=self.account.name, DomainName=self.account.domain) random_data_0 = random_gen(size=100) random_data_1 = random_gen(size=100) try: # Login to virtual machine ssh_client = self.virtual_machine.get_ssh_client() cmds = [ "mkdir -p %s" % self.services["paths"]["mount_dir"], "mount %s1 %s" % ( self.services["volume"][self.hypervisor]["rootdiskdevice"], self.services["paths"]["mount_dir"] ), "mkdir -p %s/%s/{%s,%s} " % ( self.services["paths"]["mount_dir"], self.services["paths"]["sub_dir"], self.services["paths"]["sub_lvl_dir1"], self.services["paths"]["sub_lvl_dir2"] ), "echo %s > %s/%s/%s/%s" % ( random_data_0, self.services["paths"]["mount_dir"], self.services["paths"]["sub_dir"], self.services["paths"]["sub_lvl_dir1"], self.services["paths"]["random_data"] ), "echo %s > %s/%s/%s/%s" % ( random_data_1, self.services["paths"]["mount_dir"], self.services["paths"]["sub_dir"], self.services["paths"]["sub_lvl_dir2"], self.services["paths"]["random_data"] ), "sync", ] for c in cmds: self.debug(c) result = ssh_client.execute(c) self.debug(result) except Exception as e: self.fail("SSH failed for VM with IP address: %s" % self.virtual_machine.ipaddress) # Unmount the Volume cmds = [ "umount %s" % (self.services["paths"]["mount_dir"]), ] for c in cmds: self.debug(c) ssh_client.execute(c) volumes = list_volumes( userapiclient, virtualmachineid=self.virtual_machine.id, type='ROOT', listall=True ) self.assertEqual( isinstance(volumes, list), True, "Check list response returns a valid list" ) volume = volumes[0] # Create a snapshot of volume snapshot = Snapshot.create( userapiclient, volume.id, account=self.account.name, domainid=self.account.domainid ) self.debug("Snapshot created from volume ID: %s" % volume.id) # Generate template from the snapshot template = Template.create_from_snapshot( userapiclient, snapshot, self.services["templates"] ) self.cleanup.append(template) self.debug("Template created from snapshot ID: %s" % snapshot.id) # Verify created template templates = list_templates( userapiclient, templatefilter=self.services["templates"]["templatefilter"], id=template.id ) self.assertNotEqual( templates, None, "Check if result exists in list item call" ) self.assertEqual( templates[0].id, template.id, "Check new template id in list resources call" ) self.debug("Deploying new VM from template: %s" % template.id) # Deploy new virtual machine using template new_virtual_machine = VirtualMachine.create( userapiclient, self.services["server_without_disk"], templateid=template.id, accountid=self.account.name, domainid=self.account.domainid, serviceofferingid=self.service_offering.id, mode=self.services["mode"] ) try: # Login to VM & mount directory ssh = new_virtual_machine.get_ssh_client() cmds = [ "mkdir -p %s" % self.services["paths"]["mount_dir"], "mount %s1 %s" % ( self.services["volume"][self.hypervisor]["rootdiskdevice"], self.services["paths"]["mount_dir"] ) ] for c in cmds: ssh.execute(c) returned_data_0 = ssh.execute("cat %s/%s/%s/%s" % ( self.services["paths"]["mount_dir"], self.services["paths"]["sub_dir"], self.services["paths"]["sub_lvl_dir1"], self.services["paths"]["random_data"] )) self.debug(returned_data_0) returned_data_1 = ssh.execute("cat %s/%s/%s/%s" % ( self.services["paths"]["mount_dir"], self.services["paths"]["sub_dir"], self.services["paths"]["sub_lvl_dir2"], self.services["paths"]["random_data"] )) self.debug(returned_data_1) except Exception as e: self.fail("SSH failed for VM with IP address: %s" % new_virtual_machine.ipaddress) # Verify returned data self.assertEqual( random_data_0, returned_data_0[0], "Verify newly attached volume contents with existing one" ) self.assertEqual( random_data_1, returned_data_1[0], "Verify newly attached volume contents with existing one" ) # Unmount the volume cmds = [ "umount %s" % (self.services["paths"]["mount_dir"]), ] try: for c in cmds: self.debug(c) ssh_client.execute(c) except Exception as e: self.fail("SSH failed for VM with IP address: %s, Exception: %s" % (new_virtual_machine.ipaddress, e)) return
def test_01_volume_snapshot(self): """ Test Volume (root) Snapshot # 1. Deploy a VM on primary storage and . # 2. Take snapshot on root disk # 3. Verify the snapshot's entry in the "snapshots" table and presence of the corresponding snapshot on the Secondary Storage # 4. Create Template from the Snapshot and Deploy a VM using the Template # 5. Log in to the VM from template and make verify the contents of the ROOT disk matches with the snapshot. # 6. Delete Snapshot and Deploy a Linux VM from the Template and verify the successful deployment of the VM. # 7. Create multiple snapshots on the same volume and Check the integrity of all the snapshots by creating a template from the snapshot and deploying a Vm from it and delete one of the snapshots # 8. Verify that the original checksum matches with the checksum of VM's created from remaning snapshots # 9. Make verify the contents of the ROOT disk matches with the snapshot # 10.Verify that Snapshot of both DATA and ROOT volume should succeed when snapshot of Data disk of a VM is taken when snapshot of ROOT volume of VM is in progress # 11.Create snapshot of data disk and verify the original checksum matches with the volume created from snapshot # 12.Verify that volume's state should not change when snapshot of a DATA volume is taken that is attached to a VM # 13.Verify that volume's state should not change when snapshot of a DATA volume is taken that is not attached to a VM # 14.Verify that create Snapshot with quiescevm=True should succeed # 15.revertSnapshot() to revert VM to a specified Volume snapshot for root volume """ # Step 1 # Get ROOT Volume Id root_volumes_cluster_list = list_volumes( self.apiclient, virtualmachineid=self.vm_1.id, type='ROOT', listall=True ) root_volume_cluster = root_volumes_cluster_list[0] disk_volumes_cluster_list = list_volumes( self.apiclient, virtualmachineid=self.vm_1.id, type='DATADISK', listall=True ) data_disk = disk_volumes_cluster_list[0] root_vol_state = root_volume_cluster.state ckecksum_random_root_cluster = createChecksum( service=self.testdata, virtual_machine=self.vm_1, disk=root_volume_cluster, disk_type="rootdiskdevice") self.vm_1.stop(self.apiclient) root_vol_snap = Snapshot.create( self.apiclient, root_volume_cluster.id) self.assertEqual( root_vol_snap.state, "BackedUp", "Check if the snapshot state is correct " ) self.assertEqual( root_vol_state, root_volume_cluster.state, "Check if volume state has changed" ) self.vm_1.start(self.apiclient) # Step 2 snapshot_list = list_snapshots( self.apiclient, id=root_vol_snap.id ) self.assertNotEqual( snapshot_list, None, "Check if result exists in list item call" ) self.assertEqual( snapshot_list[0].id, root_vol_snap.id, "Check resource id in list resources call" ) self.assertTrue( is_snapshot_on_nfs( self.apiclient, self.dbclient, self.config, self.zone.id, root_vol_snap.id)) events = list_events( self.apiclient, account=self.account.name, domainid=self.account.domainid, type='SNAPSHOT.CREATE') event_list_validation_result = validateList(events) self.assertEqual( event_list_validation_result[0], PASS, "event list validation failed due to %s" % event_list_validation_result[2]) self.debug("Events list contains event SNAPSHOT.CREATE") qresultset = self.dbclient.execute( "select * from event where type='SNAPSHOT.CREATE' AND \ description like '%%%s%%' AND state='Completed';" % root_volume_cluster.id) event_validation_result = validateList(qresultset) self.assertEqual( event_validation_result[0], PASS, "event list validation failed due to %s" % event_validation_result[2]) self.assertNotEqual( len(qresultset), 0, "Check DB Query result set" ) qresult = str(qresultset) self.assertEqual( qresult.count('SNAPSHOT.CREATE') > 0, True, "Check SNAPSHOT.CREATE event in events table" ) #Usage_Event qresultset = self.dbclient.execute( "select * from usage_event where type='SNAPSHOT.CREATE' AND \ resource_name='%s'" % root_vol_snap.name) usage_event_validation_result = validateList(qresultset) self.assertEqual( usage_event_validation_result[0], PASS, "event list validation failed due to %s" % usage_event_validation_result[2]) self.assertNotEqual( len(qresultset), 0, "Check DB Query result set" ) self.assertEqual( self.dbclient.execute("select size from usage_event where type='SNAPSHOT.CREATE' AND \ resource_name='%s'" % root_vol_snap.name)[0][0], root_vol_snap.physicalsize) # Step 3 # create template from snapshot root_vol_snap templateFromSnapshot = Template.create_from_snapshot( self.apiclient, root_vol_snap, self.testdata["template_2"]) self.assertNotEqual( templateFromSnapshot, None, "Check if result exists in list item call" ) vm_from_temp = VirtualMachine.create( self.apiclient, self.testdata["small"], templateid=templateFromSnapshot.id, accountid=self.account.name, domainid=self.account.domainid, serviceofferingid=self.service_offering.id, zoneid=self.zone.id, mode=self.zone.networktype ) self.assertNotEqual( vm_from_temp, None, "Check if result exists in list item call" ) compareChecksum( self.apiclient, service=self.testdata, original_checksum=ckecksum_random_root_cluster, disk_type="rootdiskdevice", virt_machine=vm_from_temp ) vm_from_temp.delete(self.apiclient) # Step 4 root_vol_snap.delete(self.userapiclient) self.assertEqual( list_snapshots( self.apiclient, volumeid=root_volume_cluster.id, ), None, "Snapshot list should be empty") events = list_events( self.apiclient, account=self.account.name, domainid=self.account.domainid, type='SNAPSHOT.DELETE') event_list_validation_result = validateList(events) self.assertEqual( event_list_validation_result[0], PASS, "event list validation failed due to %s" % event_list_validation_result[2]) self.debug("Events list contains event SNAPSHOT.DELETE") self.debug("select id from account where uuid = '%s';" % self.account.id) qresultset = self.dbclient.execute( "select id from account where uuid = '%s';" % self.account.id ) account_validation_result = validateList(qresultset) self.assertEqual( account_validation_result[0], PASS, "event list validation failed due to %s" % account_validation_result[2]) self.assertNotEqual( len(qresultset), 0, "Check DB Query result set" ) qresult = qresultset[0] account_id = qresult[0] qresultset = self.dbclient.execute( "select * from event where type='SNAPSHOT.DELETE' AND \ account_id='%s' AND state='Completed';" % account_id) delete_snap_validation_result = validateList(qresultset) self.assertEqual( delete_snap_validation_result[0], PASS, "event list validation failed due to %s" % delete_snap_validation_result[2]) self.assertNotEqual( len(qresultset), 0, "Check DB Query result set" ) qresult = str(qresultset) self.assertEqual( qresult.count('SNAPSHOT.DELETE') > 0, True, "Check SNAPSHOT.DELETE event in events table" ) # Step 5 # delete snapshot and deploy vm from snapshot vm_from_temp_2 = VirtualMachine.create( self.apiclient, self.testdata["small"], templateid=templateFromSnapshot.id, accountid=self.account.name, domainid=self.account.domainid, serviceofferingid=self.service_offering.id, zoneid=self.zone.id, mode=self.zone.networktype ) self.assertNotEqual( vm_from_temp_2, None, "Check if result exists in list item call" ) # Step 6: compareChecksum( self.apiclient, service=self.testdata, original_checksum=ckecksum_random_root_cluster, disk_type="rootdiskdevice", virt_machine=vm_from_temp_2 ) vm_from_temp_2.delete(self.apiclient) # Step 7 # Multiple Snapshots self.vm_1.stop(self.apiclient) snaps = [] for i in range(2): root_vol_snap = Snapshot.create( self.apiclient, root_volume_cluster.id) self.assertEqual( root_vol_snap.state, "BackedUp", "Check if the data vol snapshot state is correct " ) snaps.append(root_vol_snap) templateFromSnapshot = Template.create_from_snapshot( self.apiclient, root_vol_snap, self.testdata["template_2"]) self.assertNotEqual( templateFromSnapshot, None, "Check if result exists in list item call" ) vm_from_temp = VirtualMachine.create( self.apiclient, self.testdata["small"], templateid=templateFromSnapshot.id, accountid=self.account.name, domainid=self.account.domainid, serviceofferingid=self.service_offering.id, zoneid=self.zone.id, mode=self.zone.networktype ) self.assertNotEqual( vm_from_temp, None, "Check if result exists in list item call" ) compareChecksum( self.apiclient, service=self.testdata, original_checksum=ckecksum_random_root_cluster, disk_type="rootdiskdevice", virt_machine=vm_from_temp ) vm_from_temp.delete(self.apiclient) templateFromSnapshot.delete(self.apiclient) self.vm_1.start(self.apiclient) delete_snap = snaps.pop(1) delete_snap.delete(self.apiclient) self.assertEqual( Snapshot.list( self.apiclient, id=delete_snap.id ), None, "Snapshot list should be empty") # Step 8 for snap in snaps: templateFromSnapshot = Template.create_from_snapshot( self.apiclient, snap, self.testdata["template_2"]) self.assertNotEqual( templateFromSnapshot, None, "Check if result exists in list item call" ) vm_from_temp = VirtualMachine.create( self.apiclient, self.testdata["small"], templateid=templateFromSnapshot.id, accountid=self.account.name, domainid=self.account.domainid, serviceofferingid=self.service_offering.id, zoneid=self.zone.id, mode=self.zone.networktype ) self.assertNotEqual( vm_from_temp, None, "Check if result exists in list item call" ) compareChecksum( self.apiclient, service=self.testdata, original_checksum=ckecksum_random_root_cluster, disk_type="rootdiskdevice", virt_machine=vm_from_temp ) templateFromSnapshot.delete(self.apiclient) vm_from_temp.delete(self.apiclient) for snap in snaps: snap.delete(self.apiclient) # Step 9 ckecksum_root_cluster = createChecksum( service=self.testdata, virtual_machine=self.vm_1, disk=root_volume_cluster, disk_type="rootdiskdevice") self.vm_1.stop(self.apiclient) root_vol_snap_2 = Snapshot.create( self.apiclient, root_volume_cluster.id) self.assertEqual( root_vol_snap_2.state, "BackedUp", "Check if the data vol snapshot state is correct " ) snap_list_validation_result = validateList(events) self.assertEqual( snap_list_validation_result[0], PASS, "snapshot list validation failed due to %s" % snap_list_validation_result[2]) self.assertNotEqual( snapshot_list, None, "Check if result exists in list item call" ) templateFromSnapshot = Template.create_from_snapshot( self.apiclient, root_vol_snap_2, self.testdata["template_2"]) self.debug( "create template event comlites with template %s name" % templateFromSnapshot.name) self.assertNotEqual( templateFromSnapshot, None, "Check if result exists in list item call" ) vm_from_temp_2 = VirtualMachine.create( self.apiclient, self.testdata["small"], templateid=templateFromSnapshot.id, accountid=self.account.name, domainid=self.account.domainid, serviceofferingid=self.service_offering.id, zoneid=self.zone.id, mode=self.zone.networktype ) self.assertNotEqual( vm_from_temp_2, None, "Check if result exists in list item call" ) compareChecksum( self.apiclient, service=self.testdata, original_checksum=ckecksum_root_cluster, disk_type="rootdiskdevice", virt_machine=vm_from_temp_2 ) vm_from_temp_2.delete(self.apiclient) # Step 10 # Take snapshot of Data disk of a VM , when snapshot of ROOT volume of # VM is in progress try: self.vm_1.stop(self.apiclient) t1 = Thread( target=Snapshot.create, args=( self.apiclient, root_volume_cluster.id )) t2 = Thread( target=Snapshot.create, args=( self.apiclient, data_disk.id )) t1.start() t2.start() t1.join() t2.join() except: self.debug("Error: unable to start thread") # Step 11 # Data Disk self.vm_1.start(self.apiclient) ckecksum_data_disk = createChecksum( service=self.testdata, virtual_machine=self.vm_1, disk=data_disk, disk_type="datadiskdevice_1") data_vol_state = data_disk.state self.vm_1.stop(self.apiclient) data_vol_snap = Snapshot.create( self.apiclient, data_disk.id) self.assertEqual( data_vol_snap.state, "BackedUp", "Check if the data vol snapshot state is correct " ) self.assertEqual( data_vol_state, data_disk.state, "Check if volume state has changed" ) data_snapshot_list = list_snapshots( self.apiclient, id=data_vol_snap.id ) self.assertNotEqual( data_snapshot_list, None, "Check if result exists in list item call" ) self.assertEqual( data_snapshot_list[0].id, data_vol_snap.id, "Check resource id in list resources call" ) self.assertTrue( is_snapshot_on_nfs( self.apiclient, self.dbclient, self.config, self.zone.id, data_vol_snap.id)) events = list_events( self.apiclient, account=self.account.name, domainid=self.account.domainid, type='SNAPSHOT.CREATE') event_list_validation_result = validateList(events) self.assertEqual( event_list_validation_result[0], PASS, "event list validation failed due to %s" % event_list_validation_result[2]) self.debug("Events list contains event SNAPSHOT.CREATE") volumeFromSnap = Volume.create_from_snapshot( self.apiclient, data_vol_snap.id, self.testdata["volume"], account=self.account.name, domainid=self.account.domainid, zoneid=self.zone.id ) self.assertTrue( is_snapshot_on_nfs( self.apiclient, self.dbclient, self.config, self.zone.id, data_vol_snap.id)) new_vm = VirtualMachine.create( self.userapiclient, self.testdata["small"], templateid=self.template.id, accountid=self.account.name, domainid=self.account.domainid, serviceofferingid=self.service_offering.id, zoneid=self.zone.id, mode=self.zone.networktype ) new_vm.attach_volume( self.apiclient, volumeFromSnap ) new_vm.reboot(self.apiclient) compareChecksum( self.apiclient, service=self.testdata, original_checksum=ckecksum_data_disk, disk_type="datadiskdevice_1", virt_machine=new_vm ) # Step 12 data_volume_2 = Volume.create( self.apiclient, self.testdata["volume"], zoneid=self.zone.id, account=self.account.name, domainid=self.account.domainid, diskofferingid=self.disk_offering.id ) self.vm_1.start(self.apiclient) self.vm_1.attach_volume( self.userapiclient, data_volume_2 ) self.vm_1.reboot(self.apiclient) self.vm_1.stop(self.apiclient) data_vol_snap_1 = Snapshot.create( self.apiclient, data_volume_2.id) self.assertEqual( data_vol_snap_1.state, "BackedUp", "Check if the snapshot state is correct " ) data_disk_2_list = Volume.list( self.userapiclient, listall=self.testdata["listall"], id=data_volume_2.id ) self.vm_1.start(self.apiclient) checksum_data_2 = createChecksum( service=self.testdata, virtual_machine=self.vm_1, disk=data_disk_2_list[0], disk_type="datadiskdevice_2") # Step 13 self.vm_1.detach_volume(self.apiclient, data_volume_2) self.vm_1.reboot(self.apiclient) prev_state = data_volume_2.state data_vol_snap_2 = Snapshot.create( self.apiclient, data_volume_2.id) self.assertEqual( data_vol_snap_2.state, prev_state, "Check if the volume state is correct " ) data_snapshot_list_2 = list_snapshots( self.apiclient, id=data_vol_snap_2.id ) self.assertNotEqual( data_snapshot_list_2, None, "Check if result exists in list item call" ) self.assertEqual( data_snapshot_list_2[0].id, data_vol_snap_2.id, "Check resource id in list resources call" ) volumeFromSnap_2 = Volume.create_from_snapshot( self.apiclient, data_vol_snap_2.id, self.testdata["volume"], account=self.account.name, domainid=self.account.domainid, zoneid=self.zone.id ) self.vm_2.attach_volume( self.userapiclient, volumeFromSnap_2 ) self.vm_2.reboot(self.apiclient) data_disk_2_list = Volume.list( self.userapiclient, listall=self.testdata["listall"], id=volumeFromSnap_2.id ) compareChecksum( self.apiclient, service=self.testdata, original_checksum=checksum_data_2, disk_type="datadiskdevice_2", virt_machine=self.vm_2 ) # Step 14 self.vm_1.stop(self.apiclient) with self.assertRaises(Exception): root_vol_snap.revertVolToSnapshot(self.apiclient) # Step 15 root_snap = Snapshot.create( self.apiclient, root_volume_cluster.id) with self.assertRaises(Exception): root_snap.revertVolToSnapshot(self.apiclient) return
def test_01_volume_from_snapshot(self): """Test Creating snapshot from volume having spaces in name(KVM) """ # Validate the following # 1. Create a virtual machine and data volume # 2. Attach data volume to VM # 3. Login to machine; create temp/test directories on data volume # and write some random data # 4. Snapshot the Volume # 5. Create another Volume from snapshot # 6. Mount/Attach volume to another virtual machine # 7. Compare data, data should match if self.hypervisor.lower() in ['hyperv']: self.skipTest("Snapshots feature is not supported on Hyper-V") random_data_0 = random_gen(size=100) random_data_1 = random_gen(size=100) self.debug("random_data_0 : %s" % random_data_0) self.debug("random_data_1: %s" % random_data_1) try: ssh_client = self.virtual_machine.get_ssh_client() except Exception as e: self.fail("SSH failed for VM: %s" % self.virtual_machine.ipaddress) volume = Volume.create( self.apiclient, self.services["volume"], zoneid=self.zone.id, account=self.account.name, domainid=self.account.domainid, diskofferingid=self.disk_offering.id ) self.debug("Created volume with ID: %s" % volume.id) self.virtual_machine.attach_volume( self.apiclient, volume ) self.debug("Attach volume: %s to VM: %s" % (volume.id, self.virtual_machine.id)) self.debug("Formatting volume: %s to ext3" % volume.id) # Format partition using ext3 # Note that this is the second data disk partition of virtual machine # as it was already containing data disk before attaching the new # volume, Hence datadiskdevice_2 format_volume_to_ext3( ssh_client, self.services["volume"][self.hypervisor]["datadiskdevice_2"] ) cmds = [ "fdisk -l", "mkdir -p %s" % self.services["paths"]["mount_dir"], "mount -t ext3 %s1 %s" % (self.services["volume"][ self.hypervisor]["datadiskdevice_2"], self.services["paths"]["mount_dir"]), "mkdir -p %s/%s/{%s,%s} " % (self.services["paths"]["mount_dir"], self.services["paths"]["sub_dir"], self.services["paths"]["sub_lvl_dir1"], self.services["paths"]["sub_lvl_dir2"]), "echo %s > %s/%s/%s/%s" % (random_data_0, self.services["paths"]["mount_dir"], self.services["paths"]["sub_dir"], self.services["paths"]["sub_lvl_dir1"], self.services["paths"]["random_data"]), "echo %s > %s/%s/%s/%s" % (random_data_1, self.services["paths"]["mount_dir"], self.services["paths"]["sub_dir"], self.services["paths"]["sub_lvl_dir2"], self.services["paths"]["random_data"]), "cat %s/%s/%s/%s" % (self.services["paths"]["mount_dir"], self.services["paths"]["sub_dir"], self.services["paths"]["sub_lvl_dir1"], self.services["paths"]["random_data"])] for c in cmds: self.debug("Command: %s" % c) result = ssh_client.execute(c) self.debug(result) # Unmount the Sec Storage cmds = [ "umount %s" % (self.services["paths"]["mount_dir"]), ] for c in cmds: self.debug("Command: %s" % c) ssh_client.execute(c) list_volume_response = Volume.list( self.apiclient, virtualmachineid=self.virtual_machine.id, type='DATADISK', id=volume.id ) self.assertEqual( isinstance(list_volume_response, list), True, "Check list volume response for valid data" ) volume_response = list_volume_response[0] # Create snapshot from attached volume snapshot = Snapshot.create( self.apiclient, volume_response.id, account=self.account.name, domainid=self.account.domainid ) self.debug("Created snapshot: %s" % snapshot.id) # Create volume from snapshot volume_from_snapshot = Volume.create_from_snapshot( self.apiclient, snapshot.id, self.services["volume"], account=self.account.name, domainid=self.account.domainid ) # Detach the volume from virtual machine self.virtual_machine.detach_volume( self.apiclient, volume ) self.debug("Detached volume: %s from VM: %s" % (volume.id, self.virtual_machine.id)) self.debug("Created Volume: %s from Snapshot: %s" % ( volume_from_snapshot.id, snapshot.id)) volumes = Volume.list( self.apiclient, id=volume_from_snapshot.id ) self.assertEqual( isinstance(volumes, list), True, "Check list response returns a valid list" ) self.assertNotEqual( len(volumes), None, "Check Volume list Length" ) self.assertEqual( volumes[0].id, volume_from_snapshot.id, "Check Volume in the List Volumes" ) # Attaching volume to new VM new_virtual_machine = VirtualMachine.create( self.apiclient, self.services["server_without_disk"], templateid=self.template.id, accountid=self.account.name, domainid=self.account.domainid, serviceofferingid=self.service_offering.id, mode=self.services["mode"] ) self.debug("Deployed new VM for account: %s" % self.account.name) # self.cleanup.append(new_virtual_machine) self.debug("Attaching volume: %s to VM: %s" % ( volume_from_snapshot.id, new_virtual_machine.id )) new_virtual_machine.attach_volume( self.apiclient, volume_from_snapshot ) # Rebooting is required so that newly attached disks are detected self.debug("Rebooting : %s" % new_virtual_machine.id) new_virtual_machine.reboot(self.apiclient) try: # Login to VM to verify test directories and files ssh = new_virtual_machine.get_ssh_client() # Mount datadiskdevice_1 because this is the first data disk of the # new virtual machine cmds = [ "fdisk -l", "mkdir -p %s" % self.services["paths"]["mount_dir"], "mount -t ext3 %s1 %s" % (self.services["volume"][ self.hypervisor]["datadiskdevice_1"], self.services["paths"]["mount_dir"]), ] for c in cmds: self.debug("Command: %s" % c) result = ssh.execute(c) self.debug(result) returned_data_0 = ssh.execute( "cat %s/%s/%s/%s" % ( self.services["paths"]["mount_dir"], self.services["paths"]["sub_dir"], self.services["paths"]["sub_lvl_dir1"], self.services["paths"]["random_data"] )) returned_data_1 = ssh.execute( "cat %s/%s/%s/%s" % ( self.services["paths"]["mount_dir"], self.services["paths"]["sub_dir"], self.services["paths"]["sub_lvl_dir2"], self.services["paths"]["random_data"] )) except Exception as e: self.fail("SSH access failed for VM: %s, Exception: %s" % (new_virtual_machine.ipaddress, e)) self.debug("returned_data_0: %s" % returned_data_0[0]) self.debug("returned_data_1: %s" % returned_data_1[0]) # Verify returned data self.assertEqual( random_data_0, returned_data_0[0], "Verify newly attached volume contents with existing one" ) self.assertEqual( random_data_1, returned_data_1[0], "Verify newly attached volume contents with existing one" ) # Unmount the Sec Storage cmds = [ "umount %s" % (self.services["paths"]["mount_dir"]), ] for c in cmds: self.debug("Command: %s" % c) ssh_client.execute(c) return
def test_01_snapshot_on_rootVolume(self): """Test create VM with default cent os template and create snapshot on root disk of the vm """ # Validate the following # 1. Deploy a Linux VM using default CentOS template, use small service # offering, disk offering # 2. Create snapshot on the root disk of this newly cteated vm # 3. listSnapshots should list the snapshot that was created. # 4. verify that secondary storage NFS share contains the reqd # volume under /secondary/snapshots/$accountid/$volumeid/$snapshot_uuid # 5. verify backup_snap_id was non null in the `snapshots` table # Create virtual machine with small systerm offering and disk offering new_virtual_machine = VirtualMachine.create( self.apiclient, self.services["virtual_machine"], templateid=self.template.id, zoneid=self.zone.id, accountid=self.account.name, domainid=self.account.domainid, serviceofferingid=self.service_offering.id, diskofferingid=self.disk_offering.id, ) self.debug("Virtual machine got created with id: %s" % new_virtual_machine.id) list_virtual_machine_response = VirtualMachine.list( self.apiclient, id=new_virtual_machine.id) self.assertEqual(isinstance(list_virtual_machine_response, list), True, "Check listVirtualMachines returns a valid list") self.assertNotEqual(len(list_virtual_machine_response), 0, "Check listVirtualMachines response") self.cleanup.append(new_virtual_machine) # Getting root volume id of the vm created above list_volume_response = Volume.list( self.apiclient, virtualmachineid=list_virtual_machine_response[0].id, type="ROOT", account=self.account.name, domainid=self.account.domainid) self.assertEqual(isinstance(list_volume_response, list), True, "Check listVolumes returns a valid list") self.assertNotEqual(len(list_volume_response), 0, "Check listVolumes response") self.debug( "Snapshot will be created on the volume with voluem id: %s" % list_volume_response[0].id) # Perform snapshot on the root volume root_volume_snapshot = Snapshot.create( self.apiclient, volume_id=list_volume_response[0].id) self.debug("Created snapshot: %s for vm: %s" % ( root_volume_snapshot.id, list_virtual_machine_response[0].id)) list_snapshot_response = Snapshot.list( self.apiclient, id=root_volume_snapshot.id, account=self.account.name, domainid=self.account.domainid) self.assertEqual(isinstance(list_snapshot_response, list), True, "Check listSnapshots returns a valid list") self.assertNotEqual(len(list_snapshot_response), 0, "Check listSnapshots response") # Verify Snapshot state self.assertEqual( list_snapshot_response[0].state in [ 'BackedUp', 'CreatedOnPrimary' ], True, "Snapshot state is not as expected. It is %s" % list_snapshot_response[0].state ) self.assertEqual( list_snapshot_response[0].volumeid, list_volume_response[0].id, "Snapshot volume id is not matching with the vm's volume id") self.cleanup.append(root_volume_snapshot) # Below code is to verify snapshots in the backend and in db. # Verify backup_snap_id field in the snapshots table for the snapshot created, it should not be null self.debug("select id, removed, backup_snap_id from snapshots where uuid = '%s';" % root_volume_snapshot.id) qryresult = self.dbclient.execute("select id, removed, backup_snap_id from snapshots where uuid = '%s';" % root_volume_snapshot.id) self.assertNotEqual(len(qryresult), 0, "Check sql query to return snapshots list") snapshot_qry_response = qryresult[0] snapshot_id = snapshot_qry_response[0] is_removed = snapshot_qry_response[1] backup_snap_id = snapshot_qry_response[2] self.assertNotEqual(is_removed, "NULL", "Snapshot is removed from CS, please check the logs") msg = "Backup snapshot id is set to null for the backedup snapshot :%s" % snapshot_id self.assertNotEqual(backup_snap_id, "NULL", msg ) # Check if the snapshot is present on the secondary storage self.assertTrue(is_snapshot_on_nfs(self.apiclient, self.dbclient, self.config, self.zone.id, root_volume_snapshot.id)) return
def test_02_template_permissions(self): """ @Desc: Test to create Public Template by registering or by snapshot and volume when Global parameter 'allow.public.user.template' is set to False @steps: 1.Set Global parameter 'allow.public.user.template' as False. Restart Management server 2. Create a domain 3. Create a domain admin and a domain user 4. Create a vm as domain user 5. take snapshot of root disk as user vm 6. try to create public template from snapshot . It should fail 7. stop the VM 8. take the public template from volume. it should fail 9. register a public template as a domain user . it should fail 10. create a VM as domain admin 11. create a snapshot of root disk as domain admin 12 create a public template of the snapshot .it should fail 13. Register a public template as domain admin. it should fail 14 Stop the vm as domain admin 15. Create a template from volume as domain admin . it should fail """ self.updateConfigurAndRestart("allow.public.user.templates", "false") user_account = Account.create( self.apiclient, self.testdata["account2"], admin=False, domainid=self.domain.id ) admin_user = self.account.user[0] self.admin_api_client = self.testClient.getUserApiClient( admin_user.username, self.domain.name) user = user_account.user[0] self.user_api_client = self.testClient.getUserApiClient( user.username, self.domain.name) self.testdata["templates"]["ispublic"] = True # Register new public template as domain user # Exception should be raised for registering public template try: template = Template.register( self.user_api_client, self.testdata["templates"], zoneid=self.zone.id, account=user_account.name, domainid=user_account.domainid, hypervisor=self.hypervisor ) self.updateConfigurAndRestart("allow.public.user.templates", "true") self.fail("Template creation passed for user") except CloudstackAPIException as e: self.assertRaises("Exception Raised : %s" % e) # Register new public template as domain admin # Exception should be raised for registering public template try: template = Template.register( self.admin_api_client, self.testdata["templates"], zoneid=self.zone.id, account=self.account.name, domainid=self.account.domainid, hypervisor=self.hypervisor ) self.updateConfigurAndRestart("allow.public.user.templates", "true") self.fail("Template creation passed for domain admin") except CloudstackAPIException as e: self.assertRaises("Exception Raised : %s" % e) user_vm_created = VirtualMachine.create( self.user_api_client, self.testdata["virtual_machine"], accountid=user_account.name, domainid=user_account.domainid, serviceofferingid=self.service_offering.id, ) self.assertIsNotNone(user_vm_created, "VM creation failed" ) # Get the Root disk of VM volume = list_volumes( self.user_api_client, virtualmachineid=user_vm_created.id, type='ROOT', listall=True ) snapshot_created = Snapshot.create( self.user_api_client, volume[0].id, account=user_account.name, domainid=user_account.domainid ) self.assertIsNotNone( snapshot_created, "Snapshot creation failed" ) self.debug("Creating a template from snapshot: %s" % snapshot_created.id) # # Generate public template from the snapshot self.testdata["template"]["ispublic"] = True try: user_template = Template.create_from_snapshot( self.user_api_client, snapshot_created, self.testdata["template"] ) self.updateConfigurAndRestart("allow.public.user.templates", "true") self.fail("Template creation passed from snapshot for domain user") except CloudstackAPIException as e: self.assertRaises("Exception Raised : %s" % e) VirtualMachine.stop(user_vm_created, self.user_api_client) list_stopped_vms_after = VirtualMachine.list( self.user_api_client, listall=self.testdata["listall"], domainid=user_account.domainid, state="Stopped") status = validateList(list_stopped_vms_after) self.assertEquals( PASS, status[0], "Stopped VM is not in Stopped state" ) try: user_template = Template.create( self.user_api_client, self.testdata["template"], volume[0].id ) self.updateConfigurAndRestart("allow.public.user.templates", "true") self.fail("Template creation passed from volume for domain user") except CloudstackAPIException as e: self.assertRaises("Exception Raised : %s" % e) admin_vm_created = VirtualMachine.create( self.admin_api_client, self.testdata["virtual_machine"], accountid=self.account.name, domainid=self.account.domainid, serviceofferingid=self.service_offering.id, ) self.assertIsNotNone( admin_vm_created, "VM creation failed" ) # Get the Root disk of VM volume = list_volumes( self.admin_api_client, virtualmachineid=admin_vm_created.id, type='ROOT', listall=True ) snapshot_created = Snapshot.create( self.admin_api_client, volume[0].id, account=self.account.name, domainid=self.account.domainid ) self.assertIsNotNone( snapshot_created, "Snapshot creation failed" ) self.debug("Creating a template from snapshot: %s" % snapshot_created.id) # # Generate public template from the snapshot try: admin_template = Template.create_from_snapshot( self.admin_api_client, snapshot_created, self.testdata["template"] ) self.updateConfigurAndRestart("allow.public.user.templates", "true") self.fail("Template creation passed from snapshot for domain admin") except CloudstackAPIException as e: self.assertRaises("Exception Raised : %s" % e) VirtualMachine.stop(admin_vm_created, self.admin_api_client) list_stopped_vms_after = VirtualMachine.list( self.admin_api_client, listall=self.testdata["listall"], domainid=self.account.domainid, state="Stopped") status = validateList(list_stopped_vms_after) self.assertEquals( PASS, status[0], "Stopped VM is not in Stopped state" ) try: admin_template = Template.create( self.admin_api_client, self.testdata["template"], volume[0].id ) self.updateConfigurAndRestart("allow.public.user.templates", "true") self.fail("Template creation passed from volume for domain admin") except CloudstackAPIException as e: self.assertRaises("Exception Raised : %s" % e) self.updateConfigurAndRestart("allow.public.user.templates", "true") return