NPAR TESTS: Convert WILCOXON tests to Autotest framework.
authorBen Pfaff <blp@cs.stanford.edu>
Sun, 3 Oct 2010 12:41:05 +0000 (05:41 -0700)
committerBen Pfaff <blp@cs.stanford.edu>
Sun, 3 Oct 2010 22:46:06 +0000 (15:46 -0700)
tests/automake.mk
tests/command/npar-wilcoxon.sh [deleted file]
tests/language/stats/npar.at

index b356189c4bb6500ee3b7099686b9095b59b55346..5f28780ba6b1a21c4ab975c3fc78eb4e8063573c 100644 (file)
@@ -10,7 +10,6 @@ TESTS_ENVIRONMENT += LC_ALL=C
 TESTS_ENVIRONMENT += EXEEXT=$(EXEEXT)
 
 dist_TESTS = \
-       tests/command/npar-wilcoxon.sh \
        tests/command/npar-sign.sh \
        tests/command/permissions.sh \
        tests/command/print.sh \
diff --git a/tests/command/npar-wilcoxon.sh b/tests/command/npar-wilcoxon.sh
deleted file mode 100755 (executable)
index 8c34999..0000000
+++ /dev/null
@@ -1,166 +0,0 @@
-#!/bin/sh
-
-# This program tests the wilcoxon subcommand of npar tests
-
-TEMPDIR=/tmp/pspp-tst-$$
-TESTFILE=$TEMPDIR/`basename $0`.sps
-
-# ensure that top_srcdir and top_builddir  are absolute
-if [ -z "$top_srcdir" ] ; then top_srcdir=. ; fi
-if [ -z "$top_builddir" ] ; then top_builddir=. ; fi
-top_srcdir=`cd $top_srcdir; pwd`
-top_builddir=`cd $top_builddir; pwd`
-
-PSPP=$top_builddir/src/ui/terminal/pspp$EXEEXT
-
-STAT_CONFIG_PATH=$top_srcdir/config
-export STAT_CONFIG_PATH
-
-LANG=C
-export LANG
-
-
-cleanup()
-{
-     if [ x"$PSPP_TEST_NO_CLEANUP" != x ] ; then 
-       echo "NOT cleaning $TEMPDIR"
-       return ; 
-     fi
-     rm -rf $TEMPDIR
-}
-
-
-fail()
-{
-    echo $activity
-    echo FAILED
-    cleanup;
-    exit 1;
-}
-
-
-no_result()
-{
-    echo $activity
-    echo NO RESULT;
-    cleanup;
-    exit 2;
-}
-
-pass()
-{
-    cleanup;
-    exit 0;
-}
-
-mkdir -p $TEMPDIR
-
-cd $TEMPDIR
-
-activity="create program 1"
-cat > $TESTFILE <<  EOF
-data list notable list /foo * bar * w (f8.0).
-begin data.
-1.00     1.00   1
-1.00     2.00   1
-2.00     1.00   1
-1.00     4.00   1
-2.00     5.00   1
-1.00    19.00   1
-2.00     7.00   1
-4.00     5.00   1
-1.00    12.00   1
-2.00    13.00   1
-2.00     2.00   1
-12.00      .00  2
-12.00     1.00  1
-13.00     1.00  1
-end data
-
-variable labels foo "first" bar "second".
-
-weight by w.
-
-npar test
- /wilcoxon=foo with bar (paired)
- /missing analysis
- /method=exact.
-
-EOF
-if [ $? -ne 0 ] ; then no_result ; fi
-
-
-activity="run program 1"
-$SUPERVISOR $PSPP -o pspp.csv $TESTFILE
-if [ $? -ne 0 ] ; then no_result ; fi
-
-activity="generate results"
-cat > $TEMPDIR/results.csv <<EOF
-Table: Ranks
-,,N,Mean Rank,Sum of Ranks
-second - first,Negative Ranks,5,8.60,43.00
-,Positive Ranks,8,6.00,48.00
-,Ties,2,,
-,Total,15,,
-
-Table: Test Statistics
-,second - first
-Z,-.18
-Asymp. Sig. (2-tailed),.86
-Exact Sig. (2-tailed),.89
-Exact Sig. (1-tailed),.45
-EOF
-if [ $? -ne 0 ] ; then no_result ; fi
-
-
-activity="compare output 1"
-diff -b -c pspp.csv $TEMPDIR/results.csv
-if [ $? -ne 0 ] ; then fail ; fi
-
-
-
-# No weights this time. But some missing values
-activity="create program 2"
-cat > $TESTFILE <<  EOF
-data list notable list /foo * bar * dummy *.
-begin data.
-1.00     1.00    1
-1.00     2.00    1
-2.00     1.00    1
-1.00     4.00    .
-2.00     5.00    .
-1.00    19.00    .
-2.00     7.00    1
-4.00     5.00    1
-1.00    12.00    1
-2.00    13.00    1
-2.00     2.00    1
-12.00      .00   1
-12.00      .00   1
-34.2       .     1
-12.00     1.00   1  
-13.00     1.00   1
-end data
-
-variable labels foo "first" bar "second".
-
-npar test
- /wilcoxon=foo with bar (paired)
- /missing analysis
- /method=exact.
-
-EOF
-if [ $? -ne 0 ] ; then no_result ; fi
-
-
-activity="run program 2"
-$SUPERVISOR $PSPP -o pspp.csv $TESTFILE
-if [ $? -ne 0 ] ; then no_result ; fi
-
-activity="compare output 2"
-diff -b pspp.csv $TEMPDIR/results.csv
-if [ $? -ne 0 ] ; then fail ; fi
-
-
-
-pass;
index 760613c0538c748e9aa4e60a5461f33be36f999c..47926a79678daa6b7e287ad3a2ac9af6338866b4 100644 (file)
@@ -492,3 +492,99 @@ x,14.00,2.69,1.23,1.00,5.00
 y,14.00,1.86,1.10,1.00,4.00
 ])
 AT_CLEANUP
+
+AT_SETUP([NPAR TESTS WILCOXON])
+AT_DATA([npar.sps], [dnl
+data list notable list /foo * bar * w (f8.0).
+begin data.
+1.00     1.00   1
+1.00     2.00   1
+2.00     1.00   1
+1.00     4.00   1
+2.00     5.00   1
+1.00    19.00   1
+2.00     7.00   1
+4.00     5.00   1
+1.00    12.00   1
+2.00    13.00   1
+2.00     2.00   1
+12.00      .00  2
+12.00     1.00  1
+13.00     1.00  1
+end data
+
+variable labels foo "first" bar "second".
+
+weight by w.
+
+npar test
+ /wilcoxon=foo with bar (paired)
+ /missing analysis
+ /method=exact.
+])
+AT_CHECK([pspp -o pspp.csv npar.sps])
+AT_CHECK([cat pspp.csv], [0], [dnl
+Table: Ranks
+,,N,Mean Rank,Sum of Ranks
+second - first,Negative Ranks,5,8.60,43.00
+,Positive Ranks,8,6.00,48.00
+,Ties,2,,
+,Total,15,,
+
+Table: Test Statistics
+,second - first
+Z,-.18
+Asymp. Sig. (2-tailed),.86
+Exact Sig. (2-tailed),.89
+Exact Sig. (1-tailed),.45
+])
+AT_CLEANUP
+
+AT_SETUP([NPAR TESTS WILCOXON with missing values])
+AT_DATA([npar.sps], [dnl
+data list notable list /foo * bar * dummy *.
+begin data.
+1.00     1.00    1
+1.00     2.00    1
+2.00     1.00    1
+1.00     4.00    .
+2.00     5.00    .
+1.00    19.00    .
+2.00     7.00    1
+4.00     5.00    1
+1.00    12.00    1
+2.00    13.00    1
+2.00     2.00    1
+12.00      .00   1
+12.00      .00   1
+34.2       .     1
+12.00     1.00   1  
+13.00     1.00   1
+end data
+
+variable labels foo "first" bar "second".
+
+npar test
+ /wilcoxon=foo with bar (paired)
+ /missing analysis
+ /method=exact.
+
+])
+AT_CHECK([pspp -o pspp.csv npar.sps])
+dnl This is the same output as the previous test.
+AT_CHECK([cat pspp.csv], [0], [dnl
+Table: Ranks
+,,N,Mean Rank,Sum of Ranks
+second - first,Negative Ranks,5,8.60,43.00
+,Positive Ranks,8,6.00,48.00
+,Ties,2,,
+,Total,15,,
+
+Table: Test Statistics
+,second - first
+Z,-.18
+Asymp. Sig. (2-tailed),.86
+Exact Sig. (2-tailed),.89
+Exact Sig. (1-tailed),.45
+])
+AT_CLEANUP