How to use get_asset_by_name method in avocado

Best Python code snippet using avocado_python

assets.py

Source:assets.py Github

copy

Full Screen

...16 password (string): Password of the asset.17 Methods:18 get_assets(): Get assets all assets from the robot manager console.19 get_asset_by_id(): Get asset by ID from the robot manager console.20 get_asset_by_name(): Get asset by name from the robot manager console.21 """22 def __init__(self, **kwargs):23 self.connection = kwargs['connection']24 self.id = kwargs.get('asset_id', None)25 self.name = kwargs.get('asset_name', None)26 self.type = None27 self.data = None28 self.username = None29 self.password = None30 if self.id:31 self.get_asset_by_id()32 elif self.name:33 self.get_asset_by_name()34 else:35 raise ValueError('You must provide either assets_id or assets_name')36 def get_assets(self):37 endpoint = f"{self.connection.http_protocol}{self.connection.url}/api/assets/"38 response = requests.get(endpoint, headers=self.connection.headers)39 return response.json()40 def get_asset_by_name(self):41 endpoint = f"{self.connection.http_protocol}{self.connection.url}/api/assets/asset_name={self.name}"42 try:43 response = requests.get(endpoint, headers=self.connection.headers)44 except Exception as exception_message:45 raise Exception(exception_message)46 asset = response.json()47 self.id = asset['asset_id']48 self.name = asset['asset_name']49 self.type = asset['asset_type']50 if self.type == "Credential":51 self.username = asset['data_1']52 self.password = asset['data_2']53 else:54 self.data = asset['data_1']...

Full Screen

Full Screen

update_release.py

Source:update_release.py Github

copy

Full Screen

...7 event_data = json.load(f)8if event_data['action'] != 'published':9 print("Invalid state to trigger this action")10 exit(1)11def get_asset_by_name(name):12 for asset in event_data['release']['assets']:13 if asset['name'] == name:14 return asset15 return None16release_info_asset = get_asset_by_name('release_information.json')17if release_info_asset == None:18 print("release_information.json couldn't be found on the published release")19 exit(1)20release_info_asset_data = request.urlopen(release_info_asset['browser_download_url']).read()21release_info_asset_parsed = json.loads(release_info_asset_data)22# Add URL to all artifacts23for artifact in release_info_asset_parsed['artifacts']:24 artifact_asset = get_asset_by_name(artifact['fileName'])25 if artifact_asset == None:26 print("%s couldn't be found on the published release" % artifact['fileName'])27 exit(1)28 artifact['url'] = artifact_asset['browser_download_url']29with open("latest.json", "w") as f:30 f.write(json.dumps(release_info_asset_parsed, sort_keys=True, indent=4))31with open(release_info_asset_parsed['version'] + ".json", "w") as f:...

Full Screen

Full Screen

test_util.py

Source:test_util.py Github

copy

Full Screen

...9class GetAssetByNameTest(TestCase):10 def test_success(self):11 asset = DCAssetFactory(sn='sn_123123', barcode='barcode_321321')12 name = 'Some Name - sn_123123 - barcode_321321'13 self.assertEqual(get_asset_by_name(name).id, asset.id)14 def test_improper_asset_name(self):15 DCAssetFactory(sn='sn_123123')16 name = 'Some Name - sn_123123-'17 self.assertIsNone(get_asset_by_name(name))18 def test_asset_params_cleaning(self):19 asset_1 = DCAssetFactory(sn='sn_123123', barcode=None)20 name = 'Some Name - sn_123123 - '21 self.assertEqual(get_asset_by_name(name).id, asset_1.id)22 asset_2 = DCAssetFactory(sn=None, barcode='barcode_321321')23 name = 'Some Name - - barcode_321321'24 self.assertEqual(get_asset_by_name(name).id, asset_2.id)25 def test_asset_does_not_exist(self):26 DCAssetFactory(sn='sn_123123', barcode='barcode_321321')27 name = 'Some Name - sn_123123 - barcode_321'...

Full Screen

Full Screen

Automation Testing Tutorials

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.

LambdaTest Learning Hubs:

YouTube

You could also refer to video tutorials over LambdaTest YouTube channel to get step by step demonstration from industry experts.

Run avocado automation tests on LambdaTest cloud grid

Perform automation testing on 3000+ real desktop and mobile devices online.

Try LambdaTest Now !!

Get 100 minutes of automation test minutes FREE!!

Next-Gen App & Browser Testing Cloud

Was this article helpful?

Helpful

NotHelpful