import json import pytest from ocpp.routing import after, create_route_map, on from ocpp.v201 import call_result @pytest.mark.asyncio async def test_route_message_with_existing_route( base_central_system, boot_notification_call ): """Test if the correct handler is called when routing a message. Also test if payload of request is injected correctly in handler. """ @on("BootNotification") def on_boot_notification(reason, charging_station, **kwargs): assert reason == "PowerUp" assert charging_station == { "vendor_name": "ICU Eve Mini", "firmware_version": "#1:3.4.0-2990#N:217H;1.0-223", "model": "ICU Eve Mini", } return call_result.BootNotificationPayload( current_time="2018-05-29T17:37:05.495259", interval=350, status="Accepted", ) @after("BootNotification") def after_boot_notification(reason, charging_station, **kwargs): assert reason == "PowerUp" assert charging_station == { "vendor_name": "ICU Eve Mini", "firmware_version": "#1:3.4.0-2990#N:217H;1.0-223", "model": "ICU Eve Mini", } setattr(base_central_system, "on_boot_notification", on_boot_notification) setattr(base_central_system, "after_boot_notification", after_boot_notification) base_central_system.route_map = create_route_map(base_central_system) await base_central_system.route_message(boot_notification_call) base_central_system._connection.send.assert_called_once_with( json.dumps( [ 3, "1", { "currentTime": "2018-05-29T17:37:05.495259", "interval": 350, "status": "Accepted", }, ], separators=(",", ":"), ) ) @pytest.mark.asyncio async def test_route_message_with_no_route(base_central_system, heartbeat_call): """ Test that a CALLERROR is sent back, reporting that no handler is registred for it. """ # Empty the route map base_central_system.route_map = {} await base_central_system.route_message(heartbeat_call) base_central_system._connection.send.assert_called_once_with( json.dumps( [ 4, 1, "NotImplemented", "Request Action is recognized but not supported by the receiver", {"cause": "No handler for Heartbeat registered."}, ], separators=(",", ":"), ) ) @pytest.mark.asyncio async def test_call_with_unique_id_should_return_same_id( mock_boot_request, mock_base_central_system ): expected_unique_id = "12345" # Call the method being tested with a unique_id as a parameter await mock_base_central_system.call(mock_boot_request, unique_id=expected_unique_id) ( actual_unique_id, _, ) = mock_base_central_system._get_specific_response.call_args_list[0][0] # Check the actual unique id is equals to the one passed to the call method assert actual_unique_id == expected_unique_id @pytest.mark.asyncio async def test_call_without_unique_id_should_return_a_random_value( mock_boot_request, mock_base_central_system ): expected_unique_id = str(mock_base_central_system._unique_id_generator()) # Call the method being tested without passing a unique_id as a parameter await mock_base_central_system.call(mock_boot_request) ( actual_unique_id, _, ) = mock_base_central_system._get_specific_response.call_args_list[0][0] # Check the actual unique id is equals to the one internally generated assert actual_unique_id == expected_unique_id