Best Python code snippet using localstack_python
worker.py
Source:worker.py
...33 task_token = self.task_token34 self.lock.release()35 if task_token:36 try:37 heartbeat = self.config.swf_client.record_activity_task_heartbeat(38 taskToken=task_token39 )40 self.cancelRequested = heartbeat.get('cancelRequested', False)41 except botocore.exceptions.ClientError as e:42 if e.response['Error']['Code'] != 'UnknownResourceFault':43 print('Error on record_activity_task_heartbeat Error code {} : response {} : {}'.format(e.response['Error']['Code'], e.response, e))44 except Exception as e:45 # This can fail on occasion if the task is already marked as complete46 print('Error on record_activity_task_heartbeat : {}'.format(e))47 pass48 time.sleep(60)49 def set_task_token(self, task_token):50 self.lock.acquire()51 self.task_token = task_token...
test_heartbeat.py
Source:test_heartbeat.py
1import json2from unittest.mock import MagicMock, Mock3import pytest4from cadence.activity import ActivityContext, ActivityTask5from cadence.cadence_types import RecordActivityTaskHeartbeatRequest6from cadence.errors import BadRequestError7from cadence.exceptions import ActivityCancelledException8from cadence.workflowservice import WorkflowService9@pytest.fixture10def activity_context():11 activity_context = ActivityContext()12 activity_context.service = MagicMock()13 activity_context.activity_task = ActivityTask()14 activity_context.activity_task.task_token = "task-token"15 return activity_context16def test_heartbeat(activity_context: ActivityContext):17 response = Mock()18 response.cancel_requested = False19 activity_context.service.record_activity_task_heartbeat = Mock(return_value=(response, None))20 activity_context.heartbeat("payload")21 args, kwargs = activity_context.service.record_activity_task_heartbeat.call_args_list[0]22 assert isinstance(args[0], RecordActivityTaskHeartbeatRequest)23 request: RecordActivityTaskHeartbeatRequest = args[0]24 assert request.details == json.dumps("payload").encode("utf-8")25 assert request.task_token == "task-token"26 assert request.identity == WorkflowService.get_identity()27def test_heartbeat_error(activity_context: ActivityContext):28 response = Mock()29 response.cancel_requested = False30 with pytest.raises(BadRequestError):31 activity_context.service.record_activity_task_heartbeat = Mock(return_value=(response,32 BadRequestError("error message")))33 activity_context.heartbeat("payload")34def test_heartbeat_cancel_requested(activity_context: ActivityContext):35 response = Mock()36 response.cancel_requested = True37 with pytest.raises(ActivityCancelledException):38 activity_context.service.record_activity_task_heartbeat = Mock(return_value=(response, None))39 activity_context.heartbeat("payload")40def test_get_heartbeat_details(activity_context: ActivityContext):41 activity_context.activity_task.heartbeat_details = b'{"name": "Bob"}'42 details = activity_context.get_heartbeat_details()43 assert details == {"name": "Bob"}44def test_get_heartbeat_details_none(activity_context: ActivityContext):45 activity_context.activity_task.heartbeat_details = None46 details = activity_context.get_heartbeat_details()...
test_heartbeat_sender.py
Source:test_heartbeat_sender.py
...9 self.number_heartbeats = mp.Value('i', 0)10 def _send_heartbeat(self, timeout, task_token):11 while self.is_send_heartbeat.value:12 try:13 self.swf.record_activity_task_heartbeat(task_token=task_token, details=None) 14 except Exception:15 pass16 time.sleep(timeout)17 self.number_heartbeats.value += 1 18@pytest.fixture19def heartbeat_sender(mocker):20 swf = type("ClientMock", (object,), {'record_activity_task_heartbeat':Mock()})21 sender = floto.HeartbeatSender()22 sender.swf = swf23 return sender24 25@pytest.fixture26def heartbeat_sender_mock(mocker):27 swf = type("ClientMock", (object,), {'record_activity_task_heartbeat':Mock()})...
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!!