class ParallelTests::Gherkin::Runner

Public Class Methods

cucumber_opts(given) click to toggle source
# File lib/parallel_tests/gherkin/runner.rb, line 69
def cucumber_opts(given)
  if given =~ (/--profile/) || given =~ (/(^|\s)-p /)
    given
  else
    [given, profile_from_config].compact.join(" ")
  end
end
default_test_folder() click to toggle source
# File lib/parallel_tests/gherkin/runner.rb, line 37
def default_test_folder
  'features'
end
determine_executable() click to toggle source
# File lib/parallel_tests/gherkin/runner.rb, line 101
def determine_executable
  if File.exist?("bin/#{name}")
    ParallelTests.with_ruby_binary("bin/#{name}")
  elsif ParallelTests.bundler_enabled?
    "bundle exec #{name}"
  elsif File.file?("script/#{name}")
    ParallelTests.with_ruby_binary("script/#{name}")
  else
    name.to_s
  end
end
line_is_result?(line) click to toggle source
# File lib/parallel_tests/gherkin/runner.rb, line 45
def line_is_result?(line)
  line =~ /^\d+ (steps?|scenarios?)/
end
profile_from_config() click to toggle source
# File lib/parallel_tests/gherkin/runner.rb, line 77
def profile_from_config
  # copied from https://github.com/cucumber/cucumber/blob/master/lib/cucumber/cli/profile_loader.rb#L85
  config = Dir.glob("{,.config/,config/}#{name}{.yml,.yaml}").first
  "--profile parallel" if config && File.read(config) =~ /^parallel:/
end
run_tests(test_files, process_number, num_processes, options) click to toggle source
# File lib/parallel_tests/gherkin/runner.rb, line 9
def run_tests(test_files, process_number, num_processes, options)
  combined_scenarios = test_files

  if options[:group_by] == :scenarios
    grouped = test_files.map { |t| t.split(':') }.group_by(&:first)
    combined_scenarios = grouped.map do |file, files_and_lines|
      "#{file}:#{files_and_lines.map(&:last).join(':')}"
    end
  end

  sanitized_test_files = combined_scenarios.map { |val| WINDOWS ? "\"#{val}\"" : Shellwords.escape(val) }

  options[:env] ||= {}
  options[:env] = options[:env].merge({ 'AUTOTEST' => '1' }) if $stdout.tty?

  cmd = [
    executable,
    (runtime_logging if File.directory?(File.dirname(runtime_log))),
    *sanitized_test_files,
    cucumber_opts(options[:test_options])
  ].compact.reject(&:empty?).join(' ')
  execute_command(cmd, process_number, num_processes, options)
end
runtime_log() click to toggle source
# File lib/parallel_tests/gherkin/runner.rb, line 97
def runtime_log
  "tmp/parallel_runtime_#{name}.log"
end
runtime_logging() click to toggle source
# File lib/parallel_tests/gherkin/runner.rb, line 93
def runtime_logging
  "--format ParallelTests::Gherkin::RuntimeLogger --out #{runtime_log}"
end
summarize_results(results) click to toggle source

cucumber has 2 result lines per test run, that cannot be added 1 scenario (1 failed) 1 step (1 failed)

# File lib/parallel_tests/gherkin/runner.rb, line 52
def summarize_results(results)
  sort_order = ['scenario', 'step', 'failed', 'flaky', 'undefined', 'skipped', 'pending', 'passed']

  ['scenario', 'step'].map do |group|
    group_results = results.grep(/^\d+ #{group}/)
    next if group_results.empty?

    sums = sum_up_results(group_results)
    sums = sums.sort_by { |word, _| sort_order.index(word) || 999 }
    sums.map! do |word, number|
      plural = "s" if (word == group) && (number != 1)
      "#{number} #{word}#{plural}"
    end
    "#{sums[0]} (#{sums[1..-1].join(", ")})"
  end.compact.join("\n")
end
test_file_name() click to toggle source
# File lib/parallel_tests/gherkin/runner.rb, line 33
def test_file_name
  @test_file_name || 'feature'
end
test_suffix() click to toggle source
# File lib/parallel_tests/gherkin/runner.rb, line 41
def test_suffix
  /\.feature$/
end
tests_in_groups(tests, num_groups, options = {}) click to toggle source
# File lib/parallel_tests/gherkin/runner.rb, line 83
def tests_in_groups(tests, num_groups, options = {})
  @test_file_name = "scenario" if options[:group_by] == :scenarios
  method = "by_#{options[:group_by]}"
  if Grouper.respond_to?(method)
    Grouper.send(method, find_tests(tests, options), num_groups, options)
  else
    super
  end
end