summaryrefslogtreecommitdiff
path: root/regress/usr.sbin/relayd/args-http-filter-url-file.pl
blob: 06a7545c0f2338754904fcb52c576b82e54ccd8a (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
use strict;
use warnings;

my @lengths = (1, 2, 4, 0, 3, 5);
our %args = (
    client => {
	func => \&http_client,
	lengths => \@lengths,
	loggrep => {
		qr/403 Forbidden/ => 4,
	},
    },
    relayd => {
	protocol => [ "http",
	    'return error',
	    'pass',
	    'block request url log file "$curdir/args-http-filter-url-file.in" value "*" label "test_reject_label"',
	],
	loggrep => {
		qr/Forbidden/ => 4,
		qr/\[test_reject_label\, foo\.bar\/0\]/ => 2,
		qr/\[test_reject_label\, foo\.bar\/3\]/ => 2,
	},
    },
    server => {
	func => \&http_server,
    },
    lengths => [1, 2, 4, 5],
);

1;