You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

46 lines
1.6KB

  1. #!/bin/sh
  2. # Make sure that the data directory exists
  3. mkdir -p tests/data
  4. #perl -e 'chomp($wd = `pwd`); print map { s!tests/data/!!; "<Stream $_>\nFile $wd/tests/data/$_\n</Stream>\n\n" } @ARGV' tests/data/a* >> tests/data/test.conf
  5. #perl -e 'chomp($wd = `pwd`); print map { s!tests/data/!!; "<Stream $_.asf>\nFile $wd/tests/data/$_\n</Stream>\n\n" } @ARGV' tests/data/a* >> tests/data/test.conf
  6. FILES=`sed -n 's/^[^#]*<Stream \(.*\)>.*/\1/p' $2 | grep -v html`
  7. rm -f tests/feed1.ffm
  8. ./ffserver -d -f tests/test.conf 2> /dev/null &
  9. FFSERVER_PID=$!
  10. echo "Waiting for feeds to startup..."
  11. ./ffmpeg -loop_input -flags +bitexact -dct fastint -idct simple -y -f pgmyuv -i tests/vsynth1/%02d.pgm http://localhost:9999/feed1.ffm 2> /dev/null &
  12. FFMPEG_PID=$!
  13. (
  14. cd tests/data || exit $?
  15. rm -f ff-*;
  16. WGET_OPTIONS="--user-agent=NSPlayer -q --proxy=off -e verbose=off -e server_response=off"
  17. for file in $FILES; do
  18. if [ `expr $file : "a-*"` != 0 ]; then
  19. wget $WGET_OPTIONS --output-document=- http://localhost:9999/$file > ff-$file
  20. else
  21. wget $WGET_OPTIONS --output-document=- http://localhost:9999/$file?date=19700101T000000Z | dd bs=1 count=20000 > ff-$file 2>/dev/null
  22. fi
  23. MDFILES="$MDFILES ff-$file"
  24. done
  25. wait
  26. # the status page is always different
  27. md5sum $MDFILES > ffserver.regression
  28. )
  29. kill $FFMPEG_PID
  30. kill $FFSERVER_PID
  31. wait > /dev/null 2>&1
  32. rm -f tests/feed1.ffm
  33. if diff -u tests/data/ffserver.regression "$1" ; then
  34. echo
  35. echo Server regression test succeeded.
  36. exit 0
  37. else
  38. echo
  39. echo Server regression test: Error.
  40. exit 1
  41. fi