-
Notifications
You must be signed in to change notification settings - Fork 8
Raspberry PI Mocks CLI
Andreas Novak edited this page Feb 24, 2023
·
7 revisions
Raspberry PI Mocks CLI imitates messages, that Raspberries send to ActiveMQ using MQTT, directly to the Kafka Cluster or via HTTP to a REST-Endpoint (bypassing amq and kafka) and allows testing without connecting sensors and real Raspberries.
- JDK 8
- Maven >=3.3.9
Clone Hogarama and build Habarama/raspberry-pi-mocks/raspberry-pi-mocks-cli with
mvn clean install
This will create an executable jar under Habarama/raspberry-pi-mocks/raspberry-pi-mocks-cli/target/hogarama-mock-cli.jar
java -jar hogarama-mock-cli.jar [params]
Parameters:
-
-c,--configuration <arg>
required: Absolute path to configuration file. The file shoud contain key-value pairs in form key=value. -
-t,--testData <arg>
required: Absolute path to file with test messages. -
-d,--delayMs <arg>
: Delay between publishings of single messages in ms. It overrides the parameter delayMs in configuration file. Default value is 3000. -
-host,--brokerHost <arg>
: Url to AMQ broker. Overrides the parameter brokerHost in configuration file. -
-u,--brokerUsername <arg>
: AMQ username. Overrides the parameter brokerUsername in configuration file. -
-p,--brokerPassword <arg>
: AMQ password. Overrides the parameter brokerPassword in configuration file. -
-topic,--brokerTopic <arg>
: AMQ topic name. Overrides the parameter brokerTopic in configuration file. -
-h,--help
: Print help message.
Example call for AMQ:
java -jar hogarama-mock-cli.jar -t /tmp/testData.json -c /tmp/testConfig.prop --delayMs 5000
Example call for Kafka:
java -jar hogarama-mock-cli.jar -b kafka -t /tmp/testData.json -c /tmp/kafkaTestConfig.prop --delayMs 5000
Example call for REST:
java -jar hogarama-mock-cli.jar -b rest -t /tmp/testData_small.json -c /tmp/restTestConfig.prop --delayMs 5000
Example content of data file:
[{
"sensorName" : "Pflanze",
"type" : "wasser",
"value" : 55.3,
"location" : "Wien",
"version" : 0
},
{
"sensorName" : "Pflanze",
"type" : "wasser",
"value" : 65.3,
"location" : "Wien",
"version" : 0
},
{
"sensorName" : "Pflanze",
"type" : "wasser",
"value" : 75.3,
"location" : "Wien",
"version" : 0
}]
Example content of configuration file for AMQ:
brokerHost=https://broker-amq-mqtt-ssl-hogarama.10.0.75.2.nip.io
brokerUser=mq_habarama
brokerPassword=mq_habarama_pass
brokerTopic=habarama
Example content of configuration file for Kafka:
brokerHost=https://localhost:9092
brokerUser=mq_habarama
brokerPassword=mq_habarama_pass
brokerTopic=habarama
Example content of configuration file for REST:
dummyMessagingRestEndpointUrl=http://localhost:8080/hogajama-rs/rest/messaging/sensorData
- Home
- Setup Guide
- Using Hogarama
-
Cloud Components
- AMQ
- MongoDB
- Single Sign On
- Hogajama
- Kafka
- Habarama
- Troubleshooting Hogarama
- Optional Modules
- Developer Guideline