aboutsummaryrefslogtreecommitdiffstats
path: root/lib/kernel/test/gen_udp_SUITE.erl
diff options
context:
space:
mode:
authorErlang/OTP <[email protected]>2009-11-20 14:54:40 +0000
committerErlang/OTP <[email protected]>2009-11-20 14:54:40 +0000
commit84adefa331c4159d432d22840663c38f155cd4c1 (patch)
treebff9a9c66adda4df2106dfd0e5c053ab182a12bd /lib/kernel/test/gen_udp_SUITE.erl
downloadotp-84adefa331c4159d432d22840663c38f155cd4c1.tar.gz
otp-84adefa331c4159d432d22840663c38f155cd4c1.tar.bz2
otp-84adefa331c4159d432d22840663c38f155cd4c1.zip
The R13B03 release.OTP_R13B03
Diffstat (limited to 'lib/kernel/test/gen_udp_SUITE.erl')
-rw-r--r--lib/kernel/test/gen_udp_SUITE.erl410
1 files changed, 410 insertions, 0 deletions
diff --git a/lib/kernel/test/gen_udp_SUITE.erl b/lib/kernel/test/gen_udp_SUITE.erl
new file mode 100644
index 0000000000..bd5685952e
--- /dev/null
+++ b/lib/kernel/test/gen_udp_SUITE.erl
@@ -0,0 +1,410 @@
+%%
+%% %CopyrightBegin%
+%%
+%% Copyright Ericsson AB 1998-2009. All Rights Reserved.
+%%
+%% The contents of this file are subject to the Erlang Public License,
+%% Version 1.1, (the "License"); you may not use this file except in
+%% compliance with the License. You should have received a copy of the
+%% Erlang Public License along with this software. If not, it can be
+%% retrieved online at http://www.erlang.org/.
+%%
+%% Software distributed under the License is distributed on an "AS IS"
+%% basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See
+%% the License for the specific language governing rights and limitations
+%% under the License.
+%%
+%% %CopyrightEnd%
+%%
+%
+% test the behavior of gen_udp. Testing udp is really a very unfunny task,
+% because udp is not deterministic.
+%
+-module(gen_udp_SUITE).
+-include("test_server.hrl").
+
+
+-define(default_timeout, ?t:minutes(1)).
+
+% XXX - we should pick a port that we _know_ is closed. That's pretty hard.
+-define(CLOSED_PORT, 6666).
+
+-export([all/1]).
+-export([init_per_testcase/2, fin_per_testcase/2]).
+
+-export([send_to_closed/1,
+ buffer_size/1, binary_passive_recv/1, bad_address/1,
+ read_packets/1, open_fd/1]).
+
+all(suite) ->
+ [send_to_closed,
+ buffer_size, binary_passive_recv, bad_address, read_packets,
+ open_fd].
+
+init_per_testcase(_Case, Config) ->
+ ?line Dog=test_server:timetrap(?default_timeout),
+ [{watchdog, Dog}|Config].
+
+fin_per_testcase(_Case, Config) ->
+ Dog=?config(watchdog, Config),
+ test_server:timetrap_cancel(Dog),
+ ok.
+
+%%-------------------------------------------------------------
+%% Send two packets to a closed port (on some systems this causes the socket
+%% to be closed).
+
+send_to_closed(doc) ->
+ ["Tests core functionality."];
+send_to_closed(suite) ->
+ [];
+send_to_closed(Config) when is_list(Config) ->
+ ?line {ok, Sock} = gen_udp:open(0),
+ ?line ok = gen_udp:send(Sock, {127,0,0,1}, ?CLOSED_PORT, "foo"),
+ timer:sleep(2),
+ ?line ok = gen_udp:send(Sock, {127,0,0,1}, ?CLOSED_PORT, "foo"),
+ ?line ok = gen_udp:close(Sock),
+ ok.
+
+
+
+%%-------------------------------------------------------------
+%% Test that the UDP socket buffer sizes are settable
+
+buffer_size(suite) ->
+ [];
+buffer_size(doc) ->
+ ["Test UDP buffer size setting."];
+buffer_size(Config) when is_list(Config) ->
+ ?line Len = 256,
+ ?line Bin = list_to_binary(lists:seq(0, Len-1)),
+ ?line M = 8192 div Len,
+ ?line Spec0 =
+ [{opt,M},{safe,M-1},{long,M+1},
+ {opt,2*M},{safe,2*M-1},{long,2*M+1},
+ {opt,4*M},{safe,4*M-1},{long,4*M+1}],
+ ?line Spec =
+ [case Tag of
+ opt ->
+ [{recbuf,Val*Len},{sndbuf,(Val + 2)*Len}];
+ safe ->
+ {list_to_binary(lists:duplicate(Val, Bin)),
+ [correct]};
+ long ->
+ {list_to_binary(lists:duplicate(Val, Bin)),
+ [truncated,emsgsize,timeout]}
+ end || {Tag,Val} <- Spec0],
+ %%
+ ?line {ok, ClientSocket} = gen_udp:open(0, [binary]),
+ ?line {ok, ClientPort} = inet:port(ClientSocket),
+ ?line Client = self(),
+ ?line ClientIP = {127,0,0,1},
+ ?line ServerIP = {127,0,0,1},
+ ?line Server =
+ spawn_link(
+ fun () ->
+ {ok, ServerSocket} = gen_udp:open(0, [binary]),
+ {ok, ServerPort} = inet:port(ServerSocket),
+ Client ! {self(),port,ServerPort},
+ buffer_size_server(Client, ClientIP, ClientPort,
+ ServerSocket, 1, Spec),
+ ok = gen_udp:close(ServerSocket)
+ end),
+ ?line Mref = erlang:monitor(process, Server),
+ ?line receive
+ {Server,port,ServerPort} ->
+ ?line buffer_size_client(Server, ServerIP, ServerPort,
+ ClientSocket, 1, Spec)
+ end,
+ ?line ok = gen_udp:close(ClientSocket),
+ ?line receive
+ {'DOWN',Mref,_,_,normal} ->
+ ?line ok
+ end.
+
+buffer_size_client(_, _, _, _, _, []) ->
+ ?line ok;
+buffer_size_client(Server, IP, Port,
+ Socket, Cnt, [Opts|T]) when is_list(Opts) ->
+ ?line ok = inet:setopts(Socket, Opts),
+ ?line Server ! {self(),setopts,Cnt},
+ ?line receive {Server,setopts,Cnt} -> ok end,
+ ?line buffer_size_client(Server, IP, Port, Socket, Cnt+1, T);
+buffer_size_client(Server, IP, Port,
+ Socket, Cnt, [{B,Replies}|T]) when is_binary(B) ->
+ ?line ok = gen_udp:send(Socket, IP, Port, B),
+ ?line receive
+ {Server,Cnt,Reply} ->
+ ?line case lists:member(Reply, Replies) of
+ true -> ok;
+ false ->
+ ?line
+ ?t:fail({reply_mismatch,Cnt,Reply,Replies,
+ byte_size(B),
+ inet:getopts(Socket,
+ [sndbuf,recbuf])})
+ end
+ end,
+ ?line buffer_size_client(Server, IP, Port, Socket, Cnt+1, T).
+
+buffer_size_server(_, _, _, _, _, []) ->
+ ok;
+buffer_size_server(Client, IP, Port,
+ Socket, Cnt, [Opts|T]) when is_list(Opts) ->
+ receive {Client,setopts,Cnt} -> ok end,
+ ok = inet:setopts(Socket, Opts),
+ Client ! {self(),setopts,Cnt},
+ buffer_size_server(Client, IP, Port, Socket, Cnt+1, T);
+buffer_size_server(Client, IP, Port,
+ Socket, Cnt, [{B,_}|T]) when is_binary(B) ->
+ Client !
+ {self(),Cnt,
+ receive
+ {udp,Socket,IP,Port,D} when is_binary(D) ->
+ SizeD = byte_size(D),
+ case B of
+ D -> correct;
+ <<D:SizeD/binary,_/binary>> -> truncated
+ end;
+ {udp_error,Socket,Error} -> Error
+ after 5000 -> timeout
+ end},
+ buffer_size_server(Client, IP, Port, Socket, Cnt+1, T).
+
+
+
+%%-------------------------------------------------------------
+%% OTP-3823 gen_udp:recv does not return address in binary mode
+%%
+
+binary_passive_recv(suite) ->
+ [];
+binary_passive_recv(doc) ->
+ ["OTP-3823 gen_udp:recv does not return address in binary mode"];
+binary_passive_recv(Config) when is_list(Config) ->
+ ?line D = "The quick brown fox jumps over a lazy dog",
+ ?line B = list_to_binary(D),
+ ?line {ok, R} = gen_udp:open(0, [binary, {active, false}]),
+ ?line {ok, RP} = inet:port(R),
+ ?line {ok, S} = gen_udp:open(0),
+ ?line {ok, SP} = inet:port(S),
+ ?line ok = gen_udp:send(S, localhost, RP, D),
+ ?line {ok, {{127, 0, 0, 1}, SP, B}} = gen_udp:recv(R, byte_size(B)+1),
+ ?line ok = gen_udp:close(S),
+ ?line ok = gen_udp:close(R),
+ ok.
+
+
+%%-------------------------------------------------------------
+%% OTP-3836 inet_udp crashes when IP-address is larger than 255.
+
+bad_address(suite) ->
+ [];
+bad_address(doc) ->
+ ["OTP-3836 inet_udp crashes when IP-address is larger than 255."];
+bad_address(Config) when is_list(Config) ->
+ ?line {ok, R} = gen_udp:open(0),
+ ?line {ok, RP} = inet:port(R),
+ ?line {ok, S} = gen_udp:open(0),
+ ?line {ok, _SP} = inet:port(S),
+ ?line {'EXIT', badarg} =
+ (catch gen_udp:send(S, {127,0,0,1,0}, RP, "void")),
+ ?line {'EXIT', badarg} =
+ (catch gen_udp:send(S, {127,0,0,256}, RP, "void")),
+ ?line ok = gen_udp:close(S),
+ ?line ok = gen_udp:close(R),
+ ok.
+
+
+%%-------------------------------------------------------------
+%% OTP-6249 UDP option for number of packet reads
+%%
+%% Starts a slave node that on command sends a bunch of messages
+%% to our UDP port. The receiving process just receives and
+%% ignores the incoming messages, but counts them.
+%% A tracing process traces the receiving process for
+%% 'receive' and scheduling events. From the trace,
+%% message contents is verified; and, how many messages
+%% are received per in/out scheduling, which should be
+%% the same as the read_packets parameter.
+%%
+%% What happens on the SMP emulator remains to be seen...
+%%
+
+read_packets(doc) ->
+ ["OTP-6249 UDP option for number of packet reads."];
+read_packets(Config) when is_list(Config) ->
+ case erlang:system_info(smp_support) of
+ false ->
+ read_packets_1();
+ true ->
+ %% We would need some new sort of tracing to test this
+ %% option reliably in an SMP emulator.
+ {skip,"SMP emulator"}
+ end.
+
+read_packets_1() ->
+ ?line N1 = 5,
+ ?line N2 = 7,
+ ?line {ok,R} = gen_udp:open(0, [{read_packets,N1}]),
+ ?line {ok,RP} = inet:port(R),
+ ?line {ok,Node} = start_node(gen_udp_SUITE_read_packets),
+ ?line Die = make_ref(),
+ ?line Loop = erlang:spawn_link(fun () -> infinite_loop(Die) end),
+ %%
+ ?line Msgs1 = [erlang:integer_to_list(M) || M <- lists:seq(1, N1*3)],
+ ?line [V1|_] = read_packets_test(R, RP, Msgs1, Node),
+ ?line {ok,[{read_packets,N1}]} = inet:getopts(R, [read_packets]),
+ %%
+ ?line ok = inet:setopts(R, [{read_packets,N2}]),
+ ?line Msgs2 = [erlang:integer_to_list(M) || M <- lists:seq(1, N2*3)],
+ ?line [V2|_] = read_packets_test(R, RP, Msgs2, Node),
+ ?line {ok,[{read_packets,N2}]} = inet:getopts(R, [read_packets]),
+ %%
+ ?line stop_node(Node),
+ ?line Mref = erlang:monitor(process, Loop),
+ ?line Loop ! Die,
+ ?line receive
+ {'DOWN',Mref,_,_, normal} ->
+ case {V1,V2} of
+ {N1,N2} ->
+ ok;
+ _ when V1 =/= N1, V2 =/= N2 ->
+ ok
+ end
+ end.
+
+infinite_loop(Die) ->
+ receive
+ Die ->
+ ok
+ after
+ 0 ->
+ infinite_loop(Die)
+ end.
+
+read_packets_test(R, RP, Msgs, Node) ->
+ Len = length(Msgs),
+ Receiver = self(),
+ Tracer =
+ spawn_link(
+ fun () ->
+ receive
+ {Receiver,get_trace} ->
+ Receiver ! {self(),{trace,flush()}}
+ end
+ end),
+ Sender =
+ spawn_opt(
+ Node,
+ fun () ->
+ {ok,S} = gen_udp:open(0),
+ {ok,SP} = inet:port(S),
+ Receiver ! {self(),{port,SP}},
+ receive
+ {Receiver,go} ->
+ read_packets_send(S, RP, Msgs)
+ end
+ end,
+ [link,{priority,high}]),
+ receive
+ {Sender,{port,SP}} ->
+ erlang:trace(self(), true,
+ [running,'receive',{tracer,Tracer}]),
+ erlang:yield(),
+ Sender ! {Receiver,go},
+ read_packets_recv(Len),
+ erlang:trace(self(), false, [all]),
+ Tracer ! {Receiver,get_trace},
+ receive
+ {Tracer,{trace,Trace}} ->
+ read_packets_verify(R, SP, Msgs, Trace)
+ end
+ end.
+
+read_packets_send(S, RP, [Msg|Msgs]) ->
+ ok = gen_udp:send(S, localhost, RP, Msg),
+ read_packets_send(S, RP, Msgs);
+read_packets_send(_S, _RP, []) ->
+ ok.
+
+read_packets_recv(0) ->
+ ok;
+read_packets_recv(N) ->
+ receive
+ _ ->
+ read_packets_recv(N - 1)
+ after 5000 ->
+ timeout
+ end.
+
+read_packets_verify(R, SP, Msg, Trace) ->
+ lists:reverse(
+ lists:sort(read_packets_verify(R, SP, Msg, Trace, 0))).
+
+read_packets_verify(R, SP, Msgs, [{trace,Self,OutIn,_}|Trace], M)
+ when Self =:= self(), OutIn =:= out;
+ Self =:= self(), OutIn =:= in ->
+ push(M, read_packets_verify(R, SP, Msgs, Trace, 0));
+read_packets_verify(R, SP, [Msg|Msgs],
+ [{trace,Self,'receive',{udp,R,{127,0,0,1},SP,Msg}}
+ |Trace], M)
+ when Self =:= self() ->
+ read_packets_verify(R, SP, Msgs, Trace, M+1);
+read_packets_verify(_R, _SP, [], [], M) ->
+ push(M, []);
+read_packets_verify(_R, _SP, Msgs, Trace, M) ->
+ ?t:fail({read_packets_verify,mismatch,Msgs,Trace,M}).
+
+push(0, Vs) ->
+ Vs;
+push(V, Vs) ->
+ [V|Vs].
+
+flush() ->
+ receive
+ X ->
+ [X|flush()]
+ after 200 ->
+ []
+ end.
+
+
+
+open_fd(suite) ->
+ [];
+open_fd(doc) ->
+ ["Test that the 'fd' option works"];
+open_fd(Config) when is_list(Config) ->
+ Msg = "Det g�r ont n�r knoppar brista. Varf�r skulle annars v�ren tveka?",
+ Addr = {127,0,0,1},
+ {ok,S1} = gen_udp:open(0),
+ {ok,P2} = inet:port(S1),
+ {ok,FD} = prim_inet:getfd(S1),
+ {ok,S2} = gen_udp:open(P2, [{fd,FD}]),
+ {ok,S3} = gen_udp:open(0),
+ {ok,P3} = inet:port(S3),
+ ok = gen_udp:send(S3, Addr, P2, Msg),
+ receive
+ {udp,S2,Addr,P3,Msg} ->
+ ok = gen_udp:send(S2,Addr,P3,Msg),
+ receive
+ {udp,S3,Addr,P2,Msg} ->
+ ok
+ after 1000 ->
+ ?t:fail(io_lib:format("~w", [flush()]))
+ end
+ after 1000 ->
+ ?t:fail(io_lib:format("~w", [flush()]))
+ end.
+
+
+%
+% Utils
+%
+start_node(Name) ->
+ Pa = filename:dirname(code:which(?MODULE)),
+ ?t:start_node(Name, slave, [{args, "-pa " ++ Pa}]).
+
+stop_node(Node) ->
+ ?t:stop_node(Node).