How to use _receive_assert_delete method in localstack

Best Python code snippet using localstack_python

test_notifications.py

Source: test_notifications.py Github

copy

Full Screen

...37 # make sure we receive the correct topic ARN in notifications38 assertions.append({'TopicArn': topic_info['TopicArn']})39 # make sure the notification contains message attributes40 assertions.append({'Value': test_value})41 self._receive_assert_delete(queue_url, assertions, sqs_client)42 retry(assert_message, retries=PUBLICATION_RETRIES, sleep=PUBLICATION_TIMEOUT)43 def test_bucket_notifications(self):44 s3_resource = aws_stack.connect_to_resource('s3')45 s3_client = aws_stack.connect_to_service('s3')46 sqs_client = aws_stack.connect_to_service('sqs')47 # create test bucket and queue48 s3_resource.create_bucket(Bucket=TEST_BUCKET_NAME_WITH_NOTIFICATIONS)49 queue_info = sqs_client.create_queue(QueueName=TEST_QUEUE_NAME_FOR_S3)50 # create notification on bucket51 queue_url = queue_info['QueueUrl']52 queue_arn = aws_stack.sqs_queue_arn(TEST_QUEUE_NAME_FOR_S3)53 events = ['s3:ObjectCreated:*', 's3:ObjectRemoved:Delete']54 filter_rules = {55 'FilterRules': [{56 'Name': 'prefix',57 'Value': 'testupload/​'58 }, {59 'Name': 'suffix',60 'Value': 'testfile.txt'61 }]62 }63 s3_client.put_bucket_notification_configuration(64 Bucket=TEST_BUCKET_NAME_WITH_NOTIFICATIONS,65 NotificationConfiguration={66 'QueueConfigurations': [{67 'Id': 'id0001',68 'QueueArn': queue_arn,69 'Events': events,70 'Filter': {71 'Key': filter_rules72 }73 }, {74 # Add second dummy config to fix https:/​/​github.com/​localstack/​localstack/​issues/​45075 'Id': 'id0002',76 'QueueArn': queue_arn,77 'Events': [],78 'Filter': {79 'Key': filter_rules80 }81 }]82 }83 )84 # retrieve and check notification config85 config = s3_client.get_bucket_notification_configuration(Bucket=TEST_BUCKET_NAME_WITH_NOTIFICATIONS)86 self.assertEqual(len(config['QueueConfigurations']), 2)87 config = [c for c in config['QueueConfigurations'] if c['Events']][0]88 self.assertEqual(events, config['Events'])89 self.assertEqual(filter_rules, config['Filter']['Key'])90 # upload file to S3 (this should NOT trigger a notification)91 test_key1 = '/​testdata'92 test_data1 = b'{"test": "bucket_notification1"}'93 s3_client.upload_fileobj(BytesIO(test_data1), TEST_BUCKET_NAME_WITH_NOTIFICATIONS, test_key1)94 # upload file to S3 (this should trigger a notification)95 test_key2 = 'testupload/​dir1/​testfile.txt'96 test_data2 = b'{"test": "bucket_notification2"}'97 s3_client.upload_fileobj(BytesIO(test_data2), TEST_BUCKET_NAME_WITH_NOTIFICATIONS, test_key2)98 # receive, assert, and delete message from SQS99 self._receive_assert_delete(queue_url,100 [{'key': test_key2}, {'name': TEST_BUCKET_NAME_WITH_NOTIFICATIONS}], sqs_client)101 # delete notification config102 self._delete_notification_config()103 # put notification config with single event type104 event = 's3:ObjectCreated:*'105 s3_client.put_bucket_notification_configuration(Bucket=TEST_BUCKET_NAME_WITH_NOTIFICATIONS,106 NotificationConfiguration={107 'QueueConfigurations': [{108 'Id': 'id123456',109 'QueueArn': queue_arn,110 'Events': [event]111 }]112 }113 )114 config = s3_client.get_bucket_notification_configuration(Bucket=TEST_BUCKET_NAME_WITH_NOTIFICATIONS)115 config = config['QueueConfigurations'][0]116 self.assertEqual(config['Events'], [event])117 # put notification config with single event type118 event = 's3:ObjectCreated:*'119 filter_rules = {120 'FilterRules': [{121 'Name': 'prefix',122 'Value': 'testupload/​'123 }]124 }125 s3_client.put_bucket_notification_configuration(Bucket=TEST_BUCKET_NAME_WITH_NOTIFICATIONS,126 NotificationConfiguration={127 'QueueConfigurations': [{128 'Id': 'id123456',129 'QueueArn': queue_arn,130 'Events': [event],131 'Filter': {132 'Key': filter_rules133 }134 }]135 }136 )137 config = s3_client.get_bucket_notification_configuration(Bucket=TEST_BUCKET_NAME_WITH_NOTIFICATIONS)138 config = config['QueueConfigurations'][0]139 self.assertEqual(config['Events'], [event])140 self.assertEqual(filter_rules, config['Filter']['Key'])141 # upload file to S3 (this should trigger a notification)142 test_key2 = 'testupload/​dir1/​testfile.txt'143 test_data2 = b'{"test": "bucket_notification2"}'144 s3_client.upload_fileobj(BytesIO(test_data2), TEST_BUCKET_NAME_WITH_NOTIFICATIONS, test_key2)145 # receive, assert, and delete message from SQS146 self._receive_assert_delete(queue_url,147 [{'key': test_key2}, {'name': TEST_BUCKET_NAME_WITH_NOTIFICATIONS}], sqs_client)148 # delete notification config149 self._delete_notification_config()150 #151 # Tests s3->sns->sqs notifications152 #153 sns_client = aws_stack.connect_to_service('sns')154 topic_info = sns_client.create_topic(Name=TEST_S3_TOPIC_NAME)155 s3_client.put_bucket_notification_configuration(156 Bucket=TEST_BUCKET_NAME_WITH_NOTIFICATIONS,157 NotificationConfiguration={158 'TopicConfigurations': [159 {160 'Id': 'id123',161 'Events': ['s3:ObjectCreated:*'],162 'TopicArn': topic_info['TopicArn']163 }164 ]165 })166 sns_client.subscribe(TopicArn=topic_info['TopicArn'], Protocol='sqs', Endpoint=queue_arn)167 test_key2 = 'testupload/​dir1/​testfile.txt'168 test_data2 = b'{"test": "bucket_notification2"}'169 s3_client.upload_fileobj(BytesIO(test_data2), TEST_BUCKET_NAME_WITH_NOTIFICATIONS, test_key2)170 # verify subject and records171 def verify():172 response = sqs_client.receive_message(QueueUrl=queue_url)173 for message in response['Messages']:174 snsObj = json.loads(message['Body'])175 testutil.assert_object({'Subject': 'Amazon S3 Notification'}, snsObj)176 notificationObj = json.loads(snsObj['Message'])177 testutil.assert_objects(178 [179 {'key': test_key2},180 {'name': TEST_BUCKET_NAME_WITH_NOTIFICATIONS}181 ], notificationObj['Records'])182 sqs_client.delete_message(QueueUrl=queue_url, ReceiptHandle=message['ReceiptHandle'])183 retry(verify, retries=PUBLICATION_RETRIES, sleep=PUBLICATION_TIMEOUT)184 self._delete_notification_config()185 def _delete_notification_config(self):186 s3_client = aws_stack.connect_to_service('s3')187 s3_client.put_bucket_notification_configuration(188 Bucket=TEST_BUCKET_NAME_WITH_NOTIFICATIONS, NotificationConfiguration={})189 config = s3_client.get_bucket_notification_configuration(Bucket=TEST_BUCKET_NAME_WITH_NOTIFICATIONS)190 self.assertFalse(config.get('QueueConfigurations'))191 self.assertFalse(config.get('TopicConfiguration'))192 def _receive_assert_delete(self, queue_url, assertions, sqs_client=None, required_subject=None):193 if not sqs_client:194 sqs_client = aws_stack.connect_to_service('sqs')195 response = sqs_client.receive_message(QueueUrl=queue_url)196 messages = [json.loads(to_str(m['Body'])) for m in response['Messages']]197 testutil.assert_objects(assertions, messages)198 for message in response['Messages']:...

Full Screen

Full Screen

Blogs

Check out the latest blogs from LambdaTest on this topic:

13 Best Java Testing Frameworks For 2023

The fact is not alien to us anymore that cross browser testing is imperative to enhance your application’s user experience. Enhanced knowledge of popular and highly acclaimed testing frameworks goes a long way in developing a new app. It holds more significance if you are a full-stack developer or expert programmer.

QA Innovation – Using the senseshaping concept to discover customer needs

QA Innovation - Using the senseshaping concept to discover customer needsQA testers have a unique role and responsibility to serve the customer. Serving the customer in software testing means protecting customers from application defects, failures, and perceived failures from missing or misunderstood requirements. Testing for known requirements based on documentation or discussion is the core of the testing profession. One unique way QA testers can both differentiate themselves and be innovative occurs when senseshaping is used to improve the application user experience.

Best 23 Web Design Trends To Follow In 2023

Having a good web design can empower business and make your brand stand out. According to a survey by Top Design Firms, 50% of users believe that website design is crucial to an organization’s overall brand. Therefore, businesses should prioritize website design to meet customer expectations and build their brand identity. Your website is the face of your business, so it’s important that it’s updated regularly as per the current web design trends.

Acquiring Employee Support for Change Management Implementation

Enterprise resource planning (ERP) is a form of business process management software—typically a suite of integrated applications—that assists a company in managing its operations, interpreting data, and automating various back-office processes. The introduction of a new ERP system is analogous to the introduction of a new product into the market. If the product is not handled appropriately, it will fail, resulting in significant losses for the business. Most significantly, the employees’ time, effort, and morale would suffer as a result of the procedure.

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