From 750b046eb77f04f82389a8af089a4945ca2d378f Mon Sep 17 00:00:00 2001 From: =?utf8?q?Petr=20=C5=A0tetiar?= Date: Sat, 7 Dec 2019 23:36:51 +0100 Subject: [PATCH] tests: cram: Lua: add test case for uci_get_errorstr MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit In order to extend test coverage and help testing refactoring. Signed-off-by: Petr Å tetiar --- tests/cram/config/broken | 1 + tests/cram/lua/basic.lua | 2 ++ tests/cram/test_ucilua.t | 1 + 3 files changed, 4 insertions(+) create mode 100644 tests/cram/config/broken diff --git a/tests/cram/config/broken b/tests/cram/config/broken new file mode 100644 index 0000000..d2ecc01 --- /dev/null +++ b/tests/cram/config/broken @@ -0,0 +1 @@ +config alias' 'a' diff --git a/tests/cram/lua/basic.lua b/tests/cram/lua/basic.lua index ceb706f..f005264 100644 --- a/tests/cram/lua/basic.lua +++ b/tests/cram/lua/basic.lua @@ -42,3 +42,5 @@ local t = c:get("network", "lan", "dns") A(#t == 2) A(t[1] == "ns1.king.banik.cz") A(t[2] == "ns2.openwrt.org") + +print(c:get_all("broken")) diff --git a/tests/cram/test_ucilua.t b/tests/cram/test_ucilua.t index 1544e23..cfe1f2e 100644 --- a/tests/cram/test_ucilua.t +++ b/tests/cram/test_ucilua.t @@ -56,3 +56,4 @@ run basic Lua tests: proto: dhcp .anonymous: false aliases: c d + nil\tuci: Parse error (EOF with unterminated ') at line 1, byte 18 (esc) -- 2.30.2