create t/test_mod_simple_vhost to test mod_simple_vhost basic logic remove tests/mod-simplevhost.t, which was not testing mod_simple_vhostpersonal/stbuehler/fix-fdevent
parent
685f4ed62c
commit
b2a6239851
@ -0,0 +1,53 @@
|
||||
#include "first.h"
|
||||
|
||||
#undef NDEBUG
|
||||
#include <assert.h>
|
||||
#include <stdlib.h>
|
||||
#include <stdio.h>
|
||||
|
||||
#include "mod_simple_vhost.c"
|
||||
|
||||
static void test_mod_simple_vhost_build_doc_root_path(void) {
|
||||
buffer *sroot = buffer_init();
|
||||
buffer *host = buffer_init();
|
||||
buffer *droot = buffer_init();
|
||||
buffer *result= buffer_init();
|
||||
|
||||
buffer_copy_string_len(sroot, CONST_STR_LEN("/sroot/a/"));
|
||||
buffer_copy_string_len(host, CONST_STR_LEN("www.example.org"));
|
||||
buffer_copy_string_len(droot, CONST_STR_LEN("/droot/b/"));
|
||||
build_doc_root_path(result, sroot, host, droot);
|
||||
assert(buffer_is_equal_string(result, CONST_STR_LEN("/sroot/a/www.example.org/droot/b/")));
|
||||
|
||||
buffer_copy_string_len(host, CONST_STR_LEN("www.example.org:8080"));
|
||||
build_doc_root_path(result, sroot, host, droot);
|
||||
assert(buffer_is_equal_string(result, CONST_STR_LEN("/sroot/a/www.example.org/droot/b/")));
|
||||
|
||||
buffer_copy_string_len(droot, CONST_STR_LEN(""));
|
||||
build_doc_root_path(result, sroot, host, droot);
|
||||
assert(buffer_is_equal_string(result, CONST_STR_LEN("/sroot/a/www.example.org/")));
|
||||
|
||||
buffer_free(sroot);
|
||||
buffer_free(host);
|
||||
buffer_free(droot);
|
||||
buffer_free(result);
|
||||
}
|
||||
|
||||
int main (void) {
|
||||
test_mod_simple_vhost_build_doc_root_path();
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
/*
|
||||
* stub functions
|
||||
*/
|
||||
|
||||
handler_t stat_cache_get_entry(server *srv, connection *con, buffer *name, stat_cache_entry **sce) {
|
||||
UNUSED(srv);
|
||||
UNUSED(con);
|
||||
UNUSED(name);
|
||||
UNUSED(sce);
|
||||
return HANDLER_GO_ON;
|
||||
}
|
||||
|
@ -1,30 +0,0 @@
|
||||
debug.log-request-handling = "enable"
|
||||
debug.log-response-header = "disable"
|
||||
debug.log-request-header = "disable"
|
||||
|
||||
## bind to localhost (default: all interfaces)
|
||||
server.bind = "localhost"
|
||||
server.errorlog = env.SRCDIR + "/tmp/lighttpd/logs/lighttpd.error.log"
|
||||
server.breakagelog = env.SRCDIR + "/tmp/lighttpd/logs/lighttpd.breakage.log"
|
||||
server.name = "www.example.org"
|
||||
|
||||
server.document-root = env.SRCDIR + "/tmp/lighttpd/servers/www.example.org/pages/"
|
||||
server.pid-file = env.SRCDIR + "/tmp/lighttpd/lighttpd.pid"
|
||||
|
||||
## bind to port (default: 80)
|
||||
server.port = 2048
|
||||
|
||||
|
||||
|
||||
######################## MODULE CONFIG ############################
|
||||
|
||||
server.modules = (
|
||||
"mod_simple_vhost",
|
||||
)
|
||||
|
||||
# docroot depending on request path
|
||||
$HTTP["url"] =~ "^/a/" {
|
||||
server.document-root = env.SRCDIR + "/tmp/lighttpd/servers/a.example.org/pages/"
|
||||
} else $HTTP["url"] =~ "^/b/" {
|
||||
server.document-root = env.SRCDIR + "/tmp/lighttpd/servers/b.example.org/pages/"
|
||||
}
|
@ -1,37 +0,0 @@
|
||||
#!/usr/bin/env perl
|
||||
BEGIN {
|
||||
# add current source dir to the include-path
|
||||
# we need this for make distcheck
|
||||
(my $srcdir = $0) =~ s,/[^/]+$,/,;
|
||||
unshift @INC, $srcdir;
|
||||
}
|
||||
|
||||
use strict;
|
||||
use IO::Socket;
|
||||
use Test::More tests => 4;
|
||||
use LightyTest;
|
||||
|
||||
my $tf = LightyTest->new();
|
||||
my $t;
|
||||
|
||||
$tf->{CONFIGFILE} = 'mod-simplevhost.conf';
|
||||
|
||||
ok($tf->start_proc == 0, "Starting lighttpd") or die();
|
||||
|
||||
$t->{REQUEST} = ( <<EOF
|
||||
GET /a/a.html HTTP/1.0
|
||||
Host: www.example.org
|
||||
EOF
|
||||
);
|
||||
$t->{RESPONSE} = [ { 'HTTP-Protocol' => 'HTTP/1.0', 'HTTP-Status' => 200 } ];
|
||||
ok($tf->handle_http($t) == 0, 'Check /a/a.html path');
|
||||
|
||||
$t->{REQUEST} = ( <<EOF
|
||||
GET /b/b.html HTTP/1.0
|
||||
Host: www.example.org
|
||||
EOF
|
||||
);
|
||||
$t->{RESPONSE} = [ { 'HTTP-Protocol' => 'HTTP/1.0', 'HTTP-Status' => 200 } ];
|
||||
ok($tf->handle_http($t) == 0, 'Check /b/b.html path');
|
||||
|
||||
ok($tf->stop_proc == 0, "Stopping lighttpd");
|
Loading…
Reference in new issue