blob: 85800a0ba579804f76e75149f5fe65bf578f2b06 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
|
all: start
.PHONY: start
build:
@echo "##### build (dmaap sim) #####"
make -C dmaap-simulator build
@echo "##### DONE #####"
start: build
@echo "##### start (dmaap sim,ves,ves-client sim) #####"
make -C ves start
make -C ../../ves-client start
@echo "##### DONE #####"
stop:
@echo "##### Stop (dmaap sim,ves,ves-client sim) #####"
make -C ves stop
make -C ../../ves-client stop
@echo "##### DONE #####"
upload-file-http-server:
@echo "##### Upload file to Http server #####"
curl -F "uploaded_file=@./resources/E_VES_bulkPM_IF_3GPP_3_example_1.xml.gz" -u demo:demo123456! http://localhost:32080/upload.php
@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-event-http-server:
@echo "##### Trigger VES client to generate event with Http Server #####"
curl -X POST http://localhost:5000/simulator/event -d @events/eventToVesWithHttpServer.json --header "Content-Type: application/json"
@echo "\n##### 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-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 #####"
generate-multiple-events-http-server:
@echo "\n##### Trigger VES client to generate multiple events with http server#####"
curl -X POST http://localhost:5000/simulator/start -d @events/fewEventsToVesWithHttpServer.json --header "Content-Type: application/json"
@echo "\n##### DONE #####"
check-dmaap:
@echo "##### Check dmaap simulator for collected events #####"
make -C dmaap-simulator get-data
@echo "\n##### DONE #####"
|