Best Python code snippet using autotest_python
boottool.py
Source:boottool.py
...186 :param attributes: integer187 :param attributes: bitwise AND of the EFI attributes this variable will188 have set189 '''190 if not self.check_basic_structure():191 return False192 var = EfiVar(name, data, guid, attributes)193 f = open(self.NEW_VAR, 'w')194 f.write(var.get_packed())195 return True196 def delete_variable(self, name, data, guid=None, attributes=None):197 '''198 Delets an existing EFI variable199 :type name: string200 :param name: the name of the variable that will be deleted201 :type data: string202 :param data: user data that will populate the variable203 :type guid: tuple204 :param guid: content for the guid value that composes the full variable205 name206 :param attributes: integer207 :param attributes: bitwise AND of the EFI attributes this variable will208 have set209 '''210 if not self.check_basic_structure():211 return False212 var = EfiVar(name, data, guid, attributes)213 f = open(self.DEL_VAR, 'w')214 f.write(var.get_packed())215 return True216 def check_basic_structure(self):217 '''218 Checks the basic directory structure for the /sys/.../vars interface219 '''220 status = True221 if not os.path.isdir(self.BASE_PATH):222 self.log.error('Could not find the base directory interface for '223 'EFI variables: "%s"', self.BASE_PATH)224 status = False225 if not os.path.exists(self.NEW_VAR):226 self.log.error('Could not find the file interface for creating new'227 ' EFI variables: "%s"', self.NEW_VAR)228 status = False229 if not os.path.exists(self.DEL_VAR):230 self.log.error('Could not find the file interface for deleting '...
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!!