summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthew Sackman <matthew@rabbitmq.com>2010-07-27 14:10:17 +0100
committerMatthew Sackman <matthew@rabbitmq.com>2010-07-27 14:10:17 +0100
commit2bdf63c7621f7db1f02b8678d8ae9633013f3d70 (patch)
tree38a7edd59c90ee97597fb1917f7ca04f06e2dc05
parent4a078ad225ccfcc4bc4a5bdb30dfa3fb98691d4a (diff)
downloadrabbitmq-server-2bdf63c7621f7db1f02b8678d8ae9633013f3d70.tar.gz
Added test for delayed restart in supervisor2
-rw-r--r--src/rabbit_tests.erl4
-rw-r--r--src/test_sup.erl83
2 files changed, 87 insertions, 0 deletions
diff --git a/src/rabbit_tests.erl b/src/rabbit_tests.erl
index 516e9134..c06879e9 100644
--- a/src/rabbit_tests.erl
+++ b/src/rabbit_tests.erl
@@ -60,6 +60,7 @@ all_tests() ->
passed = test_bpqueue(),
passed = test_pg_local(),
passed = test_unfold(),
+ passed = test_supervisor_delayed_restart(),
passed = test_parsing(),
passed = test_content_framing(),
passed = test_topic_matching(),
@@ -1340,6 +1341,9 @@ bad_handle_hook(_, _, _) ->
extra_arg_hook(Hookname, Handler, Args, Extra1, Extra2) ->
handle_hook(Hookname, Handler, {Args, Extra1, Extra2}).
+test_supervisor_delayed_restart() ->
+ test_sup:test_supervisor_delayed_restart().
+
test_backing_queue() ->
case application:get_env(rabbit, backing_queue_module) of
{ok, rabbit_variable_queue} ->
diff --git a/src/test_sup.erl b/src/test_sup.erl
new file mode 100644
index 00000000..3e126d0d
--- /dev/null
+++ b/src/test_sup.erl
@@ -0,0 +1,83 @@
+%% The contents of this file are subject to the Mozilla Public License
+%% Version 1.1 (the "License"); you may not use this file except in
+%% compliance with the License. You may obtain a copy of the License at
+%% http://www.mozilla.org/MPL/
+%%
+%% 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.
+%%
+%% The Original Code is RabbitMQ.
+%%
+%% The Initial Developers of the Original Code are LShift Ltd,
+%% Cohesive Financial Technologies LLC, and Rabbit Technologies Ltd.
+%%
+%% Portions created before 22-Nov-2008 00:00:00 GMT by LShift Ltd,
+%% Cohesive Financial Technologies LLC, or Rabbit Technologies Ltd
+%% are Copyright (C) 2007-2008 LShift Ltd, Cohesive Financial
+%% Technologies LLC, and Rabbit Technologies Ltd.
+%%
+%% Portions created by LShift Ltd are Copyright (C) 2007-2010 LShift
+%% Ltd. Portions created by Cohesive Financial Technologies LLC are
+%% Copyright (C) 2007-2010 Cohesive Financial Technologies
+%% LLC. Portions created by Rabbit Technologies Ltd are Copyright
+%% (C) 2007-2010 Rabbit Technologies Ltd.
+%%
+%% All Rights Reserved.
+%%
+%% Contributor(s): ______________________________________.
+%%
+
+-module(test_sup).
+
+-behaviour(supervisor2).
+
+-export([test_supervisor_delayed_restart/0,
+ init/1, start_child/0, run_child/0]).
+
+test_supervisor_delayed_restart() ->
+ {ok, SupPid} = start_link(),
+ ok = ping_child(SupPid),
+ ok = exit_child(SupPid),
+ timer:sleep(1000),
+ ok = ping_child(SupPid),
+ ok = exit_child(SupPid),
+ timer:sleep(1000),
+ timeout = ping_child(SupPid),
+ timer:sleep(5000),
+ ok = ping_child(SupPid),
+ exit(SupPid, shutdown),
+ rabbit_misc:unlink_and_capture_exit(SupPid),
+ passed.
+
+start_link() ->
+ supervisor2:start_link(?MODULE, []).
+
+init([]) ->
+ {ok, {{one_for_one, 1, 1},
+ [{test, {test_sup, start_child, []}, {permanent, 3},
+ 16#ffffffff, worker, [test_sup]}]}}.
+
+start_child() ->
+ {ok, spawn_link(fun run_child/0)}.
+
+ping_child(SupPid) ->
+ Ref = make_ref(),
+ get_child_pid(SupPid) ! {ping, Ref, self()},
+ receive {pong, Ref} -> ok
+ after 1000 -> timeout
+ end.
+
+exit_child(SupPid) ->
+ true = exit(get_child_pid(SupPid), abnormal),
+ ok.
+
+get_child_pid(SupPid) ->
+ [{test, ChildPid, worker, [test_sup]}] = supervisor2:which_children(SupPid),
+ ChildPid.
+
+run_child() ->
+ receive {ping, Ref, Pid} -> Pid ! {pong, Ref},
+ run_child()
+ end.