Best Python code snippet using localstack_python
test_sqs.py
Source:test_sqs.py  
...105        assert "test-queue-" in attrs["QueueArn"]106        assert int(float(attrs["CreatedTimestamp"])) == pytest.approx(int(time.time()), 30)107        assert int(attrs["VisibilityTimeout"]) == 30, "visibility timeout is not the default value"108    @pytest.mark.aws_validated109    def test_create_queue_recently_deleted(self, sqs_client, sqs_create_queue, monkeypatch):110        monkeypatch.setattr(config, "SQS_DELAY_RECENTLY_DELETED", True)111        name = f"test-queue-{short_uid()}"112        queue_url = sqs_create_queue(QueueName=name)113        sqs_client.delete_queue(QueueUrl=queue_url)114        with pytest.raises(ClientError) as e:115            sqs_create_queue(QueueName=name)116        e.match("QueueDeletedRecently")117        e.match(118            "You must wait 60 seconds after deleting a queue before you can create another with the same name."119        )120    @pytest.mark.only_localstack121    def test_create_queue_recently_deleted_cache(self, sqs_client, sqs_create_queue, monkeypatch):122        # this is a white-box test for the QueueDeletedRecently timeout behavior123        from localstack.services.sqs import provider...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!!
