我正在使用parallel_tests框架并行运行一堆rspec测试。在我对测试进行并行化之前,我将测试结果输出到一个html文件中,如下所示:
rspec --format html --out tmp/index.html <pattern>
现在看起来更像是这样:
parallel:spec --format html --out tmp/index.html <pattern>
但是,现在测试并行运行,每个测试都生成自己的html文件,并且因为它们都使用相同的路径(tmp / index.html),所以最后一个测试将覆盖输出html文件和我只留下了一个测试的报告。如何生成包含所有测试的聚合结果的单个html文件(这将是理想的)?如果那是不可能的,我怎样才能将每个测试输出到它自己的输出html文件中,这样它们就不会全部相互覆盖?
我尝试使用parallel_test项目中的内置记录器(ParallelTests :: RSpec :: RuntimeLogger,ParallelTests :: RSpec :: SummaryLogger和ParallelTests :: RSpec :: FailuresLogger),但这些只是生成简单的文本文件而不是像rspec这样漂亮的html文件。我也看到了这个问题here,但我没有使用黄瓜,所以这并不适用于我。我尝试将--format html --out tmp/report<%= ENV['TEST_ENV_NUMBER'] %>.html
放在我的.rspec_parallel
文件中,但这没有任何效果。
答案 0 :(得分:4)
我必须编写自己的格式化程序,这是代码以防其他人遇到此问题:
require 'fileutils'
RSpec::Support.require_rspec_core "formatters"
RSpec::Support.require_rspec_core "formatters/helpers"
RSpec::Support.require_rspec_core "formatters/base_text_formatter"
RSpec::Support.require_rspec_core "formatters/html_printer"
RSpec::Support.require_rspec_core "formatters/html_formatter"
# Overrides functionality from base class to generate separate html files for each test suite
# https://github.com/rspec/rspec-core/blob/master/lib/rspec/core/formatters/html_formatter.rb
class ParallelFormatter < RSpec::Core::Formatters::HtmlFormatter
RSpec::Core::Formatters.register self, :start, :example_group_started, :start_dump,
:example_started, :example_passed, :example_failed,
:example_pending, :dump_summary
# TEST_ENV_NUMBER will be empty for the first one, then start at 2 (continues up by 1 from there)
def initialize(param=nil)
output_dir = ENV['OUTPUT_DIR']
FileUtils.mkpath(output_dir) unless File.directory?(output_dir)
raise "Invalid output directory: #{output_dir}" unless File.directory?(output_dir)
id = (ENV['TEST_ENV_NUMBER'].empty?) ? 1 : ENV['TEST_ENV_NUMBER'] # defaults to 1
output_file = File.join(output_dir, "result#{id}.html")
opened_file = File.open(output_file, 'w+')
super(opened_file)
end
end