Skip to content

Commit

Permalink
bugfix
Browse files Browse the repository at this point in the history
  • Loading branch information
pcaskey committed Oct 11, 2018
1 parent 286b0d1 commit 8df6dee
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions tests/fulltest.sh
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,17 @@ sleep 180
pushd tests &>/dev/null
rm -f lastpage.txt

#ensure webisoget is installed
rpm -q webisoget &>/dev/null
if [ $? -ne '0' ]; then
curl -s -o webisoget-2.8.7-1.x86_64.rpm https://github.internet2.edu/docker/util/blob/master/bin/webisoget-2.8.7-1.x86_64.rpm
if [ -s webisoget-2.8.7-1.x86_64.rpm ]; then
rpm -ivh webisoget-2.8.7-1.x86_64.rpm
else
echo "can't get webisoget rpm..."
exit 1
fi

echo "Attempting full-cycle test..."
webisoget -verbose -out lastpage.txt -formfile sptest.login -url https://sptest.example.edu:8443/secure/ &>/dev/null

Expand Down

0 comments on commit 8df6dee

Please sign in to comment.