diff options
author | 2021-04-13 11:21:40 +0200 | |
---|---|---|
committer | 2021-04-13 12:56:08 +0000 | |
commit | 6b9990df40f2fac4184ae40fe4d0b441241da712 (patch) | |
tree | a316a8d1823951c5216f3dd9bf2bd32c772d4414 /sanitycheck/ves-client/Makefile | |
parent | 5e002f8d0219cc4f306d2f26708098fb84dc1218 (diff) |
Update sanitycheck
Add new tests and update dmaap-simulator
Signed-off-by: Bartosz Gardziejewski <bartosz.gardziejewski@nokia.com>
Issue-ID: INT-1869
Change-Id: Ibaba12467983d20e95015ed09964367a2baf81b0
Diffstat (limited to 'sanitycheck/ves-client/Makefile')
-rw-r--r-- | sanitycheck/ves-client/Makefile | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/sanitycheck/ves-client/Makefile b/sanitycheck/ves-client/Makefile new file mode 100644 index 0000000..23f10b4 --- /dev/null +++ b/sanitycheck/ves-client/Makefile @@ -0,0 +1,28 @@ +all: start + +.PHONY: start + +start: + @echo "##### start (dmaap sim,ves,ves-client sim) #####" + make -C ../../ves-client start + @echo "##### DONE #####" + +stop: + @echo "##### Stop (dmaap sim,ves,ves-client sim) #####" + make -C ../../ves-client stop + @echo "##### DONE #####" + +reconfigure-ves-url: + @echo "##### Change VES address configuration in VES client#####" + curl -X PUT http://localhost:5000/simulator/config -d @events/vesAddressConfiguration.json --header "Content-Type: application/json" + @echo "\n##### DONE #####" + +generate-event: + @echo "##### Trigger VES client to generate event #####" + curl -X POST http://localhost:5000/simulator/event -d @events/eventToVes.json --header "Content-Type: application/json" + @echo "\n##### DONE #####" + +generate-multiple-events: + @echo "\n##### Trigger VES client to generate multiple events #####" + curl -X POST http://localhost:5000/simulator/start -d @events/fewEventsToVes.json --header "Content-Type: application/json" + @echo "\n##### DONE #####" |