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
0
Merge Requests
0
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
Jérome Perrin
gitlab-ce
Commits
28bae3b6
Commit
28bae3b6
authored
Apr 11, 2018
by
Lin Jen-Shin
Committed by
Rémy Coutable
Apr 11, 2018
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Resolve "tree/master shows incorrect CI build status"
parent
f16c6269
Changes
6
Show whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
58 additions
and
5 deletions
+58
-5
app/controllers/projects/commit_controller.rb
app/controllers/projects/commit_controller.rb
+1
-0
app/helpers/ci_status_helper.rb
app/helpers/ci_status_helper.rb
+2
-2
app/views/projects/commits/_commit.html.haml
app/views/projects/commits/_commit.html.haml
+2
-1
changelogs/unreleased/44541-fix-file-tree-commit-status-cache.yml
...gs/unreleased/44541-fix-file-tree-commit-status-cache.yml
+5
-0
spec/features/dashboard/projects_spec.rb
spec/features/dashboard/projects_spec.rb
+2
-2
spec/features/projects/files/user_reads_pipeline_status_spec.rb
...eatures/projects/files/user_reads_pipeline_status_spec.rb
+46
-0
No files found.
app/controllers/projects/commit_controller.rb
View file @
28bae3b6
...
...
@@ -34,6 +34,7 @@ class Projects::CommitController < Projects::ApplicationController
def
pipelines
@pipelines
=
@commit
.
pipelines
.
order
(
id: :desc
)
@pipelines
=
@pipelines
.
where
(
ref:
params
[
:ref
])
if
params
[
:ref
]
respond_to
do
|
format
|
format
.
html
...
...
app/helpers/ci_status_helper.rb
View file @
28bae3b6
...
...
@@ -94,7 +94,7 @@ module CiStatusHelper
def
render_project_pipeline_status
(
pipeline_status
,
tooltip_placement:
'auto left'
)
project
=
pipeline_status
.
project
path
=
pipelines_project_commit_path
(
project
,
pipeline_status
.
sha
)
path
=
pipelines_project_commit_path
(
project
,
pipeline_status
.
sha
,
ref:
pipeline_status
.
ref
)
render_status_with_link
(
'commit'
,
...
...
@@ -105,7 +105,7 @@ module CiStatusHelper
def
render_commit_status
(
commit
,
ref:
nil
,
tooltip_placement:
'auto left'
)
project
=
commit
.
project
path
=
pipelines_project_commit_path
(
project
,
commit
)
path
=
pipelines_project_commit_path
(
project
,
commit
,
ref:
ref
)
render_status_with_link
(
'commit'
,
...
...
app/views/projects/commits/_commit.html.haml
View file @
28bae3b6
...
...
@@ -5,6 +5,7 @@
-
link
=
commit_path
(
project
,
commit
,
merge_request:
merge_request
)
-
cache_key
=
[
project
.
full_path
,
ref
,
commit
.
id
,
Gitlab
::
CurrentSettings
.
current_application_settings
,
@path
.
presence
,
...
...
@@ -54,7 +55,7 @@
-
if
commit
.
status
(
ref
)
=
render_commit_status
(
commit
,
ref:
ref
)
.js-commit-pipeline-status
{
data:
{
endpoint:
pipelines_project_commit_path
(
project
,
commit
.
id
)
}
}
.js-commit-pipeline-status
{
data:
{
endpoint:
pipelines_project_commit_path
(
project
,
commit
.
id
,
ref:
ref
)
}
}
.commit-sha-group
.label.label-monospace
...
...
changelogs/unreleased/44541-fix-file-tree-commit-status-cache.yml
0 → 100644
View file @
28bae3b6
---
title
:
Fix pipeline status in branch/tag tree page
merge_request
:
17995
author
:
type
:
fixed
spec/features/dashboard/projects_spec.rb
View file @
28bae3b6
...
...
@@ -89,7 +89,7 @@ feature 'Dashboard Projects' do
end
describe
'with a pipeline'
,
:clean_gitlab_redis_shared_state
do
let
(
:pipeline
)
{
create
(
:ci_pipeline
,
project:
project
,
sha:
project
.
commit
.
sha
)
}
let
(
:pipeline
)
{
create
(
:ci_pipeline
,
project:
project
,
sha:
project
.
commit
.
sha
,
ref:
project
.
default_branch
)
}
before
do
# Since the cache isn't updated when a new pipeline is created
...
...
@@ -102,7 +102,7 @@ feature 'Dashboard Projects' do
visit
dashboard_projects_path
page
.
within
(
'.controls'
)
do
expect
(
page
).
to
have_xpath
(
"//a[@href='
#{
pipelines_project_commit_path
(
project
,
project
.
commit
)
}
']"
)
expect
(
page
).
to
have_xpath
(
"//a[@href='
#{
pipelines_project_commit_path
(
project
,
project
.
commit
,
ref:
pipeline
.
ref
)
}
']"
)
expect
(
page
).
to
have_css
(
'.ci-status-link'
)
expect
(
page
).
to
have_css
(
'.ci-status-icon-success'
)
expect
(
page
).
to
have_link
(
'Commit: passed'
)
...
...
spec/features/projects/files/user_reads_pipeline_status_spec.rb
0 → 100644
View file @
28bae3b6
require
'spec_helper'
describe
'user reads pipeline status'
,
:js
do
let
(
:project
)
{
create
(
:project
,
:repository
)
}
let
(
:user
)
{
create
(
:user
)
}
let
(
:v110_pipeline
)
{
create_pipeline
(
'v1.1.0'
,
'success'
)
}
let
(
:x110_pipeline
)
{
create_pipeline
(
'x1.1.0'
,
'failed'
)
}
before
do
project
.
add_master
(
user
)
project
.
repository
.
add_tag
(
user
,
'x1.1.0'
,
'v1.1.0'
)
v110_pipeline
x110_pipeline
sign_in
(
user
)
end
shared_examples
'visiting project tree'
do
scenario
'sees the correct pipeline status'
do
visit
project_tree_path
(
project
,
expected_pipeline
.
ref
)
wait_for_requests
page
.
within
(
'.blob-commit-info'
)
do
expect
(
page
).
to
have_link
(
''
,
href:
project_pipeline_path
(
project
,
expected_pipeline
))
expect
(
page
).
to
have_selector
(
".ci-status-icon-
#{
expected_pipeline
.
status
}
"
)
end
end
end
it_behaves_like
'visiting project tree'
do
let
(
:expected_pipeline
)
{
v110_pipeline
}
end
it_behaves_like
'visiting project tree'
do
let
(
:expected_pipeline
)
{
x110_pipeline
}
end
def
create_pipeline
(
ref
,
status
)
create
(
:ci_pipeline
,
project:
project
,
ref:
ref
,
sha:
project
.
commit
(
ref
).
sha
,
status:
status
)
end
end
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