All of lore.kernel.org
 help / color / mirror / Atom feed
* [Fuego] [PATCH] pam: add test case for pam.
@ 2018-09-11  1:54 Zheng Ruoqin
  2018-09-11 21:47 ` 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.pam/fuego_test.sh          | 19 +++++++++++++++++++
 engine/tests/Functional.pam/pam_test.sh            |  4 ++++
 engine/tests/Functional.pam/parser.py              | 22 ++++++++++++++++++++++
 engine/tests/Functional.pam/spec.json              |  7 +++++++
 .../Functional.pam/tests/pam_timestamp_check.sh    | 14 ++++++++++++++
 5 files changed, 66 insertions(+)
 create mode 100644 engine/tests/Functional.pam/fuego_test.sh
 create mode 100644 engine/tests/Functional.pam/pam_test.sh
 create mode 100644 engine/tests/Functional.pam/parser.py
 create mode 100644 engine/tests/Functional.pam/spec.json
 create mode 100644 engine/tests/Functional.pam/tests/pam_timestamp_check.sh

diff --git a/engine/tests/Functional.pam/fuego_test.sh b/engine/tests/Functional.pam/fuego_test.sh
new file mode 100644
index 0000000..4be6015
--- /dev/null
+++ b/engine/tests/Functional.pam/fuego_test.sh
@@ -0,0 +1,19 @@
+function test_pre_check {
+    is_on_target_path pam_timestamp_check PROGRAM_PAM
+    assert_define PROGRAM_PAM "Missing 'pam_timestamp_check' program on target board"
+}
+
+function test_deploy {
+    put $TEST_HOME/pam_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 pam_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.pam/pam_test.sh b/engine/tests/Functional.pam/pam_test.sh
new file mode 100644
index 0000000..dd5ce37
--- /dev/null
+++ b/engine/tests/Functional.pam/pam_test.sh
@@ -0,0 +1,4 @@
+#!/bin/sh
+for i in tests/*.sh; do
+    sh $i
+done
diff --git a/engine/tests/Functional.pam/parser.py b/engine/tests/Functional.pam/parser.py
new file mode 100644
index 0000000..d85abd7
--- /dev/null
+++ b/engine/tests/Functional.pam/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.pam/spec.json b/engine/tests/Functional.pam/spec.json
new file mode 100644
index 0000000..64d84d7
--- /dev/null
+++ b/engine/tests/Functional.pam/spec.json
@@ -0,0 +1,7 @@
+{
+    "testName": "Functional.pam",
+    "specs": {
+        "default": {}
+    }
+}
+
diff --git a/engine/tests/Functional.pam/tests/pam_timestamp_check.sh b/engine/tests/Functional.pam/tests/pam_timestamp_check.sh
new file mode 100644
index 0000000..785245f
--- /dev/null
+++ b/engine/tests/Functional.pam/tests/pam_timestamp_check.sh
@@ -0,0 +1,14 @@
+#!/bin/sh
+
+#  In target, run command pam_timestamp_check.
+#  option "-k"
+
+test="pam_timestamp_check"
+
+if pam_timestamp_check -k
+then
+    echo " -> $test: TEST-PASS"
+else
+    echo " -> $test: TEST-FAIL"
+fi;
+
-- 
1.8.3.1




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

end of thread, other threads:[~2018-09-14 15:21 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] pam: add test case for pam Zheng Ruoqin
2018-09-11 21:47 ` Tim.Bird
2018-09-14  7:21   ` Zheng, Ruoqin
2018-09-14 15:21     ` 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.