All of lore.kernel.org
 help / color / mirror / Atom feed
* [Fuego] [PATCH] nss: add test case for nss.
@ 2018-09-11  1:54 Zheng Ruoqin
  2018-09-11 21:33 ` Tim.Bird
  0 siblings, 1 reply; 4+ messages in thread
From: Zheng Ruoqin @ 2018-09-11  1:54 UTC (permalink / raw)
  To: fuego

Signed-off-by: Zheng Ruoqin <zhengrq.fnst@cn.fujitsu.com>
---
 engine/tests/Functional.nss/fuego_test.sh   | 19 +++++++++++++++++++
 engine/tests/Functional.nss/nss_test.sh     |  4 ++++
 engine/tests/Functional.nss/parser.py       | 22 ++++++++++++++++++++++
 engine/tests/Functional.nss/spec.json       |  7 +++++++
 engine/tests/Functional.nss/tests/nss_01.sh | 18 ++++++++++++++++++
 5 files changed, 70 insertions(+)
 create mode 100644 engine/tests/Functional.nss/fuego_test.sh
 create mode 100644 engine/tests/Functional.nss/nss_test.sh
 create mode 100644 engine/tests/Functional.nss/parser.py
 create mode 100644 engine/tests/Functional.nss/spec.json
 create mode 100644 engine/tests/Functional.nss/tests/nss_01.sh

diff --git a/engine/tests/Functional.nss/fuego_test.sh b/engine/tests/Functional.nss/fuego_test.sh
new file mode 100644
index 0000000..47ba302
--- /dev/null
+++ b/engine/tests/Functional.nss/fuego_test.sh
@@ -0,0 +1,19 @@
+function test_pre_check {
+    is_on_target_path shlibsign PROGRAM_SHLIBSIGN
+    assert_define PROGRAM_SHLIBSIGN "Missing 'shlibsign' program on target board"
+}
+
+function test_deploy {
+    put $TEST_HOME/nss_test.sh $BOARD_TESTDIR/fuego.$TESTDIR/
+    put -r $TEST_HOME/tests $BOARD_TESTDIR/fuego.$TESTDIR/
+}
+
+function test_run {
+    report "cd $BOARD_TESTDIR/fuego.$TESTDIR;\
+    sh -v nss_test.sh"
+}
+
+function test_processing {
+    log_compare "$TESTDIR" "1" "TEST-PASS" "p"
+    log_compare "$TESTDIR" "0" "TEST-FAIL" "n"
+}
diff --git a/engine/tests/Functional.nss/nss_test.sh b/engine/tests/Functional.nss/nss_test.sh
new file mode 100644
index 0000000..dd5ce37
--- /dev/null
+++ b/engine/tests/Functional.nss/nss_test.sh
@@ -0,0 +1,4 @@
+#!/bin/sh
+for i in tests/*.sh; do
+    sh $i
+done
diff --git a/engine/tests/Functional.nss/parser.py b/engine/tests/Functional.nss/parser.py
new file mode 100644
index 0000000..d85abd7
--- /dev/null
+++ b/engine/tests/Functional.nss/parser.py
@@ -0,0 +1,22 @@
+#!/usr/bin/python
+# See common.py for description of command-line arguments
+
+import os, sys, collections
+
+sys.path.insert(0, os.environ['FUEGO_CORE'] + '/engine/scripts/parser')
+import common as plib
+
+measurements = {}
+measurements = collections.OrderedDict()
+
+regex_string = '^ -> (.*): TEST-(.*)$'
+matches = plib.parse_log(regex_string)
+
+if matches:
+    for m in matches:
+        measurements['default.' + m[0]] = 'PASS' if m[1] == 'PASS' else 'FAIL'
+
+# split the output for each testcase
+plib.split_output_per_testcase(regex_string, measurements)
+
+sys.exit(plib.process(measurements))
diff --git a/engine/tests/Functional.nss/spec.json b/engine/tests/Functional.nss/spec.json
new file mode 100644
index 0000000..eba3d9a
--- /dev/null
+++ b/engine/tests/Functional.nss/spec.json
@@ -0,0 +1,7 @@
+{
+    "testName": "Functional.nss",
+    "specs": {
+        "default": {}
+    }
+}
+
diff --git a/engine/tests/Functional.nss/tests/nss_01.sh b/engine/tests/Functional.nss/tests/nss_01.sh
new file mode 100644
index 0000000..7d0de09
--- /dev/null
+++ b/engine/tests/Functional.nss/tests/nss_01.sh
@@ -0,0 +1,18 @@
+#!/bin/sh
+
+#  In target, run command shlibsign.
+#  To make sure that there is string "Usage" in output.
+
+test="nss01"
+
+expect <<-EOF
+spawn shlibsign --help
+expect {
+ -re ".*Usage.*" {
+           send_user " -> $test: TEST-PASS\n"
+          }
+ default { send_user " -> $test: TEST-FAIL\n" }  
+ } 
+EOF
+
+
-- 
1.8.3.1




^ permalink raw reply related	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2018-09-25  0:52 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-09-11  1:54 [Fuego] [PATCH] nss: add test case for nss Zheng Ruoqin
2018-09-11 21:33 ` Tim.Bird
2018-09-13  1:39   ` Zheng, Ruoqin
2018-09-25  0:52     ` Tim.Bird

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.