2019-12-04 20:38:33 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2018-03-17 18:26:18 +05:30
|
|
|
require 'spec_helper'
|
|
|
|
|
|
|
|
describe RspecFlaky::Config, :aggregate_failures do
|
|
|
|
before do
|
|
|
|
# Stub these env variables otherwise specs don't behave the same on the CI
|
|
|
|
stub_env('FLAKY_RSPEC_GENERATE_REPORT', nil)
|
|
|
|
stub_env('SUITE_FLAKY_RSPEC_REPORT_PATH', nil)
|
|
|
|
stub_env('FLAKY_RSPEC_REPORT_PATH', nil)
|
|
|
|
stub_env('NEW_FLAKY_RSPEC_REPORT_PATH', nil)
|
|
|
|
end
|
|
|
|
|
|
|
|
describe '.generate_report?' do
|
|
|
|
context "when ENV['FLAKY_RSPEC_GENERATE_REPORT'] is not set" do
|
|
|
|
it 'returns false' do
|
|
|
|
expect(described_class).not_to be_generate_report
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2018-10-15 14:42:47 +05:30
|
|
|
context "when ENV['FLAKY_RSPEC_GENERATE_REPORT'] is set" do
|
|
|
|
using RSpec::Parameterized::TableSyntax
|
2018-03-17 18:26:18 +05:30
|
|
|
|
2018-10-15 14:42:47 +05:30
|
|
|
where(:env_value, :result) do
|
|
|
|
'1' | true
|
|
|
|
'true' | true
|
|
|
|
'foo' | false
|
|
|
|
'0' | false
|
|
|
|
'false' | false
|
2018-03-17 18:26:18 +05:30
|
|
|
end
|
|
|
|
|
2018-10-15 14:42:47 +05:30
|
|
|
with_them do
|
|
|
|
before do
|
|
|
|
stub_env('FLAKY_RSPEC_GENERATE_REPORT', env_value)
|
|
|
|
end
|
2018-03-17 18:26:18 +05:30
|
|
|
|
2018-10-15 14:42:47 +05:30
|
|
|
it 'returns false' do
|
|
|
|
expect(described_class.generate_report?).to be(result)
|
|
|
|
end
|
2018-03-17 18:26:18 +05:30
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe '.suite_flaky_examples_report_path' do
|
|
|
|
context "when ENV['SUITE_FLAKY_RSPEC_REPORT_PATH'] is not set" do
|
|
|
|
it 'returns the default path' do
|
|
|
|
expect(Rails.root).to receive(:join).with('rspec_flaky/suite-report.json')
|
|
|
|
.and_return('root/rspec_flaky/suite-report.json')
|
|
|
|
|
|
|
|
expect(described_class.suite_flaky_examples_report_path).to eq('root/rspec_flaky/suite-report.json')
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context "when ENV['SUITE_FLAKY_RSPEC_REPORT_PATH'] is set" do
|
|
|
|
before do
|
|
|
|
stub_env('SUITE_FLAKY_RSPEC_REPORT_PATH', 'foo/suite-report.json')
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns the value of the env variable' do
|
|
|
|
expect(described_class.suite_flaky_examples_report_path).to eq('foo/suite-report.json')
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe '.flaky_examples_report_path' do
|
|
|
|
context "when ENV['FLAKY_RSPEC_REPORT_PATH'] is not set" do
|
|
|
|
it 'returns the default path' do
|
|
|
|
expect(Rails.root).to receive(:join).with('rspec_flaky/report.json')
|
|
|
|
.and_return('root/rspec_flaky/report.json')
|
|
|
|
|
|
|
|
expect(described_class.flaky_examples_report_path).to eq('root/rspec_flaky/report.json')
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context "when ENV['FLAKY_RSPEC_REPORT_PATH'] is set" do
|
|
|
|
before do
|
|
|
|
stub_env('FLAKY_RSPEC_REPORT_PATH', 'foo/report.json')
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns the value of the env variable' do
|
|
|
|
expect(described_class.flaky_examples_report_path).to eq('foo/report.json')
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe '.new_flaky_examples_report_path' do
|
|
|
|
context "when ENV['NEW_FLAKY_RSPEC_REPORT_PATH'] is not set" do
|
|
|
|
it 'returns the default path' do
|
|
|
|
expect(Rails.root).to receive(:join).with('rspec_flaky/new-report.json')
|
|
|
|
.and_return('root/rspec_flaky/new-report.json')
|
|
|
|
|
|
|
|
expect(described_class.new_flaky_examples_report_path).to eq('root/rspec_flaky/new-report.json')
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context "when ENV['NEW_FLAKY_RSPEC_REPORT_PATH'] is set" do
|
|
|
|
before do
|
|
|
|
stub_env('NEW_FLAKY_RSPEC_REPORT_PATH', 'foo/new-report.json')
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns the value of the env variable' do
|
|
|
|
expect(described_class.new_flaky_examples_report_path).to eq('foo/new-report.json')
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|