2018-03-04 10:09:32 -05:00
|
|
|
require_relative '../../spec_helper'
|
2017-05-07 08:04:49 -04:00
|
|
|
|
|
|
|
describe "Process.waitall" do
|
|
|
|
before :all do
|
|
|
|
begin
|
|
|
|
Process.waitall
|
|
|
|
rescue NotImplementedError
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2018-07-04 23:02:33 -04:00
|
|
|
it "returns an empty array when there are no children" do
|
|
|
|
Process.waitall.should == []
|
|
|
|
end
|
2017-05-07 08:04:49 -04:00
|
|
|
|
2018-07-04 23:02:33 -04:00
|
|
|
it "takes no arguments" do
|
2019-07-27 06:40:09 -04:00
|
|
|
-> { Process.waitall(0) }.should raise_error(ArgumentError)
|
2018-07-04 23:02:33 -04:00
|
|
|
end
|
2018-06-23 04:29:20 -04:00
|
|
|
|
2018-07-04 23:02:33 -04:00
|
|
|
platform_is_not :windows do
|
|
|
|
it "waits for all children" do
|
|
|
|
pids = []
|
|
|
|
pids << Process.fork { Process.exit! 2 }
|
|
|
|
pids << Process.fork { Process.exit! 1 }
|
|
|
|
pids << Process.fork { Process.exit! 0 }
|
|
|
|
Process.waitall
|
|
|
|
pids.each { |pid|
|
2019-07-27 06:40:09 -04:00
|
|
|
-> { Process.kill(0, pid) }.should raise_error(Errno::ESRCH)
|
2018-07-04 23:02:33 -04:00
|
|
|
}
|
|
|
|
end
|
2018-07-04 11:08:56 -04:00
|
|
|
|
2018-07-04 23:02:33 -04:00
|
|
|
it "returns an array of pid/status pairs" do
|
|
|
|
pids = []
|
|
|
|
pids << Process.fork { Process.exit! 2 }
|
|
|
|
pids << Process.fork { Process.exit! 1 }
|
|
|
|
pids << Process.fork { Process.exit! 0 }
|
|
|
|
a = Process.waitall
|
|
|
|
a.should be_kind_of(Array)
|
|
|
|
a.size.should == 3
|
|
|
|
pids.each { |pid|
|
|
|
|
pid_status = a.assoc(pid)
|
|
|
|
pid_status.should be_kind_of(Array)
|
|
|
|
pid_status.size.should == 2
|
|
|
|
pid_status.first.should == pid
|
|
|
|
pid_status.last.should be_kind_of(Process::Status)
|
|
|
|
}
|
2017-05-07 08:04:49 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|