Skip to content
代码片段 群组 项目
未验证 提交 48f8afba 编辑于 作者: Laura Montemayor's avatar Laura Montemayor 提交者: GitLab
浏览文件

Replaces yamlErrorMessags with errorMessages in headerbadges

上级 aba20da6
No related branches found
No related tags found
无相关合并请求
...@@ -43,11 +43,14 @@ export default { ...@@ -43,11 +43,14 @@ export default {
failureReason() { failureReason() {
return this.pipeline.failureReason; return this.pipeline.failureReason;
}, },
hasPipelineErrorMessages() {
return this.pipeline?.errorMessages?.nodes?.length;
},
isAutoDevopsPipeline() { isAutoDevopsPipeline() {
return this.pipeline.configSource === AUTO_DEVOPS_SOURCE; return this.pipeline.configSource === AUTO_DEVOPS_SOURCE;
}, },
yamlErrorMessages() { yamlErrorMessage() {
return this.pipeline?.yamlErrorMessages || ''; return this.pipeline?.errorMessages.nodes[0].content || '';
}, },
triggeredByPath() { triggeredByPath() {
return this.pipeline?.triggeredByPath; return this.pipeline?.triggeredByPath;
...@@ -56,7 +59,7 @@ export default { ...@@ -56,7 +59,7 @@ export default {
return { return {
schedule: this.isScheduledPipeline, schedule: this.isScheduledPipeline,
trigger: this.pipeline.trigger, trigger: this.pipeline.trigger,
invalid: this.pipeline.yamlErrors, invalid: this.hasPipelineErrorMessages,
child: this.pipeline.child, child: this.pipeline.child,
latest: this.pipeline.latest, latest: this.pipeline.latest,
mergeTrainPipeline: this.isMergeTrainPipeline, mergeTrainPipeline: this.isMergeTrainPipeline,
...@@ -123,7 +126,7 @@ export default { ...@@ -123,7 +126,7 @@ export default {
> >
{{ s__('Pipelines|merge train') }} {{ s__('Pipelines|merge train') }}
</gl-badge> </gl-badge>
<gl-badge v-if="badges.invalid" v-gl-tooltip :title="yamlErrorMessages" variant="danger"> <gl-badge v-if="badges.invalid" v-gl-tooltip :title="yamlErrorMessage" variant="danger">
{{ s__('Pipelines|yaml invalid') }} {{ s__('Pipelines|yaml invalid') }}
</gl-badge> </gl-badge>
<gl-badge v-if="badges.failed" v-gl-tooltip :title="failureReason" variant="danger"> <gl-badge v-if="badges.failed" v-gl-tooltip :title="failureReason" variant="danger">
......
...@@ -19,6 +19,12 @@ query getPipelineHeaderData($fullPath: ID!, $iid: ID!) { ...@@ -19,6 +19,12 @@ query getPipelineHeaderData($fullPath: ID!, $iid: ID!) {
group group
text text
} }
errorMessages {
nodes {
id
content
}
}
createdAt createdAt
user { user {
id id
...@@ -55,8 +61,6 @@ query getPipelineHeaderData($fullPath: ID!, $iid: ID!) { ...@@ -55,8 +61,6 @@ query getPipelineHeaderData($fullPath: ID!, $iid: ID!) {
configSource configSource
failureReason failureReason
source source
yamlErrors
yamlErrorMessages
trigger trigger
...PipelineHeaderData ...PipelineHeaderData
} }
......
...@@ -62,10 +62,18 @@ ...@@ -62,10 +62,18 @@
factory :ci_pipeline do factory :ci_pipeline do
trait :invalid do trait :invalid do
status { :failed } status { :failed }
# TODO: This trait will be removed soon. Please use `invalid_config_error`. If an error message is necessary,
# use pipeline.add_error_message
# https://gitlab.com/gitlab-org/gitlab/-/issues/516915
yaml_errors { 'invalid YAML' } yaml_errors { 'invalid YAML' }
failure_reason { :config_error } failure_reason { :config_error }
end end
trait :invalid_config_error do
status { :failed }
failure_reason { :config_error }
end
trait :preparing do trait :preparing do
status { :preparing } status { :preparing }
end end
......
...@@ -1251,7 +1251,7 @@ ...@@ -1251,7 +1251,7 @@
let(:pipeline) do let(:pipeline) do
create( create(
:ci_pipeline, :ci_pipeline,
:invalid, :invalid_config_error,
project: project, project: project,
ref: 'master', ref: 'master',
sha: project.commit.id, sha: project.commit.id,
...@@ -1260,6 +1260,8 @@ ...@@ -1260,6 +1260,8 @@
end end
before do before do
pipeline.add_error_message('invalid YAML')
pipeline.save!
visit project_pipeline_path(project, pipeline) visit project_pipeline_path(project, pipeline)
end end
...@@ -1270,11 +1272,11 @@ ...@@ -1270,11 +1272,11 @@
end end
it 'contains badge with tooltip which contains error' do it 'contains badge with tooltip which contains error' do
expect(pipeline).to have_yaml_errors expect(pipeline.error_messages).not_to be_empty
within_testid('pipeline-header') do within_testid('pipeline-header') do
expect(page).to have_selector( expect(page).to have_selector(
%(span[title="#{pipeline.yaml_errors}"])) %(span[title="#{pipeline.error_messages.first.content}"]))
end end
end end
......
0% 加载中 .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册