Best Python code snippet using localstack_python
test_sns.py
Source:test_sns.py
...1653 assert e.value.response["Error"]["Code"] == "InvalidParameter"1654 assert e.value.response["Error"]["Message"] == "Invalid parameter: Message too long"1655 assert e.value.response["ResponseMetadata"]["HTTPStatusCode"] == 4001656 @pytest.mark.only_localstack # needs real credentials for GCM/FCM1657 def test_publish_to_gcm(self, sns_client):1658 key = "mock_server_key"1659 token = "mock_token"1660 platform_app_arn = sns_client.create_platform_application(1661 Name="firebase", Platform="GCM", Attributes={"PlatformCredential": key}1662 )["PlatformApplicationArn"]1663 endpoint_arn = sns_client.create_platform_endpoint(1664 PlatformApplicationArn=platform_app_arn,1665 Token=token,1666 )["EndpointArn"]1667 message = {1668 "GCM": '{ "notification": {"title": "Title of notification", "body": "It works" } }'1669 }1670 with pytest.raises(ClientError) as ex:1671 sns_client.publish(...
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!!