How to use _destroy_stack method in localstack

Best Python code snippet using localstack_python

test_destroy.py

Source:test_destroy.py Github

copy

Full Screen

...67 # it being successfully deleted)68 provider = mock.MagicMock()69 provider.get_stack.side_effect = StackDoesNotExist("mock")70 self.action.provider_builder = MockProviderBuilder(provider)71 status = self.action._destroy_stack(MockStack("vpc"), status=PENDING)72 # if we haven't processed the step (ie. has never been SUBMITTED,73 # should be skipped)74 self.assertEqual(status, SKIPPED)75 status = self.action._destroy_stack(MockStack("vpc"), status=SUBMITTED)76 # if we have processed the step and then can't find the stack, it means77 # we successfully deleted it78 self.assertEqual(status, COMPLETE)79 def test_destroy_stack_step_statuses(self):80 mock_provider = mock.MagicMock()81 stacks_dict = self.context.get_stacks_dict()82 def get_stack(stack_name):83 return stacks_dict.get(stack_name)84 plan = self.action._generate_plan()85 step = plan.steps[0]86 # we need the AWS provider to generate the plan, but swap it for87 # the mock one to make the test easier88 self.action.provider_builder = MockProviderBuilder(mock_provider)89 # simulate stack doesn't exist and we haven't submitted anything for...

Full Screen

Full Screen

destroy.py

Source:destroy.py Github

copy

Full Screen

...32 stack_action=self._destroy_stack,33 tail=self._tail_stack if tail else None,34 context=self.context,35 reverse=True)36 def _destroy_stack(self, stack, **kwargs):37 old_status = kwargs.get("status")38 wait_time = 0 if old_status is PENDING else STACK_POLL_TIME39 if self.cancel.wait(wait_time):40 return INTERRUPTED41 provider = self.build_provider(stack)42 try:43 provider_stack = provider.get_stack(stack.fqn)44 except StackDoesNotExist:45 logger.debug("Stack %s does not exist.", stack.fqn)46 # Once the stack has been destroyed, it doesn't exist. If the47 # status of the step was SUBMITTED, we know we just deleted it,48 # otherwise it should be skipped49 if kwargs.get("status", None) == SUBMITTED:50 return DestroyedStatus...

Full Screen

Full Screen

destroyStackStep.py

Source:destroyStackStep.py Github

copy

Full Screen

...18 """operation containing the processing performed by this step"""19 try:20 if self.stack_infos.stack_id:21 client = boto3.client('cloudformation', region_name=self.infos.region)22 self._destroy_stack(client)23 self._monitor(client)24 else:25 self.logger.info('Not destruction stack (reason: the stack not exist).')26 self.stack_infos.stack_id = None 27 self.infos.save()28 return self._on_success()29 except Exception as e:30 self.infos.exit_exception = e31 self.infos.exit_code = 1732 self.logger.error(self.title, exc_info=True)33 return self._on_fail()34 35 @abstractmethod36 def _on_success(self):37 pass38 39 @abstractmethod40 def _on_fail(self):41 pass42 def _destroy_stack(self, client):43 """destroys the cloud formation stack"""44 client.delete_stack(StackName=self.stack_infos.stack_id)45 def _monitor(self, client):46 """pause the process and wait for the result of the cloud formation stack deletion"""47 wait = 048 while True:49 wait += self.timer50 w = self._second_to_string(wait)51 self.logger.info('')52 time.sleep(self.timer)53 self.logger.info(f'Deleting stack in progress ... [{w} elapsed]')54 response = client.describe_stacks(StackName=self.stack_infos.stack_id)55 stack = response['Stacks'][0]56 response2 = client.list_stack_resources(StackName=self.stack_infos.stack_id)...

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