aboutsummaryrefslogtreecommitdiff
path: root/tests/runtests.sh
blob: dba9129784426804362184463f0c51f97f028090 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
#!/bin/sh
#
# Main curl test script
#
#######################################################################
# These should be the only variables that might be needed to get edited:

HOSTIP=127.0.0.1
HOSTPORT=8999
CURL=../src/curl
LOGDIR=log
SERVERIN=$LOGDIR/server.input
CURLOUT=$LOGDIR/curl.out
NC=nc

# Normally, all test cases should be run, but at times it is handy to
# simply run a particular one:
TESTCASES=all

# To run specific test cases, set them like:
# TESTCASES="1 2 3 7 8"

#######################################################################
# No variables below this point should need to be modified
#

PIDFILE=".server.pid"

stopserver() {
  # check for pidfile
  if [ -f $PIDFILE ] ; then
      PID=`cat $PIDFILE`
      kill -9 $PID
      rm -f $PIDFILE # server is killed
  fi
}

runserver () {
  # check for pidfile
  if [ -f $PIDFILE ] ; then
      PID=`cat $PIDFILE`
      if [ "x$PID" != "x" ] && kill -0 $PID 2>/dev/null ; then
          STATUS="httpd (pid $PID) running"
          RUNNING=1
      else
          STATUS="httpd (pid $PID?) not running"
          RUNNING=0
      fi
  else
      STATUS="httpd (no pid file) not running"
      RUNNING=0
  fi

  if [ $RUNNING != "1" ]; then
    ./httpserver.pl $HOSTPORT &
    sleep 1 # give it a little time to start
  else
    echo $STATUS

    # verify that our server is one one running on this port:
    data=`$CURL --silent -i $HOSTIP:$HOSTPORT/verifiedserver`;

    if { echo $data | grep -v "WE ROOLZ" >/dev/null 2>&1; } then
        echo "Another HTTP server is running on port $HOSTPORT"
        echo "Edit runtests.sh to use another port and rerun the test script"
        exit
    fi

    echo "The running HTTP server has been verified to be our test server"

  fi
}

compare () {
  # filter off the $4 pattern before compare!

  first="$1"
  sec="$2"
  text="$3"
  strip="$4"

  if test -n "$strip"; then
    egrep -v "$strip" < $first > $LOGDIR/generated.tmp
    egrep -v "$strip" < $sec > $LOGDIR/stored.tmp

    first="$LOGDIR/generated.tmp"
    sec="$LOGDIR/stored.tmp"
  fi

  cmp $first $sec
  if [ $? != "0" ]; then
    echo " $text FAILED"
    return 1
  else
    echo " $text OK"
    return 0
  fi
}

singletest ()
{
  NUMBER="$1"

  REPLY=data/reply$NUMBER.txt
  CURLCMD=data/command$NUMBER.txt
  HTTP=data/http$NUMBER.txt
  DESC=`cat data/name$NUMBER.txt | tr -d '\012'`

  echo "test $NUMBER... [$DESC]"

  # get the command line options to use
  cmd=`sed -e "s/%HOSTIP/$HOSTIP/g" \
           -e "s/%HOSTPORT/$HOSTPORT/g" \
           -e "s/%HOSTNAME/$HOSTNAME/g" <$CURLCMD `

  # run curl
  CMDLINE="$CURL -o $CURLOUT -i --silent $cmd"

  if test -n "$verbose"; then
    echo "$CMDLINE"
  fi

  # we do it the eval way to deal with quotes and similar stuff
  eval $CMDLINE

  if [ $? != "0" ]; then
    echo "Failed to invoke curl for test $NUMBER"
  else
    # when curl is done, the server has closed down as well

    # verify the received data
    compare $CURLOUT $REPLY " fetch"

    if [ $? != "0" ]; then
      exit;
    fi

    # verify the sent request
    compare $SERVERIN $HTTP " command" \
     "(User-Agent:|^--curl|Content-Type: multipart/form-data; boundary=)"

    #
    # The strip pattern above is for stripping off User-Agent: since that'll
    # be different in all versions, and the lines in a RFC1876-post that are
    # randomly generated and therefore are doomed to always differ!
    #


    if [ $? != "0" ]; then
      exit;
    fi
  fi

  return 0
}


#######################################################################
# Check options to this test program
#

if test "$1" = "-v"; then
  verbose="1"
fi

if test -n "$NEWSETUP"; then

  #######################################################################
  # Make sure the Host: lines are correct for this setup
  #

  HOST="$HOSTIP:$HOSTPORT"
  for test in data/http*.txt; do
   sed -e "s/Host: \([0-9.:]*\)/Host: $HOST/g" < $test > $test.tmp
   mv $test.tmp $test
  done
fi

#######################################################################
# Output curl version being tested
#
VERSION=`$CURL -V`
HOSTNAME=`hostname`

echo "Running tests on:"
echo $VERSION
echo "host $HOSTNAME"

#######################################################################
# remove and recreate logging directory:
#
rm -rf $LOGDIR
mkdir $LOGDIR

#######################################################################
# First, start the TCP server
#

runserver

#######################################################################
# The main test-loop
#

if [ x$TESTCASES = xall ]; then
  TESTCASES=`ls -1 data/command*.txt | sed -e 's/[a-z\/\.]*//g'`
fi

for NUMBER in $TESTCASES; do

  singletest $NUMBER

  # loop for next test
done

#######################################################################
# Tests done, stop server
#

stopserver