require 'spec_helper' describe ParallelTests::Test::Runner do test_tests_in_groups(ParallelTests::Test::Runner, 'test', '_test.rb') describe :run_tests do def call(*args) ParallelTests::Test::Runner.run_tests(*args) end it "uses TEST_ENV_NUMBER=blank when called for process 0" do ParallelTests::Test::Runner.should_receive(:open).with{|x,y|x=~/TEST_ENV_NUMBER= /}.and_return mocked_process call(['xxx'],0,{}) end it "uses TEST_ENV_NUMBER=2 when called for process 1" do ParallelTests::Test::Runner.should_receive(:open).with{|x,y| x=~/TEST_ENV_NUMBER=2/}.and_return mocked_process call(['xxx'],1,{}) end it "uses options" do ParallelTests::Test::Runner.should_receive(:open).with{|x,y| x=~ %r{ruby -Itest .* -- -v}}.and_return mocked_process call(['xxx'],1,:test_options => '-v') end it "returns the output" do io = open('spec/spec_helper.rb') $stdout.stub!(:print) ParallelTests::Test::Runner.should_receive(:open).and_return io call(['xxx'],1,{})[:stdout].should =~ /\$LOAD_PATH << File/ end end describe :test_in_groups do def call(*args) ParallelTests::Test::Runner.tests_in_groups(*args) end it "does not sort when passed false do_sort option" do ParallelTests::Test::Runner.should_not_receive(:smallest_first) call [], 1, :no_sort => true end it "does sort when not passed do_sort option" do ParallelTests::Test::Runner.stub!(:tests_with_runtime).and_return([]) ParallelTests::Grouper.should_receive(:largest_first).and_return([]) call [], 1 end it "groups by single_process pattern and then via size" do ParallelTests::Test::Runner.should_receive(:with_runtime_info).and_return([['aaa',5],['aaa2',5],['bbb',2],['ccc',1],['ddd',1]]) result = call [], 3, :single_process => [/^a.a/] result.should == [["aaa", "aaa2"], ["bbb"], ["ccc", "ddd"]] end end describe :find_results do def call(*args) ParallelTests::Test::Runner.find_results(*args) end it "finds multiple results in test output" do output = < '^a/(y|z)_test').sort.should == [ "#{root}/a/y_test.rb", "#{root}/a/z_test.rb", ] ensure `rm -rf #{root}` end end it "finds nothing if I pass nothing" do call(nil).should == [] end it "finds nothing if I pass nothing (empty array)" do call([]).should == [] end it "keeps invalid files" do call(['baz']).should == ['baz'] end it "discards duplicates" do call(['baz','baz']).should == ['baz'] end end describe :summarize_results do def call(*args) ParallelTests::Test::Runner.summarize_results(*args) end it "adds results" do call(['1 foo 3 bar','2 foo 5 bar']).should == '8 bars, 3 foos' end it "adds results with braces" do call(['1 foo(s) 3 bar(s)','2 foo 5 bar']).should == '8 bars, 3 foos' end it "adds same results with plurals" do call(['1 foo 3 bar','2 foos 5 bar']).should == '8 bars, 3 foos' end it "adds non-similar results" do call(['1 xxx 2 yyy','1 xxx 2 zzz']).should == '2 xxxs, 2 yyys, 2 zzzs' end it "does not pluralize 1" do call(['1 xxx 2 yyy']).should == '1 xxx, 2 yyys' end end end