Best Python code snippet using localstack_python
admin.py
Source: admin.py
...24 search_fields = ['name', ]25 list_editable = ['status', 'priority', ]26 filter_horizontal = ('tags',)27 inlines = [ RuleConditionsInLine, RuleActionsInLine ]28 def enable_rule(modeladmin, request, queryset):29 if queryset.count() == 0:30 return messages.error(request, 'Select atleast one entry')31 if request.user.is_superuser or request.user.has_perms(['ruleengine.CAN_ENABLE_RULE']):32 queryset.update(status=1)33 else:34 return messages.error(request, 'You are not authorised to perform such action')35 enable_rule.short_description = "Enable rule"36 def disable_rule(modeladmin, request, queryset):37 if queryset.count() == 0:38 return messages.error(request, 'Select atleast one entry')39 if request.user.is_superuser or request.user.has_perms(['ruleengine.CAN_DISABLE_RULE']):40 queryset.update(status=0)41 else:42 return messages.error(request, 'You are not authorised to perform such action')...
test_on_connect.py
Source: test_on_connect.py
...28 )29 lambda_module.store_id(connection_id)30 table.assert_no_pending_responses()31 table.deactivate()32def test_enable_rule(lambda_module):33 """34 Test enable_rule()35 """36 eventbridge = stub.Stubber(lambda_module.eventbridge)37 eventbridge.add_response("enable_rule", {}, {38 "Name": "EVENT_RULE_NAME",39 "EventBusName": "EVENT_BUS_NAME"40 })41 eventbridge.add_response(42 "describe_rule",43 {44 "Name": "EVENT_RULE_NAME",45 "State": "ENABLED",46 "EventBusName": "EVENT_BUS_NAME"47 },48 {"Name": "EVENT_RULE_NAME", "EventBusName": "EVENT_BUS_NAME"},49 )50 eventbridge.activate()51 lambda_module.enable_rule()52 eventbridge.assert_no_pending_responses()53 eventbridge.deactivate()54def test_handler(monkeypatch, lambda_module, context, apigateway_event):55 """56 Test handler()57 """58 connection_id = str(uuid.uuid4())59 event = apigateway_event()60 event["requestContext"] = {"connectionId": connection_id}61 calls = {62 "store_id": 0,63 "enable_rule": 064 }65 def store_id(connection_id_req: str):66 calls["store_id"] += 167 assert connection_id_req == connection_id68 monkeypatch.setattr(lambda_module, "store_id", store_id)69 def enable_rule():70 calls["enable_rule"] += 171 monkeypatch.setattr(lambda_module, "enable_rule", enable_rule)72 result = lambda_module.handler(event, context)73 assert result["statusCode"] == 20074 assert calls["store_id"] == 175 assert calls["enable_rule"] == 176def test_handler_no_id(monkeypatch, lambda_module, context, apigateway_event):77 """78 Test handler()79 """80 connection_id = str(uuid.uuid4())81 event = apigateway_event()82 calls = {83 "store_id": 0,84 "enable_rule": 085 }86 def store_id(connection_id_req: str):87 calls["store_id"] += 188 assert connection_id_req == connection_id89 monkeypatch.setattr(lambda_module, "store_id", store_id)90 def enable_rule():91 calls["enable_rule"] += 192 monkeypatch.setattr(lambda_module, "enable_rule", enable_rule)93 result = lambda_module.handler(event, context)94 assert result["statusCode"] == 40095 assert calls["store_id"] == 0...
enable-ec2-scheduler.py
Source: enable-ec2-scheduler.py
...4import boto35logger = logging.getLogger()6logger.setLevel(logging.INFO)7events = boto3.client('events')8def enable_rule(name):9 events.enable_rule(10 Name = name11 )12 13 logger.info("Rule '" + name + "' is enabled successfully.")14 15def lambda_handler(event, context):16 name = event['Name']17 18 enable_rule(name=name + "-start")19 enable_rule(name=name + "-stop")20 21 return {22 'statusCode': 200,23 'body': json.dumps('Scheduler enabled successfully.')...
Check out the latest blogs from LambdaTest on this topic:
The fact is not alien to us anymore that cross browser testing is imperative to enhance your application’s user experience. Enhanced knowledge of popular and highly acclaimed testing frameworks goes a long way in developing a new app. It holds more significance if you are a full-stack developer or expert programmer.
QA testers have a unique role and responsibility to serve the customer. Serving the customer in software testing means protecting customers from application defects, failures, and perceived failures from missing or misunderstood requirements. Testing for known requirements based on documentation or discussion is the core of the testing profession. One unique way QA testers can both differentiate themselves and be innovative occurs when senseshaping is used to improve the application user experience.
Having a good web design can empower business and make your brand stand out. According to a survey by Top Design Firms, 50% of users believe that website design is crucial to an organization’s overall brand. Therefore, businesses should prioritize website design to meet customer expectations and build their brand identity. Your website is the face of your business, so it’s important that it’s updated regularly as per the current web design trends.
Enterprise resource planning (ERP) is a form of business process management software—typically a suite of integrated applications—that assists a company in managing its operations, interpreting data, and automating various back-office processes. The introduction of a new ERP system is analogous to the introduction of a new product into the market. If the product is not handled appropriately, it will fail, resulting in significant losses for the business. Most significantly, the employees’ time, effort, and morale would suffer as a result of the procedure.
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!!