Best Python code snippet using tempest_python
test_rbac.py
Source:test_rbac.py
...35 'security_group': securitygroup.SecurityGroupRBAC,36 'subnetpool': subnetpool.SubnetPoolRBAC}37 self.assertEqual(class_map, rbac.RBACBaseObject.get_type_class_map())38class RBACBaseObjectIfaceTestCase(test_base.BaseObjectIfaceTestCase):39 def test_get_object(self, context=None):40 super(RBACBaseObjectIfaceTestCase,41 self).test_get_object(context=mock.ANY)42 def test_get_objects(self, context=None):43 super(RBACBaseObjectIfaceTestCase,...
s3-iam-check.py
Source:s3-iam-check.py
1#!/usr/bin/env python32import logging3import boto.utils4import boto35import time6import click7logging.basicConfig(level=logging.INFO)8logger = logging.getLogger(__name__)9@click.group()10@click.pass_context11def cli(ctx):12 pass13@cli.command()14@click.argument('bucketname', type=str)15@click.pass_context16def test(ctx, bucketname):17 hostname = boto.utils.get_instance_metadata()['local-hostname'].split('.')[0]18 test_get_object = True19 s3_iam_error = 020 inst_id = boto.utils.get_instance_identity()['document']['instanceId']21 ts = int(time.time())22 key = 'iamtest/{!s}'.format(inst_id)23 testobject = boto3.resource('s3').Object(bucketname, key)24 try:25 boto3.client('s3').list_objects_v2(Bucket=bucketname)26 except Exception:27 logger.info('S3 IAM check for \'listBucket\' failed')28 s3_iam_error = 129 try:30 testobject.put(Body=str.encode(str(ts)))31 except Exception:32 logger.info('S3 IAM check for \'putObject\' failed; skipping test for \'getObject\'')33 s3_iam_error = 134 test_get_object = False35 if (test_get_object):36 try:37 testobject.get()38 except Exception:39 logger.info('S3 IAM check for \'getObject\' failed')40 s3_iam_error = 141 try:42 with open('/var/local/textfile_collector/fluentd_s3_iam_check.prom',43 'w') as file:44 file.write('fluentd_s3_iam_error{{tag=\"td-agent\",hostname=\"{:s}\"}} {:.1f}\n'45 .format(hostname, s3_iam_error))46 except Exception:47 logger.exception('Failed to write file /var/local/textfile_collector/fluentd_s3_iam_check.prom')48 raise SystemExit(1)49if __name__ == '__main__':...
test_api.py
Source:test_api.py
...19 # self.invalid_request = self.factory.get('/en/api/v2/foo')20 self.view = self.setup_view(21 ConfigurationView(), self.request22 )23 def test_get_object(self):24 response = self.view.get(self.request)25 self.assertEqual(response.status_code, 200)26class ConfigurationEditionViewTest(TestCase):27 """28 Tests Editions for v229 """30 fixtures = [31 'global_key_values',32 'sample',33 ]34 def setUp(self):35 logging.disable(logging.CRITICAL)36 self.factory = RequestFactory()37 self.url = '/en/api/v2/configuration/sample'38 self.request = self.factory.get(self.url)39 self.request.version = 'v2'40 self.code = 'sample'41 self.view = self.setup_view(42 ConfigurationEditionView(), self.request, code=self.code43 )44 def test_get_object(self):45 response = self.view.get(self.request, code=self.code)...
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!!