Commit d16e12b3 authored by Anastasia McDonald's avatar Anastasia McDonald

Merge branch '332121-improve-test-failure-output' into 'master'

Improve test failure output

See merge request gitlab-org/gitlab!74138
parents 1b58bdd5 cb176f79
...@@ -62,6 +62,12 @@ module QA ...@@ -62,6 +62,12 @@ module QA
has_element? :job_log_content has_element? :job_log_content
end end
def has_status?(status, wait: 30)
wait_until(reload: false, max_duration: wait, sleep_interval: 1) do
status_badge == status
end
end
private private
def loaded?(wait: 60) def loaded?(wait: 60)
......
# frozen_string_literal: true # frozen_string_literal: true
module QA module QA
RSpec.describe 'Verify', :runner do RSpec.describe 'Verify', :smoke, :runner do
describe 'Pipeline creation and processing' do describe 'Pipeline creation and processing' do
let(:executor) { "qa-runner-#{Time.now.to_i}" } let(:executor) { "qa-runner-#{Time.now.to_i}" }
let(:max_wait) { 30 }
let(:project) do let(:project) do
Resource::Project.fabricate_via_api! do |project| Resource::Project.fabricate_via_api! do |project|
...@@ -21,11 +20,10 @@ module QA ...@@ -21,11 +20,10 @@ module QA
end end
after do after do
runner.remove_via_api! [runner, project].each(&:remove_via_api!)
end end
it 'users creates a pipeline which gets processed', testcase: 'https://gitlab.com/gitlab-org/quality/testcases/-/quality/test_cases/1601' do it 'users creates a pipeline which gets processed', testcase: 'https://gitlab.com/gitlab-org/quality/testcases/-/quality/test_cases/1601' do
# TODO: Convert back to :smoke once proved to be stable. Related issue: https://gitlab.com/gitlab-org/gitlab/-/issues/300909
Flow::Login.sign_in Flow::Login.sign_in
Resource::Repository::Commit.fabricate_via_api! do |commit| Resource::Repository::Commit.fabricate_via_api! do |commit|
...@@ -68,19 +66,21 @@ module QA ...@@ -68,19 +66,21 @@ module QA
Flow::Pipeline.visit_latest_pipeline Flow::Pipeline.visit_latest_pipeline
{ aggregate_failures do
'test-success': :passed, {
'test-failure': :failed, 'test-success': 'passed',
'test-tags-mismatch': :pending, 'test-failure': 'failed',
'test-artifacts': :passed 'test-tags-mismatch': 'pending',
}.each do |job, status| 'test-artifacts': 'passed'
Page::Project::Pipeline::Show.perform do |pipeline| }.each do |job, status|
pipeline.click_job(job) Page::Project::Pipeline::Show.perform do |pipeline|
end pipeline.click_job(job)
end
Page::Project::Job::Show.perform do |show| Page::Project::Job::Show.perform do |show|
expect(show).to public_send("be_#{status}") expect(show).to have_status(status), "Expected job status to be #{status} but got #{show.status_badge} instead."
show.click_element(:pipeline_path, Page::Project::Pipeline::Show) show.click_element(:pipeline_path, Page::Project::Pipeline::Show)
end
end end
end end
end end
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment