Skip to content

Commit 6beae03

Browse files
Merge pull request #163 from XavierGeerinck/actor_fix
bug: Fix Actor invocation
2 parents 57f4675 + 1218733 commit 6beae03

File tree

8 files changed

+3649
-2795
lines changed

8 files changed

+3649
-2795
lines changed

documentation/development.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -28,15 +28,15 @@ A custom script is utilized here since we have 2 libraries in one for HTTP and g
2828

2929
## Running Tests
3030

31-
Tests are written per protocol layer: http or grpc. This is done because Dapr requires endpoints to be registered for for pubsub and bindings, making us having to start up the test, initialize those endpoints and then run. Since Dapr is a sidecar architecture, we thus have to start 2 test suites seperately.
31+
Tests are written per protocol layer: http or grpc. This is done because Dapr requires endpoints to be registered for for pubsub and bindings, making us having to start up the test, initialize those endpoints and then run. Since Dapr is a sidecar architecture, we thus have to start 2 test suites seperately. It requires the following containers:
32+
33+
* **EMQX:** Used for Binding Tests
34+
* Credentials: http://localhost:18083 (user: admin, pass: public)
35+
* **MongoDB:** Used for State Query API
3236

3337
```bash
34-
# Start MQTT for Binding tests
35-
# Dashboard: http://localhost:18083 (user: admin, pass: public)
36-
# Ports: 1883 = TCP MQTT Port | 8081 = HTTP API | 8083 = MQTT/SSL Port | 8883 = MQTT/Websocket/SSL Port | 8084 = MQTT/Websocket Port | 18083 = Dashboard
38+
# Start Container
3739
docker run -d --rm --name emqx -p 1883:1883 -p 8081:8081 -p 8083:8083 -p 8883:8883 -p 8084:8084 -p 18083:18083 emqx/emqx
38-
39-
# Start MongoDB for State Query
4040
docker run -d --rm --name mongodb -p 27017:27017 mongo
4141

4242
# Run Unit Tests

0 commit comments

Comments
 (0)