require "spec_helper" require "parallel_tests/cucumber/runner" describe ParallelTests::Cucumber do test_tests_in_groups(ParallelTests::Cucumber::Runner, 'features', ".feature") describe :run_tests do before do ParallelTests.stub!(:bundler_enabled?).and_return false File.stub!(:file?).with('.bundle/environment.rb').and_return false File.stub!(:file?).with('script/cucumber').and_return true end def call(*args) ParallelTests::Cucumber::Runner.run_tests(*args) end def should_run_with(regex) ParallelTests::Test::Runner.should_receive(:execute_command).with{|a,b,c,d| a =~ regex} end it "allows to override runner executable via PARALLEL_TESTS_EXECUTABLE" do ENV['PARALLEL_TESTS_EXECUTABLE'] = 'script/custom_rspec' should_run_with /script\/custom_rspec/ call(['xxx'],1,22,{}) ENV.delete('PARALLEL_TESTS_EXECUTABLE') end it "runs bundle exec cucumber when on bundler 0.9" do ParallelTests.stub!(:bundler_enabled?).and_return true should_run_with %r{bundle exec cucumber} call(['xxx'],1,22,{}) end it "runs script/cucumber when script/cucumber is found" do should_run_with %r{script/cucumber} call(['xxx'],1,22,{}) end it "runs cucumber by default" do File.stub!(:file?).with('script/cucumber').and_return false should_run_with %r{^cucumber} call(['xxx'],1,22,{}) end it "uses options passed in" do should_run_with %r{script/cucumber .* -p default} call(['xxx'],1,22,:test_options => '-p default') end it "sanitizes dangerous file names" do should_run_with %r{xx\\ x} call(['xx x'],1,22,{}) end context "with parallel profile in config/cucumber.yml" do before do file_contents = 'parallel: -f progress' Dir.stub(:glob).and_return ['config/cucumber.yml'] File.stub(:read).with('config/cucumber.yml').and_return file_contents end it "uses parallel profile" do should_run_with %r{script/cucumber .* foo bar --profile parallel xxx} call(['xxx'],1,22, :test_options => 'foo bar') end it "uses given profile via --profile" do should_run_with %r{script/cucumber .* --profile foo xxx$} call(['xxx'],1,22, :test_options => '--profile foo') end it "uses given profile via -p" do should_run_with %r{script/cucumber .* -p foo xxx$} call(['xxx'],1,22, :test_options => '-p foo') end end it "does not use parallel profile if config/cucumber.yml does not contain it" do file_contents = 'blob: -f progress' should_run_with %r{script/cucumber .* foo bar} Dir.should_receive(:glob).and_return ['config/cucumber.yml'] File.should_receive(:read).with('config/cucumber.yml').and_return file_contents call(['xxx'],1,22,:test_options => 'foo bar') end it "does not use the parallel profile if config/cucumber.yml does not exist" do should_run_with %r{script/cucumber} # TODO this test looks useless... Dir.should_receive(:glob).and_return [] call(['xxx'],1,22,{}) end end describe :line_is_result? do it "should match lines with only one scenario" do line = "1 scenario (1 failed)" ParallelTests::Cucumber::Runner.line_is_result?(line).should be_true end it "should match lines with multiple scenarios" do line = "2 scenarios (1 failed, 1 passed)" ParallelTests::Cucumber::Runner.line_is_result?(line).should be_true end it "should match lines with only one step" do line = "1 step (1 failed)" ParallelTests::Cucumber::Runner.line_is_result?(line).should be_true end it "should match lines with multiple steps" do line = "5 steps (1 failed, 4 passed)" ParallelTests::Cucumber::Runner.line_is_result?(line).should be_true end it "should not match other lines" do line = ' And I should have "2" emails # features/step_definitions/user_steps.rb:25' ParallelTests::Cucumber::Runner.line_is_result?(line).should be_false end end describe :find_results do it "finds multiple results in test output" do output = <