tests: add more test coverage for `uci show' command.
authorYousong Zhou <yszhou4tech@gmail.com>
Tue, 16 Dec 2014 07:00:09 +0000 (15:00 +0800)
committerFelix Fietkau <nbd@openwrt.org>
Thu, 18 Dec 2014 11:38:15 +0000 (12:38 +0100)
Signed-off-by: Yousong Zhou <yszhou4tech@gmail.com>
test/references/show_parsing_multiline.data [new file with mode: 0644]
test/references/show_parsing_multiline_option.result [new file with mode: 0644]
test/references/show_parsing_multiline_package.result [new file with mode: 0644]
test/references/show_parsing_multiline_section.result [new file with mode: 0644]
test/tests.d/050_show

diff --git a/test/references/show_parsing_multiline.data b/test/references/show_parsing_multiline.data
new file mode 100644 (file)
index 0000000..670e809
--- /dev/null
@@ -0,0 +1,20 @@
+config main
+        option version  1.4.1
+
+config sockd 'instance0'
+        option enabled  1
+        list internal_network   vpn
+        list external_network   wan
+
+        option extra_config '
+               user.unprivileged: nobody
+               client pass {
+                       from: 0.0.0.0/0 to: 0.0.0.0/0
+                       session.max: 64
+                       log: error
+               }
+
+               socks pass {
+                       from: 0.0.0.0/0 to: 0.0.0.0/0
+                       log: connect
+               } '
diff --git a/test/references/show_parsing_multiline_option.result b/test/references/show_parsing_multiline_option.result
new file mode 100644 (file)
index 0000000..6f7aacf
--- /dev/null
@@ -0,0 +1,12 @@
+sockd.instance0.extra_config='
+               user.unprivileged: nobody
+               client pass {
+                       from: 0.0.0.0/0 to: 0.0.0.0/0
+                       session.max: 64
+                       log: error
+               }
+
+               socks pass {
+                       from: 0.0.0.0/0 to: 0.0.0.0/0
+                       log: connect
+               } '
diff --git a/test/references/show_parsing_multiline_package.result b/test/references/show_parsing_multiline_package.result
new file mode 100644 (file)
index 0000000..218082d
--- /dev/null
@@ -0,0 +1,18 @@
+sockd.@main[0]=main
+sockd.@main[0].version='1.4.1'
+sockd.instance0=sockd
+sockd.instance0.enabled='1'
+sockd.instance0.internal_network='vpn'
+sockd.instance0.external_network='wan'
+sockd.instance0.extra_config='
+               user.unprivileged: nobody
+               client pass {
+                       from: 0.0.0.0/0 to: 0.0.0.0/0
+                       session.max: 64
+                       log: error
+               }
+
+               socks pass {
+                       from: 0.0.0.0/0 to: 0.0.0.0/0
+                       log: connect
+               } '
diff --git a/test/references/show_parsing_multiline_section.result b/test/references/show_parsing_multiline_section.result
new file mode 100644 (file)
index 0000000..0506ac3
--- /dev/null
@@ -0,0 +1,16 @@
+sockd.instance0=sockd
+sockd.instance0.enabled='1'
+sockd.instance0.internal_network='vpn'
+sockd.instance0.external_network='wan'
+sockd.instance0.extra_config='
+               user.unprivileged: nobody
+               client pass {
+                       from: 0.0.0.0/0 to: 0.0.0.0/0
+                       session.max: 64
+                       log: error
+               }
+
+               socks pass {
+                       from: 0.0.0.0/0 to: 0.0.0.0/0
+                       log: connect
+               } '
index 7d7e160..ce0eafc 100644 (file)
@@ -9,3 +9,34 @@ test_get_parsing()
        assertFailWithNoReturn "${UCI_Q} show test.section.opt.val.qsdf.qsd"
        assertFailWithNoReturn "${UCI_Q} show test.section.opt.valqsqsd"
 }
+
+prepare_get_parsing_multiline() {
+       cp ${REF_DIR}/show_parsing_multiline.data ${CONFIG_DIR}/sockd
+}
+
+test_get_parsing_multiline_package()
+{
+       prepare_get_parsing_multiline
+
+       value=$(${UCI_Q} show sockd)
+       value_ref=$(cat ${REF_DIR}/show_parsing_multiline_package.result)
+       assertEquals "$value_ref" "$value"
+}
+
+test_get_parsing_multiline_section()
+{
+       prepare_get_parsing_multiline
+
+       value=$(${UCI_Q} show sockd.instance0)
+       value_ref=$(cat ${REF_DIR}/show_parsing_multiline_section.result)
+       assertEquals "$value_ref" "$value"
+}
+
+test_get_parsing_multiline_option()
+{
+       prepare_get_parsing_multiline
+
+       value=$(${UCI_Q} show sockd.instance0.extra_config)
+       value_ref=$(cat ${REF_DIR}/show_parsing_multiline_option.result)
+       assertEquals "$value_ref" "$value"
+}