Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
gitlab-ce
Commits
c3cdc2b3
Commit
c3cdc2b3
authored
Dec 09, 2021
by
Frédéric Caplette
Committed by
Natalia Tepluhina
Dec 09, 2021
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove misleading configuration error message in Pipeline Editor
parent
c1f3d5e8
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
43 deletions
+3
-43
app/assets/javascripts/pipeline_editor/components/header/pipeline_status.vue
...pts/pipeline_editor/components/header/pipeline_status.vue
+2
-19
locale/gitlab.pot
locale/gitlab.pot
+0
-3
spec/frontend/pipeline_editor/components/header/pipeline_status_spec.js
...pipeline_editor/components/header/pipeline_status_spec.js
+1
-21
No files found.
app/assets/javascripts/pipeline_editor/components/header/pipeline_status.vue
View file @
c3cdc2b3
...
...
@@ -21,9 +21,6 @@ export const i18n = {
),
viewBtn
:
s__
(
'
Pipeline|View pipeline
'
),
viewCommit
:
s__
(
'
Pipeline|View commit
'
),
pipelineNotTriggeredMsg
:
s__
(
'
Pipeline|No pipeline was triggered for the latest changes due to the current CI/CD configuration.
'
,
),
};
export
default
{
...
...
@@ -79,22 +76,16 @@ export default {
result
(
res
)
{
if
(
res
.
data
?.
project
?.
pipeline
)
{
this
.
hasError
=
false
;
}
else
{
this
.
hasError
=
true
;
this
.
pipelineNotTriggered
=
true
;
}
},
error
()
{
this
.
hasError
=
true
;
this
.
networkError
=
true
;
},
pollInterval
:
POLL_INTERVAL
,
},
},
data
()
{
return
{
networkError
:
false
,
pipelineNotTriggered
:
false
,
hasError
:
false
,
};
},
...
...
@@ -148,16 +139,8 @@ export default {
</div>
</
template
>
<
template
v-else-if=
"hasError"
>
<div
v-if=
"networkError"
>
<gl-icon
class=
"gl-mr-auto"
name=
"warning-solid"
/>
<span
data-testid=
"pipeline-error-msg"
>
{{
$options
.
i18n
.
fetchError
}}
</span>
</div>
<div
v-else
>
<gl-icon
class=
"gl-mr-auto"
name=
"information-o"
/>
<span
data-testid=
"pipeline-not-triggered-error-msg"
>
{{
$options
.
i18n
.
pipelineNotTriggeredMsg
}}
</span>
</div>
<gl-icon
class=
"gl-mr-auto"
name=
"warning-solid"
/>
<span
data-testid=
"pipeline-error-msg"
>
{{
$options
.
i18n
.
fetchError
}}
</span>
</
template
>
<
template
v-else
>
<div
class=
"gl-text-truncate gl-md-max-w-50p gl-mr-1"
>
...
...
locale/gitlab.pot
View file @
c3cdc2b3
...
...
@@ -25994,9 +25994,6 @@ msgstr ""
msgid "Pipeline|Merged result pipeline"
msgstr ""
msgid "Pipeline|No pipeline was triggered for the latest changes due to the current CI/CD configuration."
msgstr ""
msgid "Pipeline|Passed"
msgstr ""
...
...
spec/frontend/pipeline_editor/components/header/pipeline_status_spec.js
View file @
c3cdc2b3
...
...
@@ -39,8 +39,6 @@ describe('Pipeline Status', () => {
const
findPipelineId
=
()
=>
wrapper
.
find
(
'
[data-testid="pipeline-id"]
'
);
const
findPipelineCommit
=
()
=>
wrapper
.
find
(
'
[data-testid="pipeline-commit"]
'
);
const
findPipelineErrorMsg
=
()
=>
wrapper
.
find
(
'
[data-testid="pipeline-error-msg"]
'
);
const
findPipelineNotTriggeredErrorMsg
=
()
=>
wrapper
.
find
(
'
[data-testid="pipeline-not-triggered-error-msg"]
'
);
const
findPipelineLoadingMsg
=
()
=>
wrapper
.
find
(
'
[data-testid="pipeline-loading-msg"]
'
);
const
findPipelineViewBtn
=
()
=>
wrapper
.
find
(
'
[data-testid="pipeline-view-btn"]
'
);
const
findStatusIcon
=
()
=>
wrapper
.
find
(
'
[data-testid="pipeline-status-icon"]
'
);
...
...
@@ -119,8 +117,7 @@ describe('Pipeline Status', () => {
await
waitForPromises
();
});
it
(
'
renders api error
'
,
()
=>
{
expect
(
findPipelineNotTriggeredErrorMsg
().
exists
()).
toBe
(
false
);
it
(
'
renders error
'
,
()
=>
{
expect
(
findIcon
().
attributes
(
'
name
'
)).
toBe
(
'
warning-solid
'
);
expect
(
findPipelineErrorMsg
().
text
()).
toBe
(
i18n
.
fetchError
);
});
...
...
@@ -132,22 +129,5 @@ describe('Pipeline Status', () => {
expect
(
findPipelineViewBtn
().
exists
()).
toBe
(
false
);
});
});
describe
(
'
when pipeline is null
'
,
()
=>
{
beforeEach
(()
=>
{
mockPipelineQuery
.
mockResolvedValue
({
data
:
{
project
:
{
id
:
'
1
'
,
pipeline
:
null
}
},
});
createComponentWithApollo
();
waitForPromises
();
});
it
(
'
renders pipeline not triggered error
'
,
()
=>
{
expect
(
findPipelineErrorMsg
().
exists
()).
toBe
(
false
);
expect
(
findIcon
().
attributes
(
'
name
'
)).
toBe
(
'
information-o
'
);
expect
(
findPipelineNotTriggeredErrorMsg
().
text
()).
toBe
(
i18n
.
pipelineNotTriggeredMsg
);
});
});
});
});
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment