mod-secdownload.t 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. #!/usr/bin/env perl
  2. BEGIN {
  3. # add current source dir to the include-path
  4. # we need this for make distcheck
  5. (my $srcdir = $0) =~ s,/[^/]+$,/,;
  6. unshift @INC, $srcdir;
  7. }
  8. use strict;
  9. use IO::Socket;
  10. use Test::More tests => 7;
  11. use LightyTest;
  12. use Digest::MD5 qw(md5_hex);
  13. my $tf = LightyTest->new();
  14. my $t;
  15. ok($tf->start_proc == 0, "Starting lighttpd") or die();
  16. my $secret = "verysecret";
  17. my $f = "/index.html";
  18. my $thex = sprintf("%08x", time);
  19. my $m = md5_hex($secret.$f.$thex);
  20. $t->{REQUEST} = ( <<EOF
  21. GET /sec/$m/$thex$f HTTP/1.0
  22. Host: vvv.example.org
  23. EOF
  24. );
  25. $t->{RESPONSE} = [ { 'HTTP-Protocol' => 'HTTP/1.0', 'HTTP-Status' => 200 } ];
  26. ok($tf->handle_http($t) == 0, 'secdownload');
  27. $thex = sprintf("%08x", time - 1800);
  28. $m = md5_hex($secret.$f.$thex);
  29. $t->{REQUEST} = ( <<EOF
  30. GET /sec/$m/$thex$f HTTP/1.0
  31. Host: vvv.example.org
  32. EOF
  33. );
  34. $t->{RESPONSE} = [ { 'HTTP-Protocol' => 'HTTP/1.0', 'HTTP-Status' => 410 } ];
  35. ok($tf->handle_http($t) == 0, 'secdownload - gone (timeout)');
  36. $t->{REQUEST} = ( <<EOF
  37. GET /sec$f HTTP/1.0
  38. Host: vvv.example.org
  39. EOF
  40. );
  41. $t->{RESPONSE} = [ { 'HTTP-Protocol' => 'HTTP/1.0', 'HTTP-Status' => 404 } ];
  42. ok($tf->handle_http($t) == 0, 'secdownload - direct access');
  43. $t->{REQUEST} = ( <<EOF
  44. GET $f HTTP/1.0
  45. Host: www.example.org
  46. EOF
  47. );
  48. $t->{RESPONSE} = [ { 'HTTP-Protocol' => 'HTTP/1.0', 'HTTP-Status' => 200 } ];
  49. ok($tf->handle_http($t) == 0, 'secdownload - conditional access');
  50. $f = "/noexists";
  51. $thex = sprintf("%08x", time);
  52. $m = md5_hex($secret.$f.$thex);
  53. $t->{REQUEST} = ( <<EOF
  54. GET /sec/$m/$thex$f HTTP/1.0
  55. Host: vvv.example.org
  56. EOF
  57. );
  58. $t->{RESPONSE} = [ { 'HTTP-Protocol' => 'HTTP/1.0', 'HTTP-Status' => 404 } ];
  59. ok($tf->handle_http($t) == 0, 'secdownload - timeout');
  60. ok($tf->stop_proc == 0, "Stopping lighttpd");