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
|
require File.expand_path(File.dirname(__FILE__) + '/../../spec_helper')
module PhusionPassenger
shared_examples_for "a spawner that does not preload app code" do
specify "the starting_worker_process event is called with forked=false" do
after_start %q{
history_file = "#{PhusionPassenger::Utils.passenger_tmpdir}/history.txt"
PhusionPassenger.on_event(:starting_worker_process) do |forked|
::File.append(history_file, "forked = #{forked}\n")
end
::File.append(history_file, "end of environment.rb\n");
}
spawn_some_application
spawn_some_application
history_file = "#{PhusionPassenger::Utils.passenger_tmpdir}/history.txt"
eventually do
contents = File.read(history_file)
lines = contents.split("\n")
lines.count("forked = false") == 2
end
end
end
end # module PhusionPassenger
|