mod-simplevhost.t 852 B

12345678910111213141516171819202122232425262728293031323334353637
  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 => 4;
  11. use LightyTest;
  12. my $tf = LightyTest->new();
  13. my $t;
  14. $tf->{CONFIGFILE} = 'mod-simplevhost.conf';
  15. ok($tf->start_proc == 0, "Starting lighttpd") or die();
  16. $t->{REQUEST} = ( <<EOF
  17. GET /a/a.html HTTP/1.0
  18. Host: www.example.org
  19. EOF
  20. );
  21. $t->{RESPONSE} = [ { 'HTTP-Protocol' => 'HTTP/1.0', 'HTTP-Status' => 200 } ];
  22. ok($tf->handle_http($t) == 0, 'Check /a/a.html path');
  23. $t->{REQUEST} = ( <<EOF
  24. GET /b/b.html HTTP/1.0
  25. Host: www.example.org
  26. EOF
  27. );
  28. $t->{RESPONSE} = [ { 'HTTP-Protocol' => 'HTTP/1.0', 'HTTP-Status' => 200 } ];
  29. ok($tf->handle_http($t) == 0, 'Check /b/b.html path');
  30. ok($tf->stop_proc == 0, "Stopping lighttpd");