Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.openwrt.org/project/libubox.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPetr Štetiar <ynezz@true.cz>2020-01-12 17:31:49 +0300
committerPetr Štetiar <ynezz@true.cz>2020-01-13 01:11:29 +0300
commit20a070f0813972a16b7d01586beced58a0828742 (patch)
tree34a8951ccb0436a32ce21d41c0f6d0470d3e5e54 /tests/cram
parent379cd33d19920165d4cccc562d8da8c2702087b9 (diff)
tests: blobmsg/json: add more test cases
* add missing test with sanitizers * add test case for blobmsg_add_json_from_string * add test cases for all numeric types * print types for each variable Signed-off-by: Petr Štetiar <ynezz@true.cz>
Diffstat (limited to 'tests/cram')
-rw-r--r--tests/cram/test_blobmsg.t255
1 files changed, 239 insertions, 16 deletions
diff --git a/tests/cram/test_blobmsg.t b/tests/cram/test_blobmsg.t
index 3a5801a..9ab2acf 100644
--- a/tests/cram/test_blobmsg.t
+++ b/tests/cram/test_blobmsg.t
@@ -1,32 +1,255 @@
check that blobmsg is producing expected results:
$ [ -n "$TEST_BIN_DIR" ] && export PATH="$TEST_BIN_DIR:$PATH"
+
$ valgrind --quiet --leak-check=full test-blobmsg
+ [*] blobmsg dump:
+ Message: Hello, world!
+ List: {
+ 0 (i8)
+ 100 (i8)
+ -128 (i8)
+ 127 (i8)
+ -32768 (i16)
+ 32767 (i16)
+ -2147483648 (i32)
+ 2147483647 (i32)
+ -9223372036854775808 (i64)
+ 9223372036854775807 (i64)
+ 133.700000 (dbl)
+ }
+ Testdata: {
+ \tdouble : 133.700000 (dbl) (esc)
+ \tfoo : 0 (i8) (esc)
+ \tpoo : 100 (i8) (esc)
+ \tmoo-min : -128 (i8) (esc)
+ \tmoo-max : 127 (i8) (esc)
+ \tbar-min : -32768 (i16) (esc)
+ \tbar-max : 32767 (i16) (esc)
+ \tbaz-min : -2147483648 (i32) (esc)
+ \tbaz-max : 2147483647 (i32) (esc)
+ \ttaz-min : -9223372036854775808 (i64) (esc)
+ \ttaz-max : 9223372036854775807 (i64) (esc)
+ \tworld : 2 (str) (esc)
+ }
+
+ [*] blobmsg to json: {"message":"Hello, world!","testdata":{"double":133.700000,"foo":false,"poo":true,"moo-min":true,"moo-max":true,"bar-min":32768,"bar-max":32767,"baz-min":-2147483648,"baz-max":2147483647,"taz-min":-9223372036854775808,"taz-max":9223372036854775807,"world":"2"},"list":[false,true,true,true,32768,32767,-2147483648,2147483647,-9223372036854775808,9223372036854775807,133.700000]}
+
+ [*] blobmsg from json:
+ Message: Hello, world!
+ List: {
+ 0 (i8)
+ 1 (i8)
+ 1 (i8)
+ 1 (i8)
+ 32768 (i32)
+ 32767 (i32)
+ -2147483648 (i32)
+ 2147483647 (i32)
+ -2147483648 (i32)
+ 2147483647 (i32)
+ 133.700000 (dbl)
+ }
+ Testdata: {
+ \tdouble : 133.700000 (dbl) (esc)
+ \tfoo : 0 (i8) (esc)
+ \tpoo : 1 (i8) (esc)
+ \tmoo-min : 1 (i8) (esc)
+ \tmoo-max : 1 (i8) (esc)
+ \tbar-min : 32768 (i32) (esc)
+ \tbar-max : 32767 (i32) (esc)
+ \tbaz-min : -2147483648 (i32) (esc)
+ \tbaz-max : 2147483647 (i32) (esc)
+ \ttaz-min : -2147483648 (i32) (esc)
+ \ttaz-max : 2147483647 (i32) (esc)
+ \tworld : 2 (str) (esc)
+ }
+
+ $ test-blobmsg-san
+ [*] blobmsg dump:
+ Message: Hello, world!
+ List: {
+ 0 (i8)
+ 100 (i8)
+ -128 (i8)
+ 127 (i8)
+ -32768 (i16)
+ 32767 (i16)
+ -2147483648 (i32)
+ 2147483647 (i32)
+ -9223372036854775808 (i64)
+ 9223372036854775807 (i64)
+ 133.700000 (dbl)
+ }
+ Testdata: {
+ \tdouble : 133.700000 (dbl) (esc)
+ \tfoo : 0 (i8) (esc)
+ \tpoo : 100 (i8) (esc)
+ \tmoo-min : -128 (i8) (esc)
+ \tmoo-max : 127 (i8) (esc)
+ \tbar-min : -32768 (i16) (esc)
+ \tbar-max : 32767 (i16) (esc)
+ \tbaz-min : -2147483648 (i32) (esc)
+ \tbaz-max : 2147483647 (i32) (esc)
+ \ttaz-min : -9223372036854775808 (i64) (esc)
+ \ttaz-max : 9223372036854775807 (i64) (esc)
+ \tworld : 2 (str) (esc)
+ }
+
+ [*] blobmsg to json: {"message":"Hello, world!","testdata":{"double":133.700000,"foo":false,"poo":true,"moo-min":true,"moo-max":true,"bar-min":32768,"bar-max":32767,"baz-min":-2147483648,"baz-max":2147483647,"taz-min":-9223372036854775808,"taz-max":9223372036854775807,"world":"2"},"list":[false,true,true,true,32768,32767,-2147483648,2147483647,-9223372036854775808,9223372036854775807,133.700000]}
+
+ [*] blobmsg from json:
Message: Hello, world!
List: {
- 0
- 1
- 2
- 133.700000
+ 0 (i8)
+ 1 (i8)
+ 1 (i8)
+ 1 (i8)
+ 32768 (i32)
+ 32767 (i32)
+ -2147483648 (i32)
+ 2147483647 (i32)
+ -2147483648 (i32)
+ 2147483647 (i32)
+ 133.700000 (dbl)
}
Testdata: {
- \tdouble : 133.700000 (esc)
- \thello : 1 (esc)
- \tworld : 2 (esc)
+ \tdouble : 133.700000 (dbl) (esc)
+ \tfoo : 0 (i8) (esc)
+ \tpoo : 1 (i8) (esc)
+ \tmoo-min : 1 (i8) (esc)
+ \tmoo-max : 1 (i8) (esc)
+ \tbar-min : 32768 (i32) (esc)
+ \tbar-max : 32767 (i32) (esc)
+ \tbaz-min : -2147483648 (i32) (esc)
+ \tbaz-max : 2147483647 (i32) (esc)
+ \ttaz-min : -2147483648 (i32) (esc)
+ \ttaz-max : 2147483647 (i32) (esc)
+ \tworld : 2 (str) (esc)
}
- json: {"message":"Hello, world!","testdata":{"double":133.700000,"hello":1,"world":"2"},"list":[0,1,2,133.700000]}
$ test-blobmsg-san
+ [*] blobmsg dump:
+ Message: Hello, world!
+ List: {
+ 0 (i8)
+ 100 (i8)
+ -128 (i8)
+ 127 (i8)
+ -32768 (i16)
+ 32767 (i16)
+ -2147483648 (i32)
+ 2147483647 (i32)
+ -9223372036854775808 (i64)
+ 9223372036854775807 (i64)
+ 133.700000 (dbl)
+ }
+ Testdata: {
+ \tdouble : 133.700000 (dbl) (esc)
+ \tfoo : 0 (i8) (esc)
+ \tpoo : 100 (i8) (esc)
+ \tmoo-min : -128 (i8) (esc)
+ \tmoo-max : 127 (i8) (esc)
+ \tbar-min : -32768 (i16) (esc)
+ \tbar-max : 32767 (i16) (esc)
+ \tbaz-min : -2147483648 (i32) (esc)
+ \tbaz-max : 2147483647 (i32) (esc)
+ \ttaz-min : -9223372036854775808 (i64) (esc)
+ \ttaz-max : 9223372036854775807 (i64) (esc)
+ \tworld : 2 (str) (esc)
+ }
+
+ [*] blobmsg to json: {"message":"Hello, world!","testdata":{"double":133.700000,"foo":false,"poo":true,"moo-min":true,"moo-max":true,"bar-min":32768,"bar-max":32767,"baz-min":-2147483648,"baz-max":2147483647,"taz-min":-9223372036854775808,"taz-max":9223372036854775807,"world":"2"},"list":[false,true,true,true,32768,32767,-2147483648,2147483647,-9223372036854775808,9223372036854775807,133.700000]}
+
+ [*] blobmsg from json:
+ Message: Hello, world!
+ List: {
+ 0 (i8)
+ 1 (i8)
+ 1 (i8)
+ 1 (i8)
+ 32768 (i32)
+ 32767 (i32)
+ -2147483648 (i32)
+ 2147483647 (i32)
+ -2147483648 (i32)
+ 2147483647 (i32)
+ 133.700000 (dbl)
+ }
+ Testdata: {
+ \tdouble : 133.700000 (dbl) (esc)
+ \tfoo : 0 (i8) (esc)
+ \tpoo : 1 (i8) (esc)
+ \tmoo-min : 1 (i8) (esc)
+ \tmoo-max : 1 (i8) (esc)
+ \tbar-min : 32768 (i32) (esc)
+ \tbar-max : 32767 (i32) (esc)
+ \tbaz-min : -2147483648 (i32) (esc)
+ \tbaz-max : 2147483647 (i32) (esc)
+ \ttaz-min : -2147483648 (i32) (esc)
+ \ttaz-max : 2147483647 (i32) (esc)
+ \tworld : 2 (str) (esc)
+ }
+
+ $ test-blobmsg-san
+ [*] blobmsg dump:
+ Message: Hello, world!
+ List: {
+ 0 (i8)
+ 100 (i8)
+ -128 (i8)
+ 127 (i8)
+ -32768 (i16)
+ 32767 (i16)
+ -2147483648 (i32)
+ 2147483647 (i32)
+ -9223372036854775808 (i64)
+ 9223372036854775807 (i64)
+ 133.700000 (dbl)
+ }
+ Testdata: {
+ \tdouble : 133.700000 (dbl) (esc)
+ \tfoo : 0 (i8) (esc)
+ \tpoo : 100 (i8) (esc)
+ \tmoo-min : -128 (i8) (esc)
+ \tmoo-max : 127 (i8) (esc)
+ \tbar-min : -32768 (i16) (esc)
+ \tbar-max : 32767 (i16) (esc)
+ \tbaz-min : -2147483648 (i32) (esc)
+ \tbaz-max : 2147483647 (i32) (esc)
+ \ttaz-min : -9223372036854775808 (i64) (esc)
+ \ttaz-max : 9223372036854775807 (i64) (esc)
+ \tworld : 2 (str) (esc)
+ }
+
+ [*] blobmsg to json: {"message":"Hello, world!","testdata":{"double":133.700000,"foo":false,"poo":true,"moo-min":true,"moo-max":true,"bar-min":32768,"bar-max":32767,"baz-min":-2147483648,"baz-max":2147483647,"taz-min":-9223372036854775808,"taz-max":9223372036854775807,"world":"2"},"list":[false,true,true,true,32768,32767,-2147483648,2147483647,-9223372036854775808,9223372036854775807,133.700000]}
+
+ [*] blobmsg from json:
Message: Hello, world!
List: {
- 0
- 1
- 2
- 133.700000
+ 0 (i8)
+ 1 (i8)
+ 1 (i8)
+ 1 (i8)
+ 32768 (i32)
+ 32767 (i32)
+ -2147483648 (i32)
+ 2147483647 (i32)
+ -2147483648 (i32)
+ 2147483647 (i32)
+ 133.700000 (dbl)
}
Testdata: {
- \tdouble : 133.700000 (esc)
- \thello : 1 (esc)
- \tworld : 2 (esc)
+ \tdouble : 133.700000 (dbl) (esc)
+ \tfoo : 0 (i8) (esc)
+ \tpoo : 1 (i8) (esc)
+ \tmoo-min : 1 (i8) (esc)
+ \tmoo-max : 1 (i8) (esc)
+ \tbar-min : 32768 (i32) (esc)
+ \tbar-max : 32767 (i32) (esc)
+ \tbaz-min : -2147483648 (i32) (esc)
+ \tbaz-max : 2147483647 (i32) (esc)
+ \ttaz-min : -2147483648 (i32) (esc)
+ \ttaz-max : 2147483647 (i32) (esc)
+ \tworld : 2 (str) (esc)
}
- json: {"message":"Hello, world!","testdata":{"double":133.700000,"hello":1,"world":"2"},"list":[0,1,2,133.700000]}