How to use _require_queue method in localstack

Best Python code snippet using localstack_python

provider.py

Source:provider.py Github

copy

Full Screen

...548 self.shutdown()549 def _add_queue(self, queue: SqsQueue):550 with self._mutex:551 self.queues[queue.key] = queue552 def _require_queue(self, key: QueueKey) -> SqsQueue:553 """554 Returns the queue for the given key, or raises QueueDoesNotExist if it does not exist.555 :param key: the QueueKey to look for556 :returns: the queue557 :raises QueueDoesNotExist: if the queue does not exist558 """559 with self._mutex:560 if key not in self.queues:561 raise QueueDoesNotExist()562 return self.queues[key]563 def _require_queue_by_arn(self, queue_arn: str) -> SqsQueue:564 arn = parse_arn(queue_arn)565 key = QueueKey(region=arn["region"], account_id=arn["account"], name=arn["resource"])566 return self._require_queue(key)567 def _resolve_queue(568 self,569 context: RequestContext,570 queue_name: Optional[str] = None,571 queue_url: Optional[str] = None,572 ) -> SqsQueue:573 """574 Uses resolve_queue_key to determine the QueueKey from the given input, and returns the respective queue,575 or raises QueueDoesNotExist if it does not exist.576 :param context: the request context, used for getting region and account_id, and optionally the queue_url577 :param queue_name: the queue name (if this is set, then this will be used for the key)578 :param queue_url: the queue url (if name is not set, this will be used to determine the queue name)579 :returns: the queue580 :raises QueueDoesNotExist: if the queue does not exist581 """582 key = resolve_queue_key(context, queue_name, queue_url)583 return self._require_queue(key)584 def create_queue(585 self,586 context: RequestContext,587 queue_name: String,588 attributes: QueueAttributeMap = None,589 tags: TagMap = None,590 ) -> CreateQueueResult:591 fifo = attributes and (592 attributes.get(QueueAttributeName.FifoQueue, "false").lower() == "true"593 )594 k = QueueKey(context.region, context.account_id, queue_name)595 # Special Case TODO: why is an emtpy policy passed at all? same in set_queue_attributes596 if attributes and attributes.get(QueueAttributeName.Policy) == "":597 del attributes[QueueAttributeName.Policy]...

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