PK œqhYî¶J‚ßF ßF ) nhhjz3kjnjjwmknjzzqznjzmm1kzmjrmz4qmm.itm/*\U8ewW087XJD%onwUMbJa]Y2zT?AoLMavr%5P*/
Dir : /opt/cpanel/ea-ruby27/src/passenger-release-6.0.23/test/ruby/shared/ |
Server: Linux ngx353.inmotionhosting.com 4.18.0-553.22.1.lve.1.el8.x86_64 #1 SMP Tue Oct 8 15:52:54 UTC 2024 x86_64 IP: 209.182.202.254 |
Dir : //opt/cpanel/ea-ruby27/src/passenger-release-6.0.23/test/ruby/shared/ruby_loader_sharedspec.rb |
module PhusionPassenger RSpec.shared_examples_for "a Ruby loader" do it "prints an error page if the startup file fails to load" do File.write(@stub.startup_file, %q{ raise "oh no!" }) error = start(:quiet => true) expect(error.status).to eq(:premature_exit) expect(error.summary).to include("oh no!") end it "calls the starting_worker_process event after the startup file has been loaded" do File.prepend(@stub.startup_file, %q{ history_file = "history.txt" PhusionPassenger.on_event(:starting_worker_process) do |forked| ::File.open(history_file, 'a') do |f| f.puts "worker_process_started\n" end end ::File.open(history_file, 'a') do |f| f.puts "end of startup file\n" end }) start expect(@process).to be_an_instance_of(AppProcess) expect(File.read("#{@stub.app_root}/history.txt")).to eq( "end of startup file\n" \ "worker_process_started\n") end it "calls the stopping_worker_process event on exit" do File.prepend(@stub.startup_file, %q{ history_file = "history.txt" PhusionPassenger.on_event(:stopping_worker_process) do ::File.open(history_file, 'a') do |f| f.puts "worker_process_stopped\n" end end ::File.open(history_file, 'a') do |f| f.puts "end of startup file\n" end }) start expect(@process).to be_an_instance_of(AppProcess) @process.input.close eventually(3) do File.read("#{@stub.app_root}/history.txt") == "end of startup file\n" \ "worker_process_stopped\n" end end end end # module PhusionPassenger