64 lines
1.7 KiB
Ruby
64 lines
1.7 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
module Projects
|
|
module Pipelines
|
|
class TestsController < Projects::Pipelines::ApplicationController
|
|
urgency :low, [:show, :summary]
|
|
|
|
before_action :authorize_read_build!
|
|
before_action :builds, only: [:show]
|
|
before_action :validate_test_reports!, only: [:show]
|
|
|
|
feature_category :code_testing
|
|
|
|
def summary
|
|
respond_to do |format|
|
|
format.json do
|
|
render json: TestReportSummarySerializer
|
|
.new(project: project, current_user: @current_user)
|
|
.represent(pipeline.test_report_summary)
|
|
end
|
|
end
|
|
end
|
|
|
|
def show
|
|
respond_to do |format|
|
|
format.json do
|
|
render json: TestSuiteSerializer
|
|
.new(project: project, current_user: @current_user)
|
|
.represent(test_suite, details: true)
|
|
end
|
|
end
|
|
end
|
|
|
|
private
|
|
|
|
def validate_test_reports!
|
|
unless pipeline.has_test_reports?
|
|
render json: { errors: 'Test report artifacts not found' }, status: :not_found
|
|
end
|
|
end
|
|
|
|
def builds
|
|
@builds ||= pipeline.latest_builds.id_in(build_ids).presence || render_404
|
|
end
|
|
|
|
def build_ids
|
|
return [] unless params[:build_ids]
|
|
|
|
params[:build_ids].split(",")
|
|
end
|
|
|
|
def test_suite
|
|
suite = builds.sum do |build|
|
|
test_report = build.collect_test_reports!(Gitlab::Ci::Reports::TestReport.new)
|
|
test_report.get_suite(build.test_suite_name)
|
|
end
|
|
|
|
Gitlab::Ci::Reports::TestFailureHistory.new(suite.failed.values, project).load!
|
|
|
|
suite
|
|
end
|
|
end
|
|
end
|
|
end
|