docs(README.md): refine volta installation on windows
[e-mobility-charging-stations-simulator.git] / tests / ocpp-server / README.md
CommitLineData
fa16d389
S
1# OCPP2 Mock Server
2
dd4588bb 3This project includes an Open Charge Point Protocol (OCPP) version 2.0.1 mock server implemented in Python.
fa16d389
S
4
5## Prerequisites
6
c11be92a 7This project requires Python 3.7+ and [poetry](https://python-poetry.org/) to install the required packages:
f93800e5 8
ac96356c 9```shell
c11be92a 10poetry install
fa16d389
S
11```
12
13## Running the Server
14
15To start the server, run the `server.py` script:
16
ac96356c 17```shell
3a89ffcb 18poetry run task server
fa16d389 19```
f93800e5 20
7c945b4a
S
21The server will start listening for connections on port 9000.
22
e3861e41 23## Running the server with OCPP command sending
7c945b4a 24
e3861e41 25You can also specify a command and a period duration with the --command and --period options respectively when running the server. The server will then send your chosen command to the connected client(s) every period seconds.
7c945b4a
S
26
27### GetBaseReport Command
28
29To run the server and send a GetBaseReport command every 5 seconds, use:
fa16d389 30
f937c172 31```shell
299eb3fa 32poetry run task server --command GetBaseReport --period 5
f937c172 33```
f93800e5 34
7c945b4a
S
35### ClearCache Command
36
37To run the server and send a ClearCache command every 5 seconds, use:
38
39```shell
299eb3fa 40poetry run task server --command ClearCache --period 5
7c945b4a
S
41```
42
e3861e41 43Please be mindful that these commands were examples according to the provided scenario, the available commands and their syntax might vary depending on the ocpp version and the implemented functionalities on your client.
fa16d389
S
44
45## Overview of the Server Scripts
46
47### Server.py
48
4c69efea 49The server script waits for connections from clients. When a client connects, the server creates a new instance of the `ChargePoint` class. This class includes methods for handling various OCPP messages, most of which return a dummy response.
fa16d389 50
4c69efea 51The server script uses the `websockets` and `ocpp` libraries to facilitate the implementation.
fa16d389 52
ac96356c
JB
53## Development
54
55### Code formatting
56
57```shell
58poetry run task format
59```
60
61### Code linting
62
63```shell
64poetry run task lint
65```
66
fa16d389
S
67## Note
68
c11be92a 69Primarily, this software is intended for testing applications. The server script don't adhere to the full OCPP specifications and it is advised not to use them in a production environment without additional development.
fa16d389
S
70
71For reference:
72https://github.com/mobilityhouse/ocpp