blob: c85febd9749071574ec392ab01357d9f85088f01 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
|
use strict;
use warnings;
use Test::More;
use t::Util;
my $CURL_CMD = q{curl --silent --show-error --output /dev/null --write-out '%{content_type}'};
plan skip_all => 'curl not found'
unless prog_exists('curl');
subtest "basic" => sub {
my $server = spawn_h2o(<< 'EOT');
hosts:
default:
paths:
/:
file.dir: t/50mimemap/doc_root
/addtypes:
file.dir: t/50mimemap/doc_root
file.mime.addtypes:
application/xhtml+xml: .xhtml
/removetypes:
file.dir: t/50mimemap/doc_root
file.mime.removetypes:
- .xhtml
/settypes:
file.dir: t/50mimemap/doc_root
file.mime.settypes:
text/xml: .xhtml
file.mime.addtypes:
application/xml: .xhtml
default-type-test:
paths:
/:
file.dir: t/50mimemap/doc_root
file.mime.setdefaulttype: application/xhtml+xml
file.index:
- index.xhtml
EOT
my $port = $server->{port};
my %expected = (
'/' => 'application/xml',
'/addtypes/' => 'application/xhtml+xml',
'/removetypes/' => 'application/octet-stream',
'/settypes/' => 'text/xml',
);
for my $path (sort keys %expected) {
my $ct = `$CURL_CMD http://127.0.0.1:$port$path`;
is $ct, $expected{$path}, "$path";
$ct = `$CURL_CMD http://127.0.0.1:$port${path}index.xhtml`;
is $ct, $expected{$path}, "${path}index.xhtml";
}
my $ct = `$CURL_CMD --header 'host: default-type-test' http://127.0.0.1:$port/`;
is $ct, 'application/xhtml+xml', 'setdefaulttype';
};
subtest "issue730" => sub {
my $server = spawn_h2o(<< 'EOT');
hosts:
default:
paths:
/:
file.dir: t/assets/doc_root
file.mime.addtypes:
"text/plain; charset=mycharset": ".txt"
EOT
my $ct = `$CURL_CMD http://127.0.0.1:$server->{port}/index.txt`;
is $ct, "text/plain; charset=mycharset";
};
subtest "reset mimemap to minimum" => sub {
my $server = spawn_h2o(<< 'EOT');
file.mime.setdefaulttype: "application/octet-stream"
file.mime.settypes: {}
hosts:
default:
paths:
/:
file.dir: t/assets/doc_root
EOT
my $ct = `$CURL_CMD http://127.0.0.1:$server->{port}/index.txt`;
is $ct, "application/octet-stream";
};
done_testing;
|