Best Python code snippet using lisa_python
system.py
Source:system.py
...37 if line.startswith('Disk /'):38 disk_dict['name'] = line[5:].split(':')[0].split('/')[-1].strip()39 if line.startswith('Disk label type'):40 disk_dict['labelType'] = line.split(':')[1].strip()41 disk_dict['partitions'] = get_partition_information(disk_dict['name']) 42 43 if 'labelType' in disk_dict.keys() and 'name' in disk_dict.keys():44 disk_json.append(disk_dict)45 disk_dict = dict()46 except Exception as e:47 continue48 sysinfo["disk"] = disk_json49def get_partition_information(disk):50 part_json = list()51 try:52 result = get_command_output('/bin/lsblk -o name -n -s -l -o NAME,SIZE,TYPE,FSTYPE,MOUNTPOINT | grep part')53 for line in result.stdout.readlines():54 info = ' '.join(line.strip().split(' ')).split()55 if info[0].startswith(disk):56 part_json.append({'name': info[0].strip(), 'fstype': info[2].strip(), 'mountpoint': info[-1].strip()})57 return partition_usage(part_json)58 except Exception as e:59 print(e)60def partition_usage(part_info):61 usage = dict()62 units = {'MB' : 2**20}63 for part in part_info:...
blkid.py
Source:blkid.py
...29 _get_partition_part_uuid = re.compile(r"\s+PARTUUID=\"(?P<part_uuid>\S+)\"")30 @property31 def command(self) -> str:32 return "blkid"33 def get_partition_information(self) -> List[PartitionInfo]:34 """35 Get partition information from blkid output.36 Sample output :37 /dev/sda1: LABEL="cloudimg-rootfs" UUID="b1983cef-43a3-46ac-a083-b5e06a61c9fd" TYPE="ext4" PARTUUID="6b003b9b-0531-41bb-ab5e-b2491580c31f" # noqa: E50138 /dev/sda15: LABEL_FATBOOT="UEFI" LABEL="UEFI" UUID="0BC7-08EF" TYPE="vfat" PARTUUID="d80ae19a-00f8-4cae-a95e-9bbb761b7e9a" # noqa: E50139 /dev/sdb1: UUID="a88b3ef7-ddc8-4942-8931-253a5f21cae1" TYPE="ext4" PARTUUID="c7c91a5e-01" # noqa: E50140 /dev/loop0: TYPE="squashfs"41 """42 output = self.run(sudo=True).stdout43 partition_info: List[PartitionInfo] = []44 for line in output.splitlines():45 # get partition name46 name = get_matched_str(line, self._get_partition_name)47 assert_that(name, "partition name should not be none.").is_not_none()48 # get partion uuid. This could be None.49 uuid = get_matched_str(line, self._get_partition_uuid)50 # get partion part_uuid. This could be None.51 part_uuid = get_matched_str(line, self._get_partition_part_uuid)52 partition_info.append(PartitionInfo(name, uuid, part_uuid))53 return partition_info54 def get_partition_info_by_name(self, partition_name: str) -> PartitionInfo:55 """56 Get partition information for partition name.57 """58 partition_info = self.get_partition_information()59 for partition in partition_info:60 if partition.name == partition_name:61 return partition...
example_request.py
Source:example_request.py
1# section: code2from ibmcloudant.cloudant_v1 import CloudantV13service = CloudantV1.new_instance()4response = service.get_partition_information(5 db='products',6 partition_key='small-appliances'7).get_result()...
Learn to execute automation testing from scratch with LambdaTest Learning Hub. Right from setting up the prerequisites to run your first automation test, to following best practices and diving deeper into advanced test scenarios. LambdaTest Learning Hubs compile a list of step-by-step guides to help you be proficient with different test automation frameworks i.e. Selenium, Cypress, TestNG etc.
You could also refer to video tutorials over LambdaTest YouTube channel to get step by step demonstration from industry experts.
Get 100 minutes of automation test minutes FREE!!