代码拉取完成,页面将自动刷新
#!/usr/bin/perl
# (C) Eugene Grebenschikov
# (C) Sergey Kandaurov
# (C) Nginx, Inc.
# Tests for clearing of pre-existing Content-Range headers.
###############################################################################
use warnings;
use strict;
use Test::More;
BEGIN { use FindBin; chdir($FindBin::Bin); }
use lib 'lib';
use Test::Nginx;
###############################################################################
select STDERR; $| = 1;
select STDOUT; $| = 1;
my $t = Test::Nginx->new()->has(qw/http rewrite proxy cache/)
->write_file_expand('nginx.conf', <<'EOF');
%%TEST_GLOBALS%%
daemon off;
events {
}
http {
%%TEST_GLOBALS_HTTP%%
proxy_cache_path %%TESTDIR%%/cache levels=1:2 keys_zone=NAME:1m;
server {
listen 127.0.0.1:8080;
server_name localhost;
location / {
proxy_pass http://127.0.0.1:8080/stub;
proxy_cache NAME;
proxy_cache_valid 200 1m;
}
location /stub {
add_header Content-Range stub;
add_header Accept-Ranges bytes;
return 200 "SEE-THIS";
}
}
}
EOF
$t->run()->plan(3);
###############################################################################
local $TODO = 'not yet' unless $t->has_version('1.23.1');
like(http_get_range('/', 'Range: bytes=0-4'),
qr/ 206 (?!.*stub)/s, 'content range cleared - range request');
like(http_get_range('/', 'Range: bytes=0-2,4-'),
qr/ 206 (?!.*stub)/s, 'content range cleared - multipart');
like(http_get_range('/', 'Range: bytes=1000-'),
qr/ 416 (?!.*stub)/s, 'content range cleared - not satisfable');
###############################################################################
sub http_get_range {
my ($url, $extra) = @_;
return http(<<EOF);
GET $url HTTP/1.1
Host: localhost
Connection: close
$extra
EOF
}
###############################################################################
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。