Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2023-02-01 15:10:48 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2023-02-01 15:10:48 +0300
commita21091270d45530468f8ac2f4f926fe1b9840b67 (patch)
treea641a030521f16e320f1d3559a49956f485c217f /spec/scripts
parent8700fc108e2c269a4d73530d60662a6aaff14381 (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'spec/scripts')
-rw-r--r--spec/scripts/failed_tests_spec.rb200
-rw-r--r--spec/scripts/pipeline_test_report_builder_spec.rb191
2 files changed, 183 insertions, 208 deletions
diff --git a/spec/scripts/failed_tests_spec.rb b/spec/scripts/failed_tests_spec.rb
index b99fd991c55..ce0ec66cdb6 100644
--- a/spec/scripts/failed_tests_spec.rb
+++ b/spec/scripts/failed_tests_spec.rb
@@ -5,121 +5,113 @@ require_relative '../../scripts/failed_tests'
RSpec.describe FailedTests do
let(:report_file) { 'spec/fixtures/scripts/test_report.json' }
- let(:output_directory) { 'tmp/previous_test_results' }
- let(:rspec_pg_regex) { /rspec .+ pg12( .+)?/ }
- let(:rspec_ee_pg_regex) { /rspec-ee .+ pg12( .+)?/ }
-
- subject { described_class.new(previous_tests_report_path: report_file, output_directory: output_directory, rspec_pg_regex: rspec_pg_regex, rspec_ee_pg_regex: rspec_ee_pg_regex) }
-
- describe '#output_failed_test_files' do
- it 'writes the file for the suite' do
- expect(File).to receive(:open).with(File.join(output_directory, "rspec_failed_files.txt"), 'w').once
-
- subject.output_failed_test_files
- end
- end
-
- describe '#failed_files_for_suite_collection' do
- let(:failure_path) { 'path/to/fail_file_spec.rb' }
- let(:other_failure_path) { 'path/to/fail_file_spec_2.rb' }
- let(:file_contents_as_json) do
- {
- 'suites' => [
- {
- 'failed_count' => 1,
- 'name' => 'rspec unit pg12 10/12',
- 'test_cases' => [
- {
- 'status' => 'failed',
- 'file' => failure_path
- }
- ]
- },
- {
- 'failed_count' => 1,
- 'name' => 'rspec-ee unit pg12',
- 'test_cases' => [
- {
- 'status' => 'failed',
- 'file' => failure_path
- }
- ]
- },
- {
- 'failed_count' => 1,
- 'name' => 'rspec unit pg13 10/12',
- 'test_cases' => [
- {
- 'status' => 'failed',
- 'file' => other_failure_path
- }
- ]
- }
- ]
- }
- end
-
- before do
- allow(subject).to receive(:file_contents_as_json).and_return(file_contents_as_json)
- end
-
- it 'returns a list of failed file paths for suite collection' do
- result = subject.failed_files_for_suite_collection
-
- expect(result[:rspec].to_a).to match_array(failure_path)
- expect(result[:rspec_ee].to_a).to match_array(failure_path)
- end
+ let(:options) { described_class::DEFAULT_OPTIONS.merge(previous_tests_report_path: report_file) }
+ let(:failure_path) { 'path/to/fail_file_spec.rb' }
+ let(:other_failure_path) { 'path/to/fail_file_spec_2.rb' }
+ let(:file_contents_as_json) do
+ {
+ 'suites' => [
+ {
+ 'failed_count' => 1,
+ 'name' => 'rspec unit pg12 10/12',
+ 'test_cases' => [
+ {
+ 'status' => 'failed',
+ 'file' => failure_path
+ }
+ ]
+ },
+ {
+ 'failed_count' => 1,
+ 'name' => 'rspec-ee unit pg12',
+ 'test_cases' => [
+ {
+ 'status' => 'failed',
+ 'file' => failure_path
+ }
+ ]
+ },
+ {
+ 'failed_count' => 1,
+ 'name' => 'rspec unit pg13 10/12',
+ 'test_cases' => [
+ {
+ 'status' => 'failed',
+ 'file' => other_failure_path
+ }
+ ]
+ }
+ ]
+ }
end
- describe 'empty report' do
- let(:file_content) do
- '{}'
- end
-
- before do
- allow(subject).to receive(:file_contents).and_return(file_content)
- end
-
- it 'does not fail for output files' do
- subject.output_failed_test_files
- end
-
- it 'returns empty results for suite failures' do
- result = subject.failed_files_for_suite_collection
-
- expect(result.values.flatten).to be_empty
- end
- end
-
- describe 'invalid report' do
- let(:file_content) do
- ''
- end
-
- before do
- allow(subject).to receive(:file_contents).and_return(file_content)
- end
-
- it 'does not fail for output files' do
- subject.output_failed_test_files
- end
-
- it 'returns empty results for suite failures' do
- result = subject.failed_files_for_suite_collection
-
- expect(result.values.flatten).to be_empty
+ subject { described_class.new(options) }
+
+ describe '#output_failed_tests' do
+ context 'with a valid report file' do
+ before do
+ allow(subject).to receive(:file_contents_as_json).and_return(file_contents_as_json)
+ end
+
+ it 'writes the file for the suite' do
+ expect(File).to receive(:open)
+ .with(File.join(described_class::DEFAULT_OPTIONS[:output_directory], "rspec_failed_tests.txt"), 'w').once
+ expect(File).to receive(:open)
+ .with(File.join(described_class::DEFAULT_OPTIONS[:output_directory], "rspec_ee_failed_tests.txt"), 'w').once
+
+ subject.output_failed_tests
+ end
+
+ context 'when given a valid format' do
+ subject { described_class.new(options.merge(format: :json)) }
+
+ it 'writes the file for the suite' do
+ expect(File).to receive(:open)
+ .with(File.join(described_class::DEFAULT_OPTIONS[:output_directory], "rspec_failed_tests.json"), 'w').once
+ expect(File).to receive(:open)
+ .with(File.join(described_class::DEFAULT_OPTIONS[:output_directory], "rspec_ee_failed_tests.json"), 'w')
+ .once
+
+ subject.output_failed_tests
+ end
+ end
+
+ context 'when given an invalid format' do
+ subject { described_class.new(options.merge(format: :foo)) }
+
+ it 'raises an exception' do
+ expect { subject.output_failed_tests }
+ .to raise_error '[FailedTests] Unsupported format `foo` (allowed formats: `oneline` and `json`)!'
+ end
+ end
+
+ describe 'empty report' do
+ let(:file_contents_as_json) do
+ {}
+ end
+
+ it 'does not fail for output files' do
+ subject.output_failed_tests
+ end
+
+ it 'returns empty results for suite failures' do
+ result = subject.failed_cases_for_suite_collection
+
+ expect(result.values.flatten).to be_empty
+ end
+ end
end
end
describe 'missing report file' do
- let(:report_file) { 'unknownfile.json' }
+ subject { described_class.new(options.merge(previous_tests_report_path: 'unknownfile.json')) }
it 'does not fail for output files' do
- subject.output_failed_test_files
+ subject.output_failed_tests
end
it 'returns empty results for suite failures' do
- result = subject.failed_files_for_suite_collection
+ result = subject.failed_cases_for_suite_collection
expect(result.values.flatten).to be_empty
end
diff --git a/spec/scripts/pipeline_test_report_builder_spec.rb b/spec/scripts/pipeline_test_report_builder_spec.rb
index b51b4dc4887..e7529eb0d41 100644
--- a/spec/scripts/pipeline_test_report_builder_spec.rb
+++ b/spec/scripts/pipeline_test_report_builder_spec.rb
@@ -3,12 +3,11 @@
require 'fast_spec_helper'
require_relative '../../scripts/pipeline_test_report_builder'
-RSpec.describe PipelineTestReportBuilder do
+RSpec.describe PipelineTestReportBuilder, feature_category: :tooling do
let(:report_file) { 'spec/fixtures/scripts/test_report.json' }
let(:output_file_path) { 'tmp/previous_test_results/output_file.json' }
-
- subject do
- described_class.new(
+ let(:options) do
+ described_class::DEFAULT_OPTIONS.merge(
target_project: 'gitlab-org/gitlab',
mr_id: '999',
instance_base_url: 'https://gitlab.com',
@@ -16,25 +15,27 @@ RSpec.describe PipelineTestReportBuilder do
)
end
- let(:failed_pipeline_url) { 'pipeline2_url' }
+ let(:previous_pipeline_url) { '/pipelines/previous' }
- let(:failed_pipeline) do
+ let(:previous_pipeline) do
{
'status' => 'failed',
- 'created_at' => (DateTime.now - 5).to_s,
- 'web_url' => failed_pipeline_url
+ 'id' => 1,
+ 'web_url' => previous_pipeline_url
}
end
- let(:current_pipeline) do
+ let(:latest_pipeline_url) { '/pipelines/latest' }
+
+ let(:latest_pipeline) do
{
'status' => 'running',
- 'created_at' => DateTime.now.to_s,
- 'web_url' => 'pipeline1_url'
+ 'id' => 3,
+ 'web_url' => latest_pipeline_url
}
end
- let(:mr_pipelines) { [current_pipeline, failed_pipeline] }
+ let(:mr_pipelines) { [latest_pipeline, previous_pipeline] }
let(:failed_build_id) { 9999 }
@@ -68,6 +69,8 @@ RSpec.describe PipelineTestReportBuilder do
}
end
+ subject { described_class.new(options) }
+
before do
allow(subject).to receive(:pipelines_for_mr).and_return(mr_pipelines)
allow(subject).to receive(:failed_builds_for_pipeline).and_return(failed_builds_for_pipeline)
@@ -78,7 +81,7 @@ RSpec.describe PipelineTestReportBuilder do
let(:fork_pipeline) do
{
'status' => 'failed',
- 'created_at' => (DateTime.now - 5).to_s,
+ 'id' => 2,
'web_url' => fork_pipeline_url
}
end
@@ -88,7 +91,7 @@ RSpec.describe PipelineTestReportBuilder do
end
context 'pipeline in a fork project' do
- let(:mr_pipelines) { [current_pipeline, fork_pipeline] }
+ let(:mr_pipelines) { [latest_pipeline, fork_pipeline] }
it 'returns fork pipeline' do
expect(subject.previous_pipeline).to eq(fork_pipeline)
@@ -97,125 +100,105 @@ RSpec.describe PipelineTestReportBuilder do
context 'pipeline in target project' do
it 'returns failed pipeline' do
- expect(subject.previous_pipeline).to eq(failed_pipeline)
+ expect(subject.previous_pipeline).to eq(previous_pipeline)
end
end
end
- describe '#test_report_for_latest_pipeline' do
- let(:failed_build_uri) { "#{failed_pipeline_url}/tests/suite.json?build_ids[]=#{failed_build_id}" }
-
- before do
- allow(subject).to receive(:fetch).with(failed_build_uri).and_return(failed_builds_for_pipeline)
- end
-
- it 'fetches builds from pipeline related to MR' do
- expected = { "suites" => [failed_builds_for_pipeline] }.to_json
- expect(subject.test_report_for_latest_pipeline).to eq(expected)
- end
-
- context 'canonical pipeline' do
- context 'no previous pipeline' do
- let(:mr_pipelines) { [] }
+ describe '#test_report_for_pipeline' do
+ context 'for previous pipeline' do
+ let(:failed_build_uri) { "#{previous_pipeline_url}/tests/suite.json?build_ids[]=#{failed_build_id}" }
- it 'returns empty hash' do
- expect(subject.test_report_for_latest_pipeline).to eq("{}")
- end
+ before do
+ allow(subject).to receive(:fetch).with(failed_build_uri).and_return(test_report_for_build)
end
- context 'first pipeline scenario' do
- let(:mr_pipelines) do
- [
- {
- 'status' => 'running',
- 'created_at' => DateTime.now.to_s
- }
- ]
- end
-
- it 'returns empty hash' do
- expect(subject.test_report_for_latest_pipeline).to eq("{}")
- end
+ it 'fetches builds from pipeline related to MR' do
+ expected = { "suites" => [test_report_for_build.merge('job_url' => "/jobs/#{failed_build_id}")] }.to_json
+ expect(subject.test_report_for_pipeline).to eq(expected)
end
- context 'no previous failed pipeline' do
- let(:mr_pipelines) do
- [
- {
- 'status' => 'running',
- 'created_at' => DateTime.now.to_s
- },
- {
- 'status' => 'success',
- 'created_at' => (DateTime.now - 5).to_s
- }
- ]
- end
+ context 'canonical pipeline' do
+ context 'no previous pipeline' do
+ let(:mr_pipelines) { [] }
- it 'returns empty hash' do
- expect(subject.test_report_for_latest_pipeline).to eq("{}")
+ it 'returns empty hash' do
+ expect(subject.test_report_for_pipeline).to eq("{}")
+ end
end
- end
- context 'no failed test builds' do
- let(:failed_builds_for_pipeline) do
- [
- {
- 'id' => 9999,
- 'stage' => 'prepare'
- }
- ]
- end
+ context 'no failed test builds' do
+ let(:failed_builds_for_pipeline) do
+ [
+ {
+ 'id' => 9999,
+ 'stage' => 'prepare'
+ }
+ ]
+ end
- it 'returns empty hash' do
- expect(subject.test_report_for_latest_pipeline).to eq("{}")
+ it 'returns a hash with an empty "suites" array' do
+ expect(subject.test_report_for_pipeline).to eq({ suites: [] }.to_json)
+ end
end
- end
- context 'failed pipeline and failed test builds' do
- before do
- allow(subject).to receive(:fetch).with(failed_build_uri).and_return(test_report_for_build)
- end
+ context 'failed pipeline and failed test builds' do
+ before do
+ allow(subject).to receive(:fetch).with(failed_build_uri).and_return(test_report_for_build)
+ end
- it 'returns populated test list for suites' do
- actual = subject.test_report_for_latest_pipeline
- expected = {
- 'suites' => [test_report_for_build]
- }.to_json
+ it 'returns populated test list for suites' do
+ actual = subject.test_report_for_pipeline
+ expected = {
+ 'suites' => [test_report_for_build]
+ }.to_json
- expect(actual).to eq(expected)
+ expect(actual).to eq(expected)
+ end
end
- end
- context 'when receiving a server error' do
- let(:response) { instance_double('Net::HTTPResponse') }
- let(:error) { Net::HTTPServerException.new('server error', response) }
- let(:test_report_for_latest_pipeline) { subject.test_report_for_latest_pipeline }
+ context 'when receiving a server error' do
+ let(:response) { instance_double('Net::HTTPResponse') }
+ let(:error) { Net::HTTPServerException.new('server error', response) }
+ let(:test_report_for_pipeline) { subject.test_report_for_pipeline }
- before do
- allow(response).to receive(:code).and_return(response_code)
- allow(subject).to receive(:fetch).with(failed_build_uri).and_raise(error)
- end
+ before do
+ allow(response).to receive(:code).and_return(response_code)
+ allow(subject).to receive(:fetch).with(failed_build_uri).and_raise(error)
+ end
- context 'when response code is 404' do
- let(:response_code) { 404 }
+ context 'when response code is 404' do
+ let(:response_code) { 404 }
- it 'continues without the missing reports' do
- expected = { 'suites' => [] }.to_json
+ it 'continues without the missing reports' do
+ expected = { suites: [] }.to_json
- expect { test_report_for_latest_pipeline }.not_to raise_error
- expect(test_report_for_latest_pipeline).to eq(expected)
+ expect { test_report_for_pipeline }.not_to raise_error
+ expect(test_report_for_pipeline).to eq(expected)
+ end
end
- end
- context 'when response code is unexpected' do
- let(:response_code) { 500 }
+ context 'when response code is unexpected' do
+ let(:response_code) { 500 }
- it 'raises HTTPServerException' do
- expect { test_report_for_latest_pipeline }.to raise_error(error)
+ it 'raises HTTPServerException' do
+ expect { test_report_for_pipeline }.to raise_error(error)
+ end
end
end
end
end
+
+ context 'for latest pipeline' do
+ let(:failed_build_uri) { "#{latest_pipeline_url}/tests/suite.json?build_ids[]=#{failed_build_id}" }
+
+ subject { described_class.new(options.merge(pipeline_index: :latest)) }
+
+ it 'fetches builds from pipeline related to MR' do
+ expect(subject).to receive(:fetch).with(failed_build_uri).and_return(test_report_for_build)
+
+ subject.test_report_for_pipeline
+ end
+ end
end
end