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
6edc8d50
Commit
6edc8d50
authored
Feb 01, 2017
by
Douwe Maan
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add feature specs
parent
3dfb6a30
Changes
8
Show whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
147 additions
and
39 deletions
+147
-39
app/controllers/projects/blob_controller.rb
app/controllers/projects/blob_controller.rb
+2
-2
app/controllers/projects/compare_controller.rb
app/controllers/projects/compare_controller.rb
+2
-2
app/models/repository.rb
app/models/repository.rb
+3
-1
spec/features/projects/blobs/view_on_env_spec.rb
spec/features/projects/blobs/view_on_env_spec.rb
+0
-7
spec/features/projects/commit/view_on_env_spec.rb
spec/features/projects/commit/view_on_env_spec.rb
+0
-9
spec/features/projects/compare/view_on_env_spec.rb
spec/features/projects/compare/view_on_env_spec.rb
+0
-9
spec/features/projects/merge_requests/view_on_env_spec.rb
spec/features/projects/merge_requests/view_on_env_spec.rb
+0
-9
spec/features/projects/view_on_env_spec.rb
spec/features/projects/view_on_env_spec.rb
+140
-0
No files found.
app/controllers/projects/blob_controller.rb
View file @
6edc8d50
...
...
@@ -30,8 +30,8 @@ class Projects::BlobController < Projects::ApplicationController
end
def
show
branch_name
=
@ref
if
@repository
.
branch_exists?
(
@ref
)
@environment
=
@project
.
environments_for
(
commit:
@commit
,
ref:
branch_name
).
last
environment_args
=
@repository
.
branch_exists?
(
@ref
)
?
{
ref:
@ref
}
:
{
commit:
@commit
}
@environment
=
@project
.
environments_for
(
**
environment_args
).
last
@environment
=
nil
unless
can?
(
current_user
,
:read_environment
,
@environment
)
end
...
...
app/controllers/projects/compare_controller.rb
View file @
6edc8d50
...
...
@@ -57,8 +57,8 @@ class Projects::CompareController < Projects::ApplicationController
@diffs
=
@compare
.
diffs
(
diff_options
)
branch_name
=
@head_ref
if
@repository
.
branch_exists?
(
@head_ref
)
@environment
=
@project
.
environments_for
(
commit:
@commit
,
ref:
branch_name
).
last
environment_args
=
@repository
.
branch_exists?
(
@head_ref
)
?
{
ref:
@head_ref
}
:
{
commit:
@commit
}
@environment
=
@project
.
environments_for
(
**
environment_args
).
last
@environment
=
nil
unless
can?
(
current_user
,
:read_environment
,
@environment
)
@diff_notes_disabled
=
true
...
...
app/models/repository.rb
View file @
6edc8d50
...
...
@@ -467,6 +467,8 @@ class Repository
unless
Gitlab
::
Git
.
blank_ref?
(
sha
)
Blob
.
decorate
(
Gitlab
::
Git
::
Blob
.
find
(
self
,
sha
,
path
))
end
rescue
Gitlab
::
Git
::
Repository
::
NoRepository
nil
end
def
blob_by_oid
(
oid
)
...
...
spec/features/projects/blobs/view_on_env_spec.rb
deleted
100644 → 0
View file @
3dfb6a30
require
'spec_helper'
feature
'Blob'
do
describe
'View on environment'
do
# TODO: Test
end
end
spec/features/projects/commit/view_on_env_spec.rb
deleted
100644 → 0
View file @
3dfb6a30
require
'spec_helper'
feature
'Commit'
do
describe
'Diff'
do
describe
'View on environment'
do
# TODO: Test
end
end
end
spec/features/projects/compare/view_on_env_spec.rb
deleted
100644 → 0
View file @
3dfb6a30
require
'spec_helper'
feature
'Compare'
do
describe
'Diff'
do
describe
'View on environment'
do
# TODO: Test
end
end
end
spec/features/projects/merge_requests/view_on_env_spec.rb
deleted
100644 → 0
View file @
3dfb6a30
require
'spec_helper'
feature
'Merge Request'
do
describe
'Diff'
do
describe
'View on environment'
do
# TODO: Test
end
end
end
spec/features/projects/view_on_env_spec.rb
0 → 100644
View file @
6edc8d50
require
'spec_helper'
describe
'View on environment'
,
js:
true
do
include
WaitForAjax
let
(
:branch_name
)
{
'feature'
}
let
(
:file_path
)
{
'files/ruby/feature.rb'
}
let
(
:project
)
{
create
(
:project
)
}
let
(
:user
)
{
project
.
creator
}
before
do
project
.
team
<<
[
user
,
:master
]
end
context
'when the branch has a route map'
do
let
(
:route_map
)
do
<<-
MAP
.
strip_heredoc
- source: /files/(.*)
\\
..*/
public: '
\\
1'
MAP
end
before
do
Files
::
CreateService
.
new
(
project
,
user
,
source_branch:
branch_name
,
target_branch:
branch_name
,
commit_message:
"Add .gitlab/route-map.yml"
,
file_path:
'.gitlab/route-map.yml'
,
file_content:
route_map
).
execute
# Update the file so that we still have a commit that will have a file on the environment
Files
::
UpdateService
.
new
(
project
,
user
,
source_branch:
branch_name
,
target_branch:
branch_name
,
commit_message:
"Update feature"
,
file_path:
file_path
,
file_content:
"# Noop"
).
execute
end
context
'and an active deployment'
do
let
(
:sha
)
{
project
.
commit
(
branch_name
).
sha
}
let
(
:environment
)
{
create
(
:environment
,
project:
project
,
name:
'review/feature'
,
external_url:
'http://feature.review.example.com'
)
}
let!
(
:deployment
)
{
create
(
:deployment
,
environment:
environment
,
ref:
branch_name
,
sha:
sha
)
}
context
'when visiting the diff of a merge request for the branch'
do
let
(
:merge_request
)
{
create
(
:merge_request
,
:simple
,
source_project:
project
,
source_branch:
branch_name
)
}
before
do
login_as
(
user
)
visit
diffs_namespace_project_merge_request_path
(
project
.
namespace
,
project
,
merge_request
)
wait_for_ajax
end
it
'has a "View on env" button'
do
within
'.diffs'
do
expect
(
page
).
to
have_link
(
'View on feature.review.example.com'
,
href:
'http://feature.review.example.com/ruby/feature'
)
end
end
end
context
'when visiting a comparison for the branch'
do
before
do
login_as
(
user
)
visit
namespace_project_compare_path
(
project
.
namespace
,
project
,
from:
'master'
,
to:
branch_name
)
wait_for_ajax
end
it
'has a "View on env" button'
do
expect
(
page
).
to
have_link
(
'View on feature.review.example.com'
,
href:
'http://feature.review.example.com/ruby/feature'
)
end
end
context
'when visiting a comparison for the commit'
do
before
do
login_as
(
user
)
visit
namespace_project_compare_path
(
project
.
namespace
,
project
,
from:
'master'
,
to:
sha
)
wait_for_ajax
end
it
'has a "View on env" button'
do
expect
(
page
).
to
have_link
(
'View on feature.review.example.com'
,
href:
'http://feature.review.example.com/ruby/feature'
)
end
end
context
'when visiting a blob on the branch'
do
before
do
login_as
(
user
)
visit
namespace_project_blob_path
(
project
.
namespace
,
project
,
File
.
join
(
branch_name
,
file_path
))
wait_for_ajax
end
it
'has a "View on env" button'
do
expect
(
page
).
to
have_link
(
'View on feature.review.example.com'
,
href:
'http://feature.review.example.com/ruby/feature'
)
end
end
context
'when visiting a blob on the commit'
do
before
do
login_as
(
user
)
visit
namespace_project_blob_path
(
project
.
namespace
,
project
,
File
.
join
(
sha
,
file_path
))
wait_for_ajax
end
it
'has a "View on env" button'
do
expect
(
page
).
to
have_link
(
'View on feature.review.example.com'
,
href:
'http://feature.review.example.com/ruby/feature'
)
end
end
context
'when visiting the commit'
do
before
do
login_as
(
user
)
visit
namespace_project_commit_path
(
project
.
namespace
,
project
,
sha
)
wait_for_ajax
end
it
'has a "View on env" button'
do
expect
(
page
).
to
have_link
(
'View on feature.review.example.com'
,
href:
'http://feature.review.example.com/ruby/feature'
)
end
end
end
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