test: add clear cache implementation example in ocpp2 server main
authorJérôme Benoit <jerome.benoit@piment-noir.org>
Mon, 10 Jun 2024 22:47:44 +0000 (00:47 +0200)
committerJérôme Benoit <jerome.benoit@piment-noir.org>
Mon, 10 Jun 2024 22:47:44 +0000 (00:47 +0200)
Signed-off-by: Jérôme Benoit <jerome.benoit@piment-noir.org>
tests/ocpp-server/server.py

index 4dc7272709ebfcf075fb28f884dbc3b23719de0e..28f1f1c792763b3b5d8321953f30165a2db62ce2 100644 (file)
@@ -3,18 +3,18 @@ import logging
 from datetime import datetime, timezone
 from typing import Sequence
 
 from datetime import datetime, timezone
 from typing import Sequence
 
+import ocpp.v201
 import websockets
 from ocpp.routing import on
 import websockets
 from ocpp.routing import on
-from ocpp.v201 import ChargePoint as cp
 from ocpp.v201 import call_result
 from ocpp.v201 import call_result
-from ocpp.v201.enums import RegistrationStatusType
+from ocpp.v201.enums import RegistrationStatusType, ClearCacheStatusType
 
 # Setting up the logging configuration to display debug level messages.
 logging.basicConfig(level=logging.DEBUG)
 
 
 # Define a ChargePoint class inheriting from the OCPP 2.0.1 ChargePoint class.
 
 # Setting up the logging configuration to display debug level messages.
 logging.basicConfig(level=logging.DEBUG)
 
 
 # Define a ChargePoint class inheriting from the OCPP 2.0.1 ChargePoint class.
-class ChargePoint(cp):
+class ChargePoint(ocpp.v201.ChargePoint):
     # Message handlers to receive OCPP message.
     @on('BootNotification')
     async def on_boot_notification(self, charging_station, reason, **kwargs):
     # Message handlers to receive OCPP message.
     @on('BootNotification')
     async def on_boot_notification(self, charging_station, reason, **kwargs):
@@ -28,6 +28,14 @@ class ChargePoint(cp):
         )
 
     # Request handlers to emit OCPP messages.
         )
 
     # Request handlers to emit OCPP messages.
+    async def send_clear_cache(self):
+        request = ocpp.v201.call.ClearCache()
+        response = await self.call(request)
+
+        if response.status == ClearCacheStatusType.accepted:
+            logging.info("Cache cleared successfully")
+        else:
+            logging.info("Cache clearing failed")
 
 
 # Function to handle new WebSocket connections.
 
 
 # Function to handle new WebSocket connections.