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
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
| | # -*- encoding: binary -*-
# Copyright (c) 2009 Eric Wong
FLOCK_PATH = File.expand_path(__FILE__)
require './test/test_helper'
do_test = true
$unicorn_bin = ENV['UNICORN_TEST_BIN'] || "unicorn"
redirect_test_io do
do_test = system($unicorn_bin, '-v')
end
unless do_test
warn "#{$unicorn_bin} not found in PATH=#{ENV['PATH']}, " \
"skipping this test"
end
unless try_require('rack')
warn "Unable to load Rack, skipping this test"
do_test = false
end
class ExecTest < Test::Unit::TestCase
trap(:QUIT, 'IGNORE')
HI = <<-EOS
use Rack::ContentLength
run proc { |env| [ 200, { 'content-type' => 'text/plain' }, [ "HI\\n" ] ] }
EOS
SHOW_RACK_ENV = <<-EOS
use Rack::ContentLength
run proc { |env|
[ 200, { 'content-type' => 'text/plain' }, [ ENV['RACK_ENV'] ] ]
}
EOS
HELLO = <<-EOS
class Hello
def call(env)
[ 200, { 'content-type' => 'text/plain' }, [ "HI\\n" ] ]
end
end
EOS
COMMON_TMP = Tempfile.new('unicorn_tmp') unless defined?(COMMON_TMP)
HEAVY_WORKERS = 2
HEAVY_CFG = <<-EOS
worker_processes #{HEAVY_WORKERS}
timeout 30
logger Logger.new('#{COMMON_TMP.path}')
before_fork do |server, worker|
server.logger.info "before_fork: worker=\#{worker.nr}"
end
EOS
WORKING_DIRECTORY_CHECK_RU = <<-EOS
use Rack::ContentLength
run lambda { |env|
pwd = ENV['PWD']
a = ::File.stat(pwd)
b = ::File.stat(Dir.pwd)
if (a.ino == b.ino && a.dev == b.dev)
[ 200, { 'content-type' => 'text/plain' }, [ pwd ] ]
else
[ 404, { 'content-type' => 'text/plain' }, [] ]
end
}
EOS
def setup
@pwd = Dir.pwd
@tmpfile = Tempfile.new('unicorn_exec_test')
@tmpdir = @tmpfile.path
@tmpfile.close!
Dir.mkdir(@tmpdir)
Dir.chdir(@tmpdir)
@addr = ENV['UNICORN_TEST_ADDR'] || '127.0.0.1'
@port = unused_port(@addr)
@sockets = []
@start_pid = $$
end
def teardown
return if @start_pid != $$
Dir.chdir(@pwd)
FileUtils.rmtree(@tmpdir)
@sockets.each { |path| File.unlink(path) rescue nil }
loop do
Process.kill('-QUIT', 0)
begin
Process.waitpid(-1, Process::WNOHANG) or break
rescue Errno::ECHILD
break
end
end
end
def test_sd_listen_fds_emulation
# [ruby-core:69895] [Bug #11336] fixed by r51576
return if RUBY_VERSION.to_f < 2.3
File.open("config.ru", "wb") { |fp| fp.write(HI) }
sock = TCPServer.new(@addr, @port)
[ %W(-l #@addr:#@port), nil ].each do |l|
sock.setsockopt(:SOL_SOCKET, :SO_KEEPALIVE, 0)
pid = xfork do
redirect_test_io do
# pretend to be systemd
ENV['LISTEN_PID'] = "#$$"
ENV['LISTEN_FDS'] = '1'
# 3 = SD_LISTEN_FDS_START
args = [ $unicorn_bin ]
args.concat(l) if l
args << { 3 => sock }
exec(*args)
end
end
res = hit(["http://#@addr:#@port/"])
assert_equal [ "HI\n" ], res
assert_shutdown(pid)
assert sock.getsockopt(:SOL_SOCKET, :SO_KEEPALIVE).bool,
'unicorn should always set SO_KEEPALIVE on inherited sockets'
end
ensure
sock.close if sock
end
def test_inherit_listener_unspecified
File.open("config.ru", "wb") { |fp| fp.write(HI) }
sock = TCPServer.new(@addr, @port)
sock.setsockopt(:SOL_SOCKET, :SO_KEEPALIVE, 0)
pid = xfork do
redirect_test_io do
ENV['UNICORN_FD'] = sock.fileno.to_s
exec($unicorn_bin, sock.fileno => sock.fileno)
end
end
res = hit(["http://#@addr:#@port/"])
assert_equal [ "HI\n" ], res
assert_shutdown(pid)
assert sock.getsockopt(:SOL_SOCKET, :SO_KEEPALIVE).bool,
'unicorn should always set SO_KEEPALIVE on inherited sockets'
ensure
sock.close if sock
end
def test_working_directory_rel_path_config_file
other = Tempfile.new('unicorn.wd')
File.unlink(other.path)
Dir.mkdir(other.path)
File.open("config.ru", "wb") do |fp|
fp.syswrite WORKING_DIRECTORY_CHECK_RU
end
FileUtils.cp("config.ru", other.path + "/config.ru")
Dir.chdir(@tmpdir)
tmp = File.open('unicorn.config', 'wb')
tmp.syswrite <<EOF
working_directory '#@tmpdir'
listen '#@addr:#@port'
EOF
pid = xfork { redirect_test_io { exec($unicorn_bin, "-c#{tmp.path}") } }
wait_workers_ready("test_stderr.#{pid}.log", 1)
results = hit(["http://#@addr:#@port/"])
assert_equal @tmpdir, results.first
File.truncate("test_stderr.#{pid}.log", 0)
tmp.sysseek(0)
tmp.truncate(0)
tmp.syswrite <<EOF
working_directory '#{other.path}'
listen '#@addr:#@port'
EOF
Process.kill(:HUP, pid)
lines = []
re = /config_file=(.+) would not be accessible in working_directory=(.+)/
until lines.grep(re)
sleep 0.1
lines = File.readlines("test_stderr.#{pid}.log")
end
File.truncate("test_stderr.#{pid}.log", 0)
FileUtils.cp('unicorn.config', other.path + "/unicorn.config")
Process.kill(:HUP, pid)
wait_workers_ready("test_stderr.#{pid}.log", 1)
results = hit(["http://#@addr:#@port/"])
assert_equal other.path, results.first
Process.kill(:QUIT, pid)
ensure
FileUtils.rmtree(other.path)
end
def test_working_directory
other = Tempfile.new('unicorn.wd')
File.unlink(other.path)
Dir.mkdir(other.path)
File.open("config.ru", "wb") do |fp|
fp.syswrite WORKING_DIRECTORY_CHECK_RU
end
FileUtils.cp("config.ru", other.path + "/config.ru")
tmp = Tempfile.new('unicorn.config')
tmp.syswrite <<EOF
working_directory '#@tmpdir'
listen '#@addr:#@port'
EOF
pid = xfork { redirect_test_io { exec($unicorn_bin, "-c#{tmp.path}") } }
wait_workers_ready("test_stderr.#{pid}.log", 1)
results = hit(["http://#@addr:#@port/"])
assert_equal @tmpdir, results.first
File.truncate("test_stderr.#{pid}.log", 0)
tmp.sysseek(0)
tmp.truncate(0)
tmp.syswrite <<EOF
working_directory '#{other.path}'
listen '#@addr:#@port'
EOF
Process.kill(:HUP, pid)
wait_workers_ready("test_stderr.#{pid}.log", 1)
results = hit(["http://#@addr:#@port/"])
assert_equal other.path, results.first
Process.kill(:QUIT, pid)
ensure
FileUtils.rmtree(other.path)
end
def test_working_directory_controls_relative_paths
other = Tempfile.new('unicorn.wd')
File.unlink(other.path)
Dir.mkdir(other.path)
File.open("config.ru", "wb") do |fp|
fp.syswrite WORKING_DIRECTORY_CHECK_RU
end
FileUtils.cp("config.ru", other.path + "/config.ru")
system('mkfifo', "#{other.path}/fifo")
tmp = Tempfile.new('unicorn.config')
tmp.syswrite <<EOF
pid "pid_file_here"
stderr_path "stderr_log_here"
stdout_path "stdout_log_here"
working_directory '#{other.path}'
listen '#@addr:#@port'
after_fork do |server, worker|
File.open("fifo", "wb").close
end
EOF
pid = xfork { redirect_test_io { exec($unicorn_bin, "-c#{tmp.path}") } }
begin
fifo = File.open("#{other.path}/fifo", "rb")
rescue Errno::EINTR
# OpenBSD raises Errno::EINTR when opening
return if RUBY_PLATFORM =~ /openbsd/
end
fifo.close
assert ! File.exist?("stderr_log_here")
assert ! File.exist?("stdout_log_here")
assert ! File.exist?("pid_file_here")
assert ! File.exist?("#@tmpdir/stderr_log_here")
assert ! File.exist?("#@tmpdir/stdout_log_here")
assert ! File.exist?("#@tmpdir/pid_file_here")
assert File.exist?("#{other.path}/pid_file_here")
assert_equal "#{pid}\n", File.read("#{other.path}/pid_file_here")
assert File.exist?("#{other.path}/stderr_log_here")
assert File.exist?("#{other.path}/stdout_log_here")
wait_master_ready("#{other.path}/stderr_log_here")
Process.kill(:QUIT, pid)
ensure
FileUtils.rmtree(other.path)
end
def test_exit_signals
%w(INT TERM QUIT).each do |sig|
File.open("config.ru", "wb") { |fp| fp.syswrite(HI) }
pid = xfork { redirect_test_io { exec($unicorn_bin, "-l#@addr:#@port") } }
wait_master_ready("test_stderr.#{pid}.log")
wait_workers_ready("test_stderr.#{pid}.log", 1)
Process.kill(sig, pid)
pid, status = Process.waitpid2(pid)
reaped = File.readlines("test_stderr.#{pid}.log").grep(/reaped/)
assert_equal 1, reaped.size
assert status.exited?
end
end
def test_basic
File.open("config.ru", "wb") { |fp| fp.syswrite(HI) }
pid = fork do
redirect_test_io { exec($unicorn_bin, "-l", "#{@addr}:#{@port}") }
end
results = retry_hit(["http://#{@addr}:#{@port}/"])
assert_equal String, results[0].class
assert_shutdown(pid)
end
def test_rack_env_unset
File.open("config.ru", "wb") { |fp| fp.syswrite(SHOW_RACK_ENV) }
pid = fork { redirect_test_io { exec($unicorn_bin, "-l#@addr:#@port") } }
results = retry_hit(["http://#{@addr}:#{@port}/"])
assert_equal "development", results.first
assert_shutdown(pid)
end
def test_rack_env_cli_set
File.open("config.ru", "wb") { |fp| fp.syswrite(SHOW_RACK_ENV) }
pid = fork {
redirect_test_io { exec($unicorn_bin, "-l#@addr:#@port", "-Easdf") }
}
results = retry_hit(["http://#{@addr}:#{@port}/"])
assert_equal "asdf", results.first
assert_shutdown(pid)
end
def test_rack_env_ENV_set
File.open("config.ru", "wb") { |fp| fp.syswrite(SHOW_RACK_ENV) }
pid = fork {
ENV["RACK_ENV"] = "foobar"
redirect_test_io { exec($unicorn_bin, "-l#@addr:#@port") }
}
results = retry_hit(["http://#{@addr}:#{@port}/"])
assert_equal "foobar", results.first
assert_shutdown(pid)
end
def test_rack_env_cli_override_ENV
File.open("config.ru", "wb") { |fp| fp.syswrite(SHOW_RACK_ENV) }
pid = fork {
ENV["RACK_ENV"] = "foobar"
redirect_test_io { exec($unicorn_bin, "-l#@addr:#@port", "-Easdf") }
}
results = retry_hit(["http://#{@addr}:#{@port}/"])
assert_equal "asdf", results.first
assert_shutdown(pid)
end
def test_ttin_ttou
File.open("config.ru", "wb") { |fp| fp.syswrite(HI) }
pid = fork { redirect_test_io { exec($unicorn_bin, "-l#@addr:#@port") } }
log = "test_stderr.#{pid}.log"
wait_master_ready(log)
[ 2, 3].each { |i|
Process.kill(:TTIN, pid)
wait_workers_ready(log, i)
}
File.truncate(log, 0)
reaped = nil
[ 2, 1, 0].each { |i|
Process.kill(:TTOU, pid)
DEFAULT_TRIES.times {
sleep DEFAULT_RES
reaped = File.readlines(log).grep(/reaped.*\s*worker=#{i}$/)
break if reaped.size == 1
}
assert_equal 1, reaped.size
}
end
def test_help
redirect_test_io do
assert(system($unicorn_bin, "-h"), "help text returns true")
end
assert_equal 0, File.stat("test_stderr.#$$.log").size
assert_not_equal 0, File.stat("test_stdout.#$$.log").size
lines = File.readlines("test_stdout.#$$.log")
# Be considerate of the on-call technician working from their
# mobile phone or netbook on a slow connection :)
assert lines.size <= 24, "help height fits in an ANSI terminal window"
lines.each do |line|
line.chomp!
assert line.size <= 80, "help width fits in an ANSI terminal window"
end
end
def test_broken_reexec_config
File.open("config.ru", "wb") { |fp| fp.syswrite(HI) }
pid_file = "#{@tmpdir}/test.pid"
old_file = "#{pid_file}.oldbin"
ucfg = Tempfile.new('unicorn_test_config')
ucfg.syswrite("listen %(#@addr:#@port)\n")
ucfg.syswrite("pid %(#{pid_file})\n")
ucfg.syswrite("logger Logger.new(%(#{@tmpdir}/log))\n")
pid = xfork do
redirect_test_io do
exec($unicorn_bin, "-D", "-l#{@addr}:#{@port}", "-c#{ucfg.path}")
end
end
results = retry_hit(["http://#{@addr}:#{@port}/"])
assert_equal String, results[0].class
wait_for_file(pid_file)
Process.waitpid(pid)
Process.kill(:USR2, File.read(pid_file).to_i)
wait_for_file(old_file)
wait_for_file(pid_file)
old_pid = File.read(old_file).to_i
Process.kill(:QUIT, old_pid)
wait_for_death(old_pid)
ucfg.syswrite("timeout %(#{pid_file})\n") # introduce a bug
current_pid = File.read(pid_file).to_i
Process.kill(:USR2, current_pid)
# wait for pid_file to restore itself
tries = DEFAULT_TRIES
begin
while current_pid != File.read(pid_file).to_i
sleep(DEFAULT_RES) and (tries -= 1) > 0
end
rescue Errno::ENOENT
(sleep(DEFAULT_RES) and (tries -= 1) > 0) and retry
end
assert_equal current_pid, File.read(pid_file).to_i
tries = DEFAULT_TRIES
while File.exist?(old_file)
(sleep(DEFAULT_RES) and (tries -= 1) > 0) or break
end
assert ! File.exist?(old_file), "oldbin=#{old_file} gone"
port2 = unused_port(@addr)
# fix the bug
ucfg.sysseek(0)
ucfg.truncate(0)
ucfg.syswrite("listen %(#@addr:#@port)\n")
ucfg.syswrite("listen %(#@addr:#{port2})\n")
ucfg.syswrite("pid %(#{pid_file})\n")
Process.kill(:USR2, current_pid)
wait_for_file(old_file)
wait_for_file(pid_file)
new_pid = File.read(pid_file).to_i
assert_not_equal current_pid, new_pid
assert_equal current_pid, File.read(old_file).to_i
results = retry_hit(["http://#{@addr}:#{@port}/",
"http://#{@addr}:#{port2}/"])
assert_equal String, results[0].class
assert_equal String, results[1].class
Process.kill(:QUIT, current_pid)
Process.kill(:QUIT, new_pid)
end
def test_broken_reexec_ru
File.open("config.ru", "wb") { |fp| fp.syswrite(HI) }
pid_file = "#{@tmpdir}/test.pid"
old_file = "#{pid_file}.oldbin"
ucfg = Tempfile.new('unicorn_test_config')
ucfg.syswrite("pid %(#{pid_file})\n")
ucfg.syswrite("logger Logger.new(%(#{@tmpdir}/log))\n")
pid = xfork do
redirect_test_io do
exec($unicorn_bin, "-D", "-l#{@addr}:#{@port}", "-c#{ucfg.path}")
end
end
results = retry_hit(["http://#{@addr}:#{@port}/"])
assert_equal String, results[0].class
wait_for_file(pid_file)
Process.waitpid(pid)
Process.kill(:USR2, File.read(pid_file).to_i)
wait_for_file(old_file)
wait_for_file(pid_file)
old_pid = File.read(old_file).to_i
Process.kill(:QUIT, old_pid)
wait_for_death(old_pid)
File.unlink("config.ru") # break reloading
current_pid = File.read(pid_file).to_i
Process.kill(:USR2, current_pid)
# wait for pid_file to restore itself
tries = DEFAULT_TRIES
begin
while current_pid != File.read(pid_file).to_i
sleep(DEFAULT_RES) and (tries -= 1) > 0
end
rescue Errno::ENOENT
(sleep(DEFAULT_RES) and (tries -= 1) > 0) and retry
end
tries = DEFAULT_TRIES
while File.exist?(old_file)
(sleep(DEFAULT_RES) and (tries -= 1) > 0) or break
end
assert ! File.exist?(old_file), "oldbin=#{old_file} gone"
assert_equal current_pid, File.read(pid_file).to_i
# fix the bug
File.open("config.ru", "wb") { |fp| fp.syswrite(HI) }
Process.kill(:USR2, current_pid)
wait_for_file(old_file)
wait_for_file(pid_file)
new_pid = File.read(pid_file).to_i
assert_not_equal current_pid, new_pid
assert_equal current_pid, File.read(old_file).to_i
results = retry_hit(["http://#{@addr}:#{@port}/"])
assert_equal String, results[0].class
Process.kill(:QUIT, current_pid)
Process.kill(:QUIT, new_pid)
end
def test_unicorn_config_listener_swap
port_cli = unused_port
File.open("config.ru", "wb") { |fp| fp.syswrite(HI) }
ucfg = Tempfile.new('unicorn_test_config')
ucfg.syswrite("listen '#@addr:#@port'\n")
pid = xfork do
redirect_test_io do
exec($unicorn_bin, "-c#{ucfg.path}", "-l#@addr:#{port_cli}")
end
end
results = retry_hit(["http://#@addr:#{port_cli}/"])
assert_equal String, results[0].class
results = retry_hit(["http://#@addr:#@port/"])
assert_equal String, results[0].class
port2 = unused_port(@addr)
ucfg.sysseek(0)
ucfg.truncate(0)
ucfg.syswrite("listen '#@addr:#{port2}'\n")
Process.kill(:HUP, pid)
results = retry_hit(["http://#@addr:#{port2}/"])
assert_equal String, results[0].class
results = retry_hit(["http://#@addr:#{port_cli}/"])
assert_equal String, results[0].class
reuse = TCPServer.new(@addr, @port)
reuse.close
assert_shutdown(pid)
end
def test_unicorn_config_listen_with_options
File.open("config.ru", "wb") { |fp| fp.syswrite(HI) }
ucfg = Tempfile.new('unicorn_test_config')
ucfg.syswrite("listen '#{@addr}:#{@port}', :backlog => 512,\n")
ucfg.syswrite(" :rcvbuf => 4096,\n")
ucfg.syswrite(" :sndbuf => 4096\n")
pid = xfork do
redirect_test_io { exec($unicorn_bin, "-c#{ucfg.path}") }
end
results = retry_hit(["http://#{@addr}:#{@port}/"])
assert_equal String, results[0].class
assert_shutdown(pid)
end
def test_unicorn_config_per_worker_listen
port2 = unused_port
pid_spit = 'use Rack::ContentLength;' \
'run proc { |e| [ 200, {"content-type"=>"text/plain"}, ["#$$\\n"] ] }'
File.open("config.ru", "wb") { |fp| fp.syswrite(pid_spit) }
tmp = Tempfile.new('test.socket')
File.unlink(tmp.path)
ucfg = Tempfile.new('unicorn_test_config')
ucfg.syswrite("listen '#@addr:#@port'\n")
ucfg.syswrite("after_fork { |s,w|\n")
ucfg.syswrite(" s.listen('#{tmp.path}', :backlog => 5, :sndbuf => 8192)\n")
ucfg.syswrite(" s.listen('#@addr:#{port2}', :rcvbuf => 8192)\n")
ucfg.syswrite("\n}\n")
pid = xfork do
redirect_test_io { exec($unicorn_bin, "-c#{ucfg.path}") }
end
results = retry_hit(["http://#{@addr}:#{@port}/"])
assert_equal String, results[0].class
worker_pid = results[0].to_i
assert_not_equal pid, worker_pid
s = unix_socket(tmp.path)
s.syswrite("GET / HTTP/1.0\r\n\r\n")
results = ''
loop { results << s.sysread(4096) } rescue nil
s.close
assert_equal worker_pid, results.split(/\r\n/).last.to_i
results = hit(["http://#@addr:#{port2}/"])
assert_equal String, results[0].class
assert_equal worker_pid, results[0].to_i
assert_shutdown(pid)
end
def test_unicorn_config_listen_augments_cli
port2 = unused_port(@addr)
File.open("config.ru", "wb") { |fp| fp.syswrite(HI) }
ucfg = Tempfile.new('unicorn_test_config')
ucfg.syswrite("listen '#{@addr}:#{@port}'\n")
pid = xfork do
redirect_test_io do
exec($unicorn_bin, "-c#{ucfg.path}", "-l#{@addr}:#{port2}")
end
end
uris = [@port, port2].map { |i| "http://#{@addr}:#{i}/" }
results = retry_hit(uris)
assert_equal results.size, uris.size
assert_equal String, results[0].class
assert_equal String, results[1].class
assert_shutdown(pid)
end
def test_weird_config_settings
File.open("config.ru", "wb") { |fp| fp.syswrite(HI) }
ucfg = Tempfile.new('unicorn_test_config')
proc_total = HEAVY_WORKERS + 1 # + 1 for master
ucfg.syswrite(HEAVY_CFG)
pid = xfork do
redirect_test_io do
exec($unicorn_bin, "-c#{ucfg.path}", "-l#{@addr}:#{@port}")
end
end
results = retry_hit(["http://#{@addr}:#{@port}/"])
assert_equal String, results[0].class
wait_master_ready(COMMON_TMP.path)
wait_workers_ready(COMMON_TMP.path, HEAVY_WORKERS)
bf = File.readlines(COMMON_TMP.path).grep(/\bbefore_fork: worker=/)
assert_equal HEAVY_WORKERS, bf.size
rotate = Tempfile.new('unicorn_rotate')
File.rename(COMMON_TMP.path, rotate.path)
Process.kill(:USR1, pid)
wait_for_file(COMMON_TMP.path)
assert File.exist?(COMMON_TMP.path), "#{COMMON_TMP.path} exists"
# USR1 should've been passed to all workers
tries = DEFAULT_TRIES
log = File.readlines(rotate.path)
while (tries -= 1) > 0 &&
log.grep(/reopening logs\.\.\./).size < proc_total
sleep DEFAULT_RES
log = File.readlines(rotate.path)
end
assert_equal proc_total, log.grep(/reopening logs\.\.\./).size
assert_equal 0, log.grep(/done reopening logs/).size
tries = DEFAULT_TRIES
log = File.readlines(COMMON_TMP.path)
while (tries -= 1) > 0 && log.grep(/done reopening logs/).size < proc_total
sleep DEFAULT_RES
log = File.readlines(COMMON_TMP.path)
end
assert_equal proc_total, log.grep(/done reopening logs/).size
assert_equal 0, log.grep(/reopening logs\.\.\./).size
Process.kill(:QUIT, pid)
pid, status = Process.waitpid2(pid)
assert status.success?, "exited successfully"
end
def test_read_embedded_cli_switches
File.open("config.ru", "wb") do |fp|
fp.syswrite("#\\ -p #{@port} -o #{@addr}\n")
fp.syswrite(HI)
end
pid = fork { redirect_test_io { exec($unicorn_bin) } }
results = retry_hit(["http://#{@addr}:#{@port}/"])
assert_equal String, results[0].class
assert_shutdown(pid)
end
def test_config_ru_alt_path
config_path = "#{@tmpdir}/foo.ru"
File.open(config_path, "wb") { |fp| fp.syswrite(HI) }
pid = fork do
redirect_test_io do
Dir.chdir("/")
exec($unicorn_bin, "-l#{@addr}:#{@port}", config_path)
end
end
results = retry_hit(["http://#{@addr}:#{@port}/"])
assert_equal String, results[0].class
assert_shutdown(pid)
end
def test_load_module
libdir = "#{@tmpdir}/lib"
FileUtils.mkpath([ libdir ])
config_path = "#{libdir}/hello.rb"
File.open(config_path, "wb") { |fp| fp.syswrite(HELLO) }
pid = fork do
redirect_test_io do
Dir.chdir("/")
exec($unicorn_bin, "-l#{@addr}:#{@port}", config_path)
end
end
results = retry_hit(["http://#{@addr}:#{@port}/"])
assert_equal String, results[0].class
assert_shutdown(pid)
end
def test_reexec
File.open("config.ru", "wb") { |fp| fp.syswrite(HI) }
pid_file = "#{@tmpdir}/test.pid"
pid = fork do
redirect_test_io do
exec($unicorn_bin, "-l#{@addr}:#{@port}", "-P#{pid_file}")
end
end
reexec_basic_test(pid, pid_file)
end
def test_reexec_alt_config
config_file = "#{@tmpdir}/foo.ru"
File.open(config_file, "wb") { |fp| fp.syswrite(HI) }
pid_file = "#{@tmpdir}/test.pid"
pid = fork do
redirect_test_io do
exec($unicorn_bin, "-l#{@addr}:#{@port}", "-P#{pid_file}", config_file)
end
end
reexec_basic_test(pid, pid_file)
end
def test_socket_unlinked_restore
results = nil
sock = Tempfile.new('unicorn_test_sock')
sock_path = sock.path
@sockets << sock_path
sock.close!
ucfg = Tempfile.new('unicorn_test_config')
ucfg.syswrite("listen \"#{sock_path}\"\n")
File.open("config.ru", "wb") { |fp| fp.syswrite(HI) }
pid = xfork { redirect_test_io { exec($unicorn_bin, "-c#{ucfg.path}") } }
wait_for_file(sock_path)
assert File.socket?(sock_path)
sock = unix_socket(sock_path)
sock.syswrite("GET / HTTP/1.0\r\n\r\n")
results = sock.sysread(4096)
assert_equal String, results.class
File.unlink(sock_path)
Process.kill(:HUP, pid)
wait_for_file(sock_path)
assert File.socket?(sock_path)
sock = unix_socket(sock_path)
sock.syswrite("GET / HTTP/1.0\r\n\r\n")
results = sock.sysread(4096)
assert_equal String, results.class
end
def test_unicorn_config_file
pid_file = "#{@tmpdir}/test.pid"
sock = Tempfile.new('unicorn_test_sock')
sock_path = sock.path
sock.close!
@sockets << sock_path
log = Tempfile.new('unicorn_test_log')
ucfg = Tempfile.new('unicorn_test_config')
ucfg.syswrite("listen \"#{sock_path}\"\n")
ucfg.syswrite("pid \"#{pid_file}\"\n")
ucfg.syswrite("logger Logger.new('#{log.path}')\n")
ucfg.close
File.open("config.ru", "wb") { |fp| fp.syswrite(HI) }
pid = xfork do
redirect_test_io do
exec($unicorn_bin, "-l#{@addr}:#{@port}",
"-P#{pid_file}", "-c#{ucfg.path}")
end
end
results = retry_hit(["http://#{@addr}:#{@port}/"])
assert_equal String, results[0].class
wait_master_ready(log.path)
assert File.exist?(pid_file), "pid_file created"
assert_equal pid, File.read(pid_file).to_i
assert File.socket?(sock_path), "socket created"
sock = unix_socket(sock_path)
sock.syswrite("GET / HTTP/1.0\r\n\r\n")
results = sock.sysread(4096)
assert_equal String, results.class
# try reloading the config
sock = Tempfile.new('new_test_sock')
new_sock_path = sock.path
@sockets << new_sock_path
sock.close!
new_log = Tempfile.new('unicorn_test_log')
new_log.sync = true
assert_equal 0, new_log.size
ucfg = File.open(ucfg.path, "wb")
ucfg.syswrite("listen \"#{sock_path}\"\n")
ucfg.syswrite("listen \"#{new_sock_path}\"\n")
ucfg.syswrite("pid \"#{pid_file}\"\n")
ucfg.syswrite("logger Logger.new('#{new_log.path}')\n")
ucfg.close
Process.kill(:HUP, pid)
wait_for_file(new_sock_path)
assert File.socket?(new_sock_path), "socket exists"
@sockets.each do |path|
sock = unix_socket(path)
sock.syswrite("GET / HTTP/1.0\r\n\r\n")
results = sock.sysread(4096)
assert_equal String, results.class
end
assert_not_equal 0, new_log.size
reexec_usr2_quit_test(pid, pid_file)
end
def test_daemonize_reexec
pid_file = "#{@tmpdir}/test.pid"
log = Tempfile.new('unicorn_test_log')
ucfg = Tempfile.new('unicorn_test_config')
ucfg.syswrite("pid \"#{pid_file}\"\n")
ucfg.syswrite("logger Logger.new('#{log.path}')\n")
ucfg.close
File.open("config.ru", "wb") { |fp| fp.syswrite(HI) }
pid = xfork do
redirect_test_io do
exec($unicorn_bin, "-D", "-l#{@addr}:#{@port}", "-c#{ucfg.path}")
end
end
results = retry_hit(["http://#{@addr}:#{@port}/"])
assert_equal String, results[0].class
wait_for_file(pid_file)
new_pid = File.read(pid_file).to_i
assert_not_equal pid, new_pid
pid, status = Process.waitpid2(pid)
assert status.success?, "original process exited successfully"
Process.kill(0, new_pid)
reexec_usr2_quit_test(new_pid, pid_file)
end
def test_daemonize_redirect_fail
pid_file = "#{@tmpdir}/test.pid"
ucfg = Tempfile.new('unicorn_test_config')
ucfg.syswrite("pid #{pid_file}\"\n")
err = Tempfile.new('stderr')
out = Tempfile.new('stdout ')
File.open("config.ru", "wb") { |fp| fp.syswrite(HI) }
pid = xfork do
$stderr.reopen(err.path, "a")
$stdout.reopen(out.path, "a")
exec($unicorn_bin, "-D", "-l#{@addr}:#{@port}", "-c#{ucfg.path}")
end
pid, status = Process.waitpid2(pid)
assert ! status.success?, "original process exited successfully"
sleep 1 # can't waitpid on a daemonized process :<
assert err.stat.size > 0
end
def test_reexec_fd_leak
unless RUBY_PLATFORM =~ /linux/ # Solaris may work, too, but I forget...
warn "FD leak test only works on Linux at the moment"
return
end
pid_file = "#{@tmpdir}/test.pid"
log = Tempfile.new('unicorn_test_log')
log.sync = true
ucfg = Tempfile.new('unicorn_test_config')
ucfg.syswrite("pid \"#{pid_file}\"\n")
ucfg.syswrite("logger Logger.new('#{log.path}')\n")
ucfg.syswrite("stderr_path '#{log.path}'\n")
ucfg.syswrite("stdout_path '#{log.path}'\n")
ucfg.close
File.open("config.ru", "wb") { |fp| fp.syswrite(HI) }
pid = xfork do
redirect_test_io do
exec($unicorn_bin, "-D", "-l#{@addr}:#{@port}", "-c#{ucfg.path}")
end
end
wait_master_ready(log.path)
wait_workers_ready(log.path, 1)
File.truncate(log.path, 0)
wait_for_file(pid_file)
orig_pid = pid = File.read(pid_file).to_i
orig_fds = `ls -l /proc/#{pid}/fd`.split(/\n/)
assert $?.success?
expect_size = orig_fds.size
Process.kill(:USR2, pid)
wait_for_file("#{pid_file}.oldbin")
Process.kill(:QUIT, pid)
wait_for_death(pid)
wait_master_ready(log.path)
wait_workers_ready(log.path, 1)
File.truncate(log.path, 0)
wait_for_file(pid_file)
pid = File.read(pid_file).to_i
assert_not_equal orig_pid, pid
curr_fds = `ls -l /proc/#{pid}/fd`.split(/\n/)
assert $?.success?
# we could've inherited descriptors the first time around
assert expect_size >= curr_fds.size, curr_fds.inspect
expect_size = curr_fds.size
Process.kill(:USR2, pid)
wait_for_file("#{pid_file}.oldbin")
Process.kill(:QUIT, pid)
wait_for_death(pid)
wait_master_ready(log.path)
wait_workers_ready(log.path, 1)
File.truncate(log.path, 0)
wait_for_file(pid_file)
pid = File.read(pid_file).to_i
curr_fds = `ls -l /proc/#{pid}/fd`.split(/\n/)
assert $?.success?
assert_equal expect_size, curr_fds.size, curr_fds.inspect
Process.kill(:QUIT, pid)
wait_for_death(pid)
end
def hup_test_common(preload, check_client=false)
File.open("config.ru", "wb") { |fp| fp.syswrite(HI.gsub("HI", '#$$')) }
pid_file = Tempfile.new('pid')
ucfg = Tempfile.new('unicorn_test_config')
ucfg.syswrite("listen '#@addr:#@port'\n")
ucfg.syswrite("pid '#{pid_file.path}'\n")
ucfg.syswrite("preload_app true\n") if preload
ucfg.syswrite("check_client_connection true\n") if check_client
ucfg.syswrite("stderr_path 'test_stderr.#$$.log'\n")
ucfg.syswrite("stdout_path 'test_stdout.#$$.log'\n")
pid = xfork {
redirect_test_io { exec($unicorn_bin, "-D", "-c", ucfg.path) }
}
_, status = Process.waitpid2(pid)
assert status.success?
wait_master_ready("test_stderr.#$$.log")
wait_workers_ready("test_stderr.#$$.log", 1)
uri = URI.parse("http://#@addr:#@port/")
pids = Tempfile.new('worker_pids')
r, w = IO.pipe
hitter = fork {
r.close
bodies = Hash.new(0)
at_exit { pids.syswrite(bodies.inspect) }
trap(:TERM) { exit(0) }
nr = 0
loop {
rv = Net::HTTP.get(uri)
pid = rv.to_i
exit!(1) if pid <= 0
bodies[pid] += 1
nr += 1
if nr == 1
w.syswrite('1')
elsif bodies.size > 1
w.syswrite('2')
sleep
end
}
}
w.close
assert_equal '1', r.read(1)
daemon_pid = File.read(pid_file.path).to_i
assert daemon_pid > 0
Process.kill(:HUP, daemon_pid)
assert_equal '2', r.read(1)
Process.kill(:TERM, hitter)
_, hitter_status = Process.waitpid2(hitter)
assert(hitter_status.success?,
"invalid: #{hitter_status.inspect} #{File.read(pids.path)}" \
"#{File.read("test_stderr.#$$.log")}")
pids.sysseek(0)
pids = eval(pids.read)
assert_kind_of(Hash, pids)
assert_equal 2, pids.size
pids.keys.each { |x|
assert_kind_of(Integer, x)
assert x > 0
assert pids[x] > 0
}
Process.kill(:QUIT, daemon_pid)
wait_for_death(daemon_pid)
end
def test_preload_app_hup
hup_test_common(true)
end
def test_hup
hup_test_common(false)
end
def test_check_client_hup
hup_test_common(false, true)
end
def test_default_listen_hup_holds_listener
default_listen_lock do
res, pid_path = default_listen_setup
daemon_pid = File.read(pid_path).to_i
Process.kill(:HUP, daemon_pid)
wait_workers_ready("test_stderr.#$$.log", 1)
res2 = hit(["http://#{Unicorn::Const::DEFAULT_LISTEN}/"])
assert_match %r{\d+}, res2.first
assert res2.first != res.first
Process.kill(:QUIT, daemon_pid)
wait_for_death(daemon_pid)
end
end
def test_default_listen_upgrade_holds_listener
default_listen_lock do
res, pid_path = default_listen_setup
daemon_pid = File.read(pid_path).to_i
Process.kill(:USR2, daemon_pid)
wait_for_file("#{pid_path}.oldbin")
wait_for_file(pid_path)
Process.kill(:QUIT, daemon_pid)
wait_for_death(daemon_pid)
daemon_pid = File.read(pid_path).to_i
wait_workers_ready("test_stderr.#$$.log", 1)
File.truncate("test_stderr.#$$.log", 0)
res2 = hit(["http://#{Unicorn::Const::DEFAULT_LISTEN}/"])
assert_match %r{\d+}, res2.first
assert res2.first != res.first
Process.kill(:HUP, daemon_pid)
wait_workers_ready("test_stderr.#$$.log", 1)
File.truncate("test_stderr.#$$.log", 0)
res3 = hit(["http://#{Unicorn::Const::DEFAULT_LISTEN}/"])
assert res2.first != res3.first
Process.kill(:QUIT, daemon_pid)
wait_for_death(daemon_pid)
end
end
def default_listen_setup
File.open("config.ru", "wb") { |fp| fp.syswrite(HI.gsub("HI", '#$$')) }
pid_path = (tmp = Tempfile.new('pid')).path
tmp.close!
ucfg = Tempfile.new('unicorn_test_config')
ucfg.syswrite("pid '#{pid_path}'\n")
ucfg.syswrite("stderr_path 'test_stderr.#$$.log'\n")
ucfg.syswrite("stdout_path 'test_stdout.#$$.log'\n")
pid = xfork {
redirect_test_io { exec($unicorn_bin, "-D", "-c", ucfg.path) }
}
_, status = Process.waitpid2(pid)
assert status.success?
wait_master_ready("test_stderr.#$$.log")
wait_workers_ready("test_stderr.#$$.log", 1)
File.truncate("test_stderr.#$$.log", 0)
res = hit(["http://#{Unicorn::Const::DEFAULT_LISTEN}/"])
assert_match %r{\d+}, res.first
[ res, pid_path ]
end
# we need to flock() something to prevent these tests from running
def default_listen_lock(&block)
fp = File.open(FLOCK_PATH, "rb")
begin
fp.flock(File::LOCK_EX)
begin
TCPServer.new(Unicorn::Const::DEFAULT_HOST,
Unicorn::Const::DEFAULT_PORT).close
rescue Errno::EADDRINUSE, Errno::EACCES
warn "can't bind to #{Unicorn::Const::DEFAULT_LISTEN}"
return false
end
# unused_port should never take this, but we may run an environment
# where tests are being run against older unicorns...
lock_path = "#{Dir::tmpdir}/unicorn_test." \
"#{Unicorn::Const::DEFAULT_LISTEN}.lock"
begin
File.open(lock_path, File::WRONLY|File::CREAT|File::EXCL, 0600)
yield
rescue Errno::EEXIST
lock_path = nil
return false
ensure
File.unlink(lock_path) if lock_path
end
ensure
fp.flock(File::LOCK_UN)
end
end
end if do_test
|