diff options
author | Jose Bollo <jose.bollo@iot.bzh> | 2018-07-06 17:07:19 +0200 |
---|---|---|
committer | José Bollo <jose.bollo@iot.bzh> | 2018-07-08 21:27:48 +0200 |
commit | c98c0d913e3720e61f42d1fabc56a12a73a612ae (patch) | |
tree | 9482a8cbf222359d08288b24638b63a354867a27 /coverage/scripts | |
parent | 42b655f3cbd208fe31f634d9249f24f9cc712237 (diff) |
coverage: Improve testing
- Add test of bindings v2
- Distinguish between clean and cleanall
- More valgrind ouput
Change-Id: If929756d9d35ddb959b46f7330cbf318301d532e
Signed-off-by: José Bollo <jose.bollo@iot.bzh>
Diffstat (limited to 'coverage/scripts')
-rwxr-xr-x | coverage/scripts/02-hello.sh | 2 | ||||
-rwxr-xr-x | coverage/scripts/05-hello-v2.sh | 52 | ||||
-rwxr-xr-x | coverage/scripts/run-test.sh | 1 |
3 files changed, 55 insertions, 0 deletions
diff --git a/coverage/scripts/02-hello.sh b/coverage/scripts/02-hello.sh index 579a3f06..fe9040c2 100755 --- a/coverage/scripts/02-hello.sh +++ b/coverage/scripts/02-hello.sh @@ -6,6 +6,8 @@ HELLO PING false hello pIngNull true hello PingBug true hello PiNgJsOn {"well":"formed","json":[1,2,3,4.5,true,false,null,"oups"]} +hello call {"api":"hello","verb":"pingjson","args":[{"key1":"value1"}]} +hello callsync {"api":"hello","verb":"pingjson","args":[{"key1":"value1"}]} hello subcall {"api":"hello","verb":"pingjson","args":[{"key1":"value1"}]} hello subcall {"api":"hello","verb":"subcall","args":{"api":"hello","verb":"pingjson","args":[{"key1":"value1"}]}} hello subcallsync {"api":"hello","verb":"pingjson","args":[{"key1":"value1"}]} diff --git a/coverage/scripts/05-hello-v2.sh b/coverage/scripts/05-hello-v2.sh new file mode 100755 index 00000000..0cc54908 --- /dev/null +++ b/coverage/scripts/05-hello-v2.sh @@ -0,0 +1,52 @@ +#!/bin/sh + +$R/bin/afb-client -s -e $WSURL <<EOC +hello-v2 ping true +HELLO-v2 PING false +hello-v2 pIngNull true +hello-v2 PingBug true +hello-v2 PiNgJsOn {"well":"formed","json":[1,2,3,4.5,true,false,null,"oups"]} +hello-v2 call {"api":"hello","verb":"pingjson","args":[{"key1":"value1"}]} +hello-v2 callsync {"api":"hello","verb":"pingjson","args":[{"key1":"value1"}]} +hello-v2 subcall {"api":"hello","verb":"pingjson","args":[{"key1":"value1"}]} +hello-v2 subcall {"api":"hello","verb":"subcall","args":{"api":"hello","verb":"pingjson","args":[{"key1":"value1"}]}} +hello-v2 subcallsync {"api":"hello","verb":"pingjson","args":[{"key1":"value1"}]} +hello-v2 subcallsync {"api":"hello","verb":"subcall","args":{"api":"hello","verb":"pingjson","args":[{"key1":"value1"}]}} +hello-v2 subcall {"api":"hello","verb":"subcallsync","args":{"api":"hello","verb":"pingjson","args":[{"key1":"value1"}]}} +hello-v2 subcallsync {"api":"hello","verb":"subcallsync","args":{"api":"hello","verb":"pingjson","args":[{"key1":"value1"}]}} +hello-v2 eventadd {"tag":"ev1","name":"event-A"} +hello-v2 eventadd {"tag":"ev2","name":"event-B"} +hello-v2 eventpush {"tag":"ev1","data":[1,2,"hello"]} +hello-v2 eventpush {"tag":"ev2","data":{"item":0}} +hello-v2 eventsub {"tag":"ev2"} +hello-v2 eventpush {"tag":"ev1","data":[1,2,"hello"]} +hello-v2 eventpush {"tag":"ev2","data":{"item":0}} +hello-v2 eventsub {"tag":"ev1"} +hello-v2 subcall {"api":"hello","verb":"eventpush","args":{"tag":"ev1","data":[1,2,"hello"]}} +hello-v2 subcall {"api":"hello","verb":"eventpush","args":{"tag":"ev2","data":{"item":0}}} +hello-v2 subcallsync {"api":"hello","verb":"eventpush","args":{"tag":"ev1","data":[1,2,"hello"]}} +hello-v2 subcallsync {"api":"hello","verb":"eventpush","args":{"tag":"ev2","data":{"item":0}}} +hello-v2 eventunsub {"tag":"ev2"} +hello-v2 eventpush {"tag":"ev1","data":[1,2,"hello"]} +hello-v2 eventpush {"tag":"ev2","data":{"item":0}} +hello-v2 eventdel {"tag":"ev1"} +hello-v2 eventpush {"tag":"ev1","data":[1,2,"hello"]} +hello-v2 eventpush {"tag":"ev2","data":{"item":0}} +hello-v2 broadcast {"name":"xev","data":"true"} +hello-v2 broadcast {"tag":"ev2","data":"true"} +hello-v2 eventdel {"tag":"ev2"} +hello-v2 hasperm {"perm":"some-permissison"} +hello-v2 appid true +hello-v2 uid true +hello-v2 set-loa 1 +hello-v2 set-loa 3 +hello-v2 close true +hello-v2 setctx "some-text-0" +hello-v2 setctxif "some-text-1" +hello-v2 getctx +hello-v2 setctx "some-text-2" +hello-v2 getctx +hello-v2 info +hello-v2 verbose {"level":2,"message":"hello"} +EOC + diff --git a/coverage/scripts/run-test.sh b/coverage/scripts/run-test.sh index 26ade877..34c2d303 100755 --- a/coverage/scripts/run-test.sh +++ b/coverage/scripts/run-test.sh @@ -14,6 +14,7 @@ valgrind \ --trace-children=no \ --track-fds=yes \ --leak-check=full \ + --show-leak-kinds=all \ $R/bin/afb-daemon-cov \ --verbose \ --verbose \ |