All of lore.kernel.org
 help / color / mirror / Atom feed
From: <Tim.Bird@sony.com>
To: zhengrq.fnst@cn.fujitsu.com, fuego@lists.linuxfoundation.org
Subject: Re: [Fuego] [PATCH] nss: add test case for nss.
Date: Tue, 11 Sep 2018 21:33:33 +0000	[thread overview]
Message-ID: <ECADFF3FD767C149AD96A924E7EA6EAF7C1E0556@USCULXMSG01.am.sony.com> (raw)
In-Reply-To: <1536630841-82476-1-git-send-email-zhengrq.fnst@cn.fujitsu.com>

> -----Original Message-----
> From: Zheng Ruoqin
> 
> 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"
> +          }
Using expect to check the output of a command for a regular expression
is way overkill.

> + default { send_user " -> $test: TEST-FAIL\n" }
> + }
> +EOF
> +
> +
> --
> 1.8.3.1

This is a lot of overhead for something that just checks that "shlibsign --help" produces
the string "Usage" on the target

This whole test could have been done with something simpler directly from fuego_test.sh, like so:
report "if sshlibsign --help | grep Usage ; then echo \" -> nss01: TEST-PASS\" else echo \" ->nss01: TEST-FAIL\""

I presume that this is intended to add the framework
needed for additional testing of shlibsign in the future.  Please let me know. 
But for now this is NOT applied.
 -- Tim


  reply	other threads:[~2018-09-11 21:33 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-09-11  1:54 [Fuego] [PATCH] nss: add test case for nss Zheng Ruoqin
2018-09-11 21:33 ` Tim.Bird [this message]
2018-09-13  1:39   ` Zheng, Ruoqin
2018-09-25  0:52     ` Tim.Bird

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=ECADFF3FD767C149AD96A924E7EA6EAF7C1E0556@USCULXMSG01.am.sony.com \
    --to=tim.bird@sony.com \
    --cc=fuego@lists.linuxfoundation.org \
    --cc=zhengrq.fnst@cn.fujitsu.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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.