Best Python code snippet using pyatom_python
bpacsdb.py
Source:bpacsdb.py
...44 newCid = self.getNewCustodyId()45 self.bid[bundleId] = newCid46 self.cid[newCid] = bundleId47 return newCid48 def getBundleId(self, custodyId):49 try:50 return self.cid[custodyId]51 except KeyError:52 return None53 def setCustodyId(self, bundleId, custodyId):54 self.bid[bundleId] = custodyId55 self.cid[custodyId] = bundleId56 if (self.nextAvailableId <= custodyId):57 self.nextAvailableId = custodyId + 158 59if __name__ == '__main__':60 acsDb = BpAcsDb()61 bundle_zero = ( "ipn:13.42", dtntime("6/30/2010 16:47:08"), 0 )62 bundle_one = ( "ipn:13.42", dtntime("6/30/2010 16:47:08"), 1 )63 bundle_two = ( "ipn:13.42", dtntime("6/30/2010 16:47:09"), 3 )64 bundle_three = ( "ipn:13.42", dtntime("6/30/2010 16:47:09"), 4, 100, 1024 )65 bundle_four = ( "ipn:13.42", dtntime("6/30/2010 16:47:09"), 9, 100, 1024 )66 bundle_fourdup = ( "ipn:13.42", dtntime("6/30/2010 16:47:09"), 9, 100, 1024 )67 bundle_five = ( "ipn:13.42", dtntime("6/30/2010 16:47:11"), 12)68 bundle_six = ( "ipn:13.42", dtntime("6/30/2010 16:47:11"), 17)69 # Verify the database will give you a new Custody ID.70 assert acsDb.getCustodyId(bundle_zero) == 071 assert acsDb.getCustodyId(bundle_one) == 172 # Verify the database caches pre-existing Custody IDs.73 assert acsDb.getCustodyId(bundle_zero) == 074 assert acsDb.getCustodyId(bundle_two) == 275 assert acsDb.getCustodyId(bundle_zero) == 076 assert acsDb.getCustodyId(bundle_three) == 377 assert acsDb.getCustodyId(bundle_two) == 278 # Verify the database won't insert a new Custody ID if you ask it not to.79 assert acsDb.getCustodyId(bundle_four, dontCreate = True) == None80 assert acsDb.getCustodyId(bundle_four, dontCreate = False) == 481 # Verify the database finds things by hashing the tuple rather than82 # referencing the object.83 assert acsDb.getCustodyId(bundle_fourdup) == 484 # Verify we can look up Bundle IDs by Custody ID.85 assert acsDb.getBundleId(0) == bundle_zero86 assert acsDb.getBundleId(1) == bundle_one87 assert acsDb.getBundleId(2) == bundle_two88 assert acsDb.getBundleId(3) == bundle_three89 assert acsDb.getBundleId(4) == bundle_four90 assert acsDb.getBundleId(4) == bundle_fourdup91 # Set a custody ID.92 acsDb.setCustodyId(bundle_six, 11)...
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!!