How to use create_or_update_group_type_specs method in tempest

Best Python code snippet using tempest_python

test_group_type_specs.py

Source:test_group_type_specs.py Github

copy

Full Screen

...47 "key2": "value2"48 }49 with self.override_role():50 self.group_types_client. \51 create_or_update_group_type_specs(52 group_type['id'], create_specs)['group_specs']53 @decorators.idempotent_id('469d0253-aa13-423f-8264-231ac17effbf')54 @rbac_rule_validation.action(55 service="cinder",56 rules=[_GROUP_SPEC_SHOW]57 )58 def test_group_type_specs_show(self):59 group_type = self.create_group_type()60 specs = {61 "key1": "value1",62 "key2": "value2"63 }64 self.group_types_client.create_or_update_group_type_specs(65 group_type['id'], specs)['group_specs']66 # Show specified item of group type specs67 with self.override_role():68 self.group_types_client.show_group_type_specs_item(69 group_type['id'], 'key2')70 @decorators.idempotent_id('2e706a4e-dec9-46bf-9426-1c5b6f3ce102')71 @rbac_rule_validation.action(72 service="cinder",73 rules=[_GROUP_SPEC_UPDATE]74 )75 def test_group_type_specs_update(self):76 group_type = self.create_group_type()77 # Update specified item of group type specs78 update_key = 'key3'79 update_spec = {update_key: "value3-updated"}80 self.group_types_client.create_or_update_group_type_specs(81 group_type['id'], update_spec)['group_specs']82 with self.override_role():83 self.group_types_client.update_group_type_specs_item(84 group_type['id'], update_key, update_spec)85 @decorators.idempotent_id('fd5e332b-fb2c-4957-ace9-11d60ddd5472')86 @rbac_rule_validation.action(87 service="cinder",88 rules=[_GROUP_SPEC_LIST]89 )90 def test_group_type_specs_list(self):91 group_type = self.create_group_type()92 with self.override_role():93 self.group_types_client.list_group_type_specs(94 group_type['id'])['group_specs']95 @decorators.idempotent_id('d9639a07-e441-4576-baf6-7ec732b16572')96 @rbac_rule_validation.action(97 service="cinder",98 rules=[_GROUP_SPEC_DELETE]99 )100 def test_group_type_specs_delete(self):101 group_type = self.create_group_type()102 # Delete specified item of group type specs103 delete_key = 'key1'104 specs = {'key1': 'value1'}105 self.group_types_client.create_or_update_group_type_specs(106 group_type['id'], specs)['group_specs']107 with self.override_role():108 self.group_types_client.delete_group_type_specs_item(...

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 tempest 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