a08209ffa3
Currently, we do not cap amount of tests returned to frontend, thus in some extreme cases we can see a MBs of data stored in Redis. This adds an upper limit of 100 tests per-suite. We will continue showing the total counters correctly, but we will limit amount of tests that will be presented.
70 lines
3.2 KiB
Ruby
70 lines
3.2 KiB
Ruby
require 'spec_helper'
|
|
|
|
describe TestReportsComparerEntity do
|
|
include TestReportsHelper
|
|
|
|
let(:entity) { described_class.new(comparer) }
|
|
let(:comparer) { Gitlab::Ci::Reports::TestReportsComparer.new(base_reports, head_reports) }
|
|
let(:base_reports) { Gitlab::Ci::Reports::TestReports.new }
|
|
let(:head_reports) { Gitlab::Ci::Reports::TestReports.new }
|
|
|
|
describe '#as_json' do
|
|
subject { entity.as_json }
|
|
|
|
context 'when head and base reports include two test suites' do
|
|
context 'when the status of head report is success' do
|
|
before do
|
|
base_reports.get_suite('rspec').add_test_case(create_test_case_rspec_success)
|
|
base_reports.get_suite('junit').add_test_case(create_test_case_java_success)
|
|
head_reports.get_suite('rspec').add_test_case(create_test_case_rspec_success)
|
|
head_reports.get_suite('junit').add_test_case(create_test_case_java_success)
|
|
end
|
|
|
|
it 'contains correct compared test reports details' do
|
|
expect(subject[:status]).to eq('success')
|
|
expect(subject[:summary]).to include(total: 2, resolved: 0, failed: 0)
|
|
expect(subject[:suites].first[:name]).to eq('rspec')
|
|
expect(subject[:suites].first[:status]).to eq('success')
|
|
expect(subject[:suites].second[:name]).to eq('junit')
|
|
expect(subject[:suites].second[:status]).to eq('success')
|
|
end
|
|
end
|
|
|
|
context 'when the status of head report is failed' do
|
|
before do
|
|
base_reports.get_suite('rspec').add_test_case(create_test_case_rspec_success)
|
|
base_reports.get_suite('junit').add_test_case(create_test_case_java_success)
|
|
head_reports.get_suite('rspec').add_test_case(create_test_case_rspec_success)
|
|
head_reports.get_suite('junit').add_test_case(create_test_case_java_failed)
|
|
end
|
|
|
|
it 'contains correct compared test reports details' do
|
|
expect(subject[:status]).to eq('failed')
|
|
expect(subject[:summary]).to include(total: 2, resolved: 0, failed: 1)
|
|
expect(subject[:suites].first[:name]).to eq('rspec')
|
|
expect(subject[:suites].first[:status]).to eq('success')
|
|
expect(subject[:suites].second[:name]).to eq('junit')
|
|
expect(subject[:suites].second[:status]).to eq('failed')
|
|
end
|
|
end
|
|
|
|
context 'when the status of head report is resolved' do
|
|
before do
|
|
base_reports.get_suite('rspec').add_test_case(create_test_case_rspec_success)
|
|
base_reports.get_suite('junit').add_test_case(create_test_case_java_failed)
|
|
head_reports.get_suite('rspec').add_test_case(create_test_case_rspec_success)
|
|
head_reports.get_suite('junit').add_test_case(create_test_case_java_success)
|
|
end
|
|
|
|
it 'contains correct compared test reports details' do
|
|
expect(subject[:status]).to eq('success')
|
|
expect(subject[:summary]).to include(total: 2, resolved: 1, failed: 0)
|
|
expect(subject[:suites].first[:name]).to eq('rspec')
|
|
expect(subject[:suites].first[:status]).to eq('success')
|
|
expect(subject[:suites].second[:name]).to eq('junit')
|
|
expect(subject[:suites].second[:status]).to eq('success')
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|