Best Python code snippet using tempest_python
test_fragment_mol_combine.py
Source:test_fragment_mol_combine.py
1from pymolgen.fragment_mol_combine import *2def test_update_limit():3 fragment_database_mol = get_fragment_database('outputs/fragments.sdf')4 fragment_database = []5 for i in fragment_database_mol:6 fragment_database.append(i.graph)7 frequencies = get_bond_frequencies('outputs/frequencies.txt')8 frag_frequencies = get_frag_frequencies('outputs/frag_frequencies.txt')9 frag_mapping = get_frag_mapping('outputs/fragments.txt')10 frequencies = update_bond_frequencies(frequencies, frag_mapping)11 new_fragment_database, new_bond_frequencies, new_frag_frequencies, new_frag_mapping = update_limit(2, fragment_database, frequencies, frag_frequencies, frag_mapping)12 assert new_frag_frequencies == [10, 7, 13, 19, 2, 2, 4, 6, 5, 6, 4, 2, 3, 6, 2]13 assert new_frag_mapping == [{0: 0, 1: 1, 2: 2, 3: 3}, {0: 0, 1: 1}, {0: 0, 1: 1}, {0: 0, 1: 1, 2: 2}, {0: 0, 1: 1, 2: 2}, {0: 0, 1: 1, 2: 2, 3: 3, 4: 4, 5: 5, 6: 6, 7: 7, 8: 8, 9: 9}, {0: 0}, {0: 0, 1: 1}, {0: 0, 1: 1}, {0: 0, 1: 1, 2: 2}, {0: 0, 1: 1, 2: 2, 3: 3, 4: 4, 5: 5, 6: 6, 7: 7, 8: 8, 9: 9, 10: 10}, {0: 0, 1: 1, 2: 2, 3: 3, 4: 4, 5: 5, 6: 6, 7: 7, 8: 8, 9: 9}, {0: 0}, {0: 0}, {0: 0, 1: 1, 2: 2, 3: 3, 4: 4, 5: 5, 6: 6, 7: 7, 8: 8, 9: 9}]14 print(frag_frequencies)15 print(new_bond_frequencies)16 assert new_bond_frequencies == {(1, 2, 1, 0): 6, (2, 3, 0, 2): 4, (3, 4, 2, 0): 1, (3, 5, 2, 1): 1, (2, 7, 0, 1): 2, (1, 8, 1, 0): 2, (3, 8, 2, 0): 5, (2, 8, 0, 0): 2, (3, 3, 2, 2): 5, (1, 3, 1, 2): 1, (3, 9, 2, 2): 1, (2, 9, 0, 2): 3, (3, 10, 2, 8): 2, (3, 11, 2, 0): 1, (7, 11, 1, 0): 1, (1, 5, 1, 1): 1, (5, 12, 1, 0): 1, (0, 13, 0, 0): 3, (0, 8, 0, 0): 2, (8, 13, 0, 0): 2, (8, 14, 0, 0): 1, (13, 14, 0, 0): 2, (3, 13, 2, 0): 1, (7, 8, 1, 0): 1, (12, 14, 0, 0): 1, (1, 11, 1, 0): 1, (4, 11, 0, 0): 1, (1, 4, 1, 0): 1}...
test_limit_client.py
Source:test_limit_client.py
...52 default_limit=10,53 domain_id='foo',54 description='Spacely Widgets',55 status=201)56 def test_update_limit(self):57 fake_result = {'foo': 'bar'}58 self.check_service_client_function(59 self.client.update_limit,60 'tempest.lib.common.rest_client.RestClient.patch',61 fake_result,62 False,63 limit_id='123', resource_limit=20,64 status=200)65 def test_update_limit_with_description(self):66 fake_result = {'foo': 'bar'}67 self.check_service_client_function(68 self.client.update_limit,69 'tempest.lib.common.rest_client.RestClient.patch',70 fake_result,...
test_limits.py
Source:test_limits.py
...43 ÐÑовеÑка оÑибки, в ÑлÑÑае неÑÑÑеÑÑвÑÑÑего id полÑзоваÑелÑ44 """45 result = await api_client.get('/limits/client/1')46 assert result.status == 40447async def test_update_limit(api_client):48 """49 Ðбновление даннÑÑ
в ÐÐ50 """51 old_result = await api_client.post('/limits', json=correct_data)52 old_result = json.loads(await old_result.text())53 data = old_result.copy()54 data['max_transfer'] = 133755 new_result = await api_client.put('/limits', json=data)56 assert new_result.status == 20057 new_result = json.loads(await new_result.text())58 assert new_result != old_result59async def test_delete_limit(api_client):60 """61 Удаление запиÑи...
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!!