Rewrite PSPP output engine.
[pspp-builds.git] / tests / command / sysfile-info.sh
1 #!/bin/sh
2
3 # This program tests that SYSFILE INFO works.
4
5 TEMPDIR=/tmp/pspp-tst-$$
6 TESTFILE=$TEMPDIR/`basename $0`.sps
7
8 # ensure that top_builddir  are absolute
9 if [ -z "$top_builddir" ] ; then top_builddir=. ; fi
10 if [ -z "$top_srcdir" ] ; then top_srcdir=. ; fi
11 top_builddir=`cd $top_builddir; pwd`
12 PSPP=$top_builddir/src/ui/terminal/pspp
13
14 # ensure that top_srcdir is absolute
15 top_srcdir=`cd $top_srcdir; pwd`
16
17 STAT_CONFIG_PATH=$top_srcdir/config
18 export STAT_CONFIG_PATH
19
20 LANG=C
21 export LANG
22
23 cleanup()
24 {
25      if [ x"$PSPP_TEST_NO_CLEANUP" != x ] ; then 
26         echo "NOT cleaning $TEMPDIR"
27         return ; 
28      fi
29      cd /
30      rm -rf $TEMPDIR
31 }
32
33
34 fail()
35 {
36     echo $activity
37     echo FAILED
38     cleanup;
39     exit 1;
40 }
41
42
43 no_result()
44 {
45     echo $activity
46     echo NO RESULT;
47     cleanup;
48     exit 2;
49 }
50
51 pass()
52 {
53     cleanup;
54     exit 0;
55 }
56
57 mkdir -p $TEMPDIR
58
59 cd $TEMPDIR
60
61 activity="Create test file"
62 cat > $TESTFILE << EOF
63 DATA LIST LIST /x * name (a10) .
64 BEGIN DATA
65 1 one
66 2 two
67 3 three
68 END DATA.
69 SAVE OUTFILE='pro.sav'.
70
71 sysfile info file='pro.sav'.
72 EOF
73 if [ $? -ne 0 ] ; then no_result ; fi
74
75
76 activity="run program"
77 $SUPERVISOR $PSPP --testing-mode $TESTFILE
78 if [ $? -ne 0 ] ; then no_result ; fi
79
80 activity="filter output"
81 egrep -v '^(Created|Endian|Integer Format|Real Format):,' $TEMPDIR/pspp.csv > $TEMPDIR/out-filtered
82 if [ $? -ne 0 ] ; then no_result ; fi
83
84 activity="compare output"
85 diff -c $TEMPDIR/out-filtered - << EOF
86 Table: Reading free-form data from INLINE.
87 Variable,Format
88 x,F8.0
89 name,A10
90
91 File:,pro.sav
92 Label:,No label.
93 Variables:,2
94 Cases:,3
95 Type:,System File
96 Weight:,Not weighted.
97 Mode:,Compression on.
98 Charset:,Unknown
99
100 Variable,Description,,Position
101 x,Format: F8.2,,1
102 ,Measure: Scale,,
103 ,Display Alignment: Right,,
104 ,Display Width: 8,,
105 name,Format: A10,,2
106 ,Measure: Nominal,,
107 ,Display Alignment: Left,,
108 ,Display Width: 10,,
109 EOF
110 if [ $? -ne 0 ] ; then fail ; fi
111
112 pass;