Best Python code snippet using localstack_python
test_stepfunctions.py
Source:test_stepfunctions.py
...504 finally:505 client1.delete_state_machine(stateMachineArn=machine_arn)506 client1.delete_state_machine(stateMachineArn=child_machine_arn)507@pytest.mark.aws_validated508def test_default_logging_configuration(iam_client, create_state_machine, stepfunctions_client):509 role_name = f"role_name-{short_uid()}"510 try:511 role_arn = iam_client.create_role(512 RoleName=role_name,513 AssumeRolePolicyDocument=json.dumps(STS_ROLE_POLICY_DOC),514 )["Role"]["Arn"]515 definition = clone(TEST_STATE_MACHINE)516 definition = json.dumps(definition)517 sm_name = f"sts-logging-{short_uid()}"518 result = create_state_machine(name=sm_name, definition=definition, roleArn=role_arn)519 assert result["ResponseMetadata"]["HTTPStatusCode"] == 200520 result = stepfunctions_client.describe_state_machine(521 stateMachineArn=result["stateMachineArn"]522 )...
test_observability.py
Source:test_observability.py
...12)13from karadoc.test_utils.stdio import captured_output14@mock_settings_for_test_class({"observability": None})15class TestObservability(TestCase):16 def test_default_logging_configuration(self):17 setup_observability(reset=True)18 self.assertEqual(1, len(logging.root.handlers))19 self.assertEqual(logging.INFO, logging.root.level)20 @mock_settings_for_test({"observability": {"type": None, "level": "WARN"}})21 def test_logging_configuration_warn(self):22 setup_observability(reset=True)23 self.assertEqual(1, len(logging.root.handlers))24 self.assertEqual(logging.WARN, logging.root.level)25 @staticmethod26 def _generate_logs():27 with captured_output() as (out, err):28 setup_observability(reset=True)29 LOG = logging.getLogger(__name__)30 LOG.info("Hello")...
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!!