-
Notifications
You must be signed in to change notification settings - Fork 81
/
Copy pathstream_udp_upstream_hash.t
123 lines (86 loc) · 2.63 KB
/
stream_udp_upstream_hash.t
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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
#!/usr/bin/perl
# (C) Sergey Kandaurov
# (C) Nginx, Inc.
# Stream tests for upstream hash balancer module with datagrams.
###############################################################################
use warnings;
use strict;
use Test::More;
BEGIN { use FindBin; chdir($FindBin::Bin); }
use lib 'lib';
use Test::Nginx;
use Test::Nginx::Stream qw/ dgram /;
###############################################################################
select STDERR; $| = 1;
select STDOUT; $| = 1;
my $t = Test::Nginx->new()->has(qw/stream stream_upstream_hash udp/)->plan(2);
$t->write_file_expand('nginx.conf', <<'EOF');
%%TEST_GLOBALS%%
daemon off;
events {
}
stream {
%%TEST_GLOBALS_STREAM%%
proxy_responses 1;
proxy_timeout 1s;
upstream hash {
hash $remote_addr;
server 127.0.0.1:%%PORT_8982_UDP%%;
server 127.0.0.1:%%PORT_8983_UDP%%;
}
upstream cons {
hash $remote_addr consistent;
server 127.0.0.1:%%PORT_8982_UDP%%;
server 127.0.0.1:%%PORT_8983_UDP%%;
}
server {
listen 127.0.0.1:%%PORT_8980_UDP%% udp;
proxy_pass hash;
}
server {
listen 127.0.0.1:%%PORT_8981_UDP%% udp;
proxy_pass cons;
}
}
EOF
$t->run_daemon(\&udp_daemon, port(8982), $t);
$t->run_daemon(\&udp_daemon, port(8983), $t);
$t->run();
$t->waitforfile($t->testdir . '/' . port(8982));
$t->waitforfile($t->testdir . '/' . port(8983));
###############################################################################
my @ports = my ($port2, $port3) = (port(8982), port(8983));
is(many(10, port(8980)), "$port3: 10", 'hash');
like(many(10, port(8981)), qr/($port2|$port3): 10/, 'hash consistent');
###############################################################################
sub many {
my ($count, $port) = @_;
my (%ports);
for (1 .. $count) {
if (dgram("127.0.0.1:$port")->io('.') =~ /(\d+)/) {
$ports{$1} = 0 unless defined $ports{$1};
$ports{$1}++;
}
}
my @keys = map { my $p = $_; grep { $p == $_ } keys %ports } @ports;
return join ', ', map { $_ . ": " . $ports{$_} } @keys;
}
###############################################################################
sub udp_daemon {
my ($port, $t) = @_;
my $server = IO::Socket::INET->new(
Proto => 'udp',
LocalAddr => '127.0.0.1:' . $port,
Reuse => 1,
)
or die "Can't create listening socket: $!\n";
# signal we are ready
open my $fh, '>', $t->testdir() . '/' . $port;
close $fh;
while (1) {
$server->recv(my $buffer, 65536);
$buffer = $server->sockport();
$server->send($buffer);
}
}
###############################################################################