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
Léo-Paul Géneau
gitlab-ce
Commits
430aa23a
Commit
430aa23a
authored
Dec 09, 2015
by
Eirik Lygre
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add spinach tests for the clone protocol selection.
parent
419d6fa6
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
27 additions
and
2 deletions
+27
-2
features/explore/projects.feature
features/explore/projects.feature
+19
-2
features/steps/explore/projects.rb
features/steps/explore/projects.rb
+8
-0
No files found.
features/explore/projects.feature
View file @
430aa23a
...
...
@@ -31,8 +31,17 @@ Feature: Explore Projects
Then
I should see empty public project details
And
I should see empty public project details with http clone info
Scenario
:
I
visit an empty public project page as user
Scenario
:
I
visit an empty public project page as user
with no ssh-keys
Given
I sign in as a user
And
I have no ssh keys
And
public empty project
"Empty Public Project"
When
I visit empty project page
Then
I should see empty public project details
And
I should see empty public project details with http clone info
Scenario
:
I
visit an empty public project page as user with an ssh-key
Given
I sign in as a user
And
I have ssh key
"ssh-rsa Work"
And
public empty project
"Empty Public Project"
When
I visit empty project page
Then
I should see empty public project details
...
...
@@ -57,8 +66,16 @@ Feature: Explore Projects
Then
I should see project
"Community"
home page
And
I should see an http link to the repository
Scenario
:
I
visit public project page as user
Scenario
:
I
visit public project page as user with no ssh-keys
Given
I sign in as a user
And
I have no ssh keys
When
I visit project
"Community"
page
Then
I should see project
"Community"
home page
And
I should see an http link to the repository
Scenario
:
I
visit public project page as user with an ssh-key
Given
I sign in as a user
And
I have ssh key
"ssh-rsa Work"
When
I visit project
"Community"
page
Then
I should see project
"Community"
home page
And
I should see an ssh link to the repository
...
...
features/steps/explore/projects.rb
View file @
430aa23a
...
...
@@ -144,4 +144,12 @@ class Spinach::Features::ExploreProjects < Spinach::FeatureSteps
def
public_merge_request
@public_merge_request
||=
MergeRequest
.
find_by!
(
title:
'Bug fix for public project'
)
end
step
'I have ssh key "ssh-rsa Work"'
do
create
(
:key
,
user:
@user
,
title:
"ssh-rsa Work"
,
key:
"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+L3TbFegm3k8QjejSwemk4HhlRh+DuN679Pc5ckqE/MPhVtE/+kZQDYCTB284GiT2aIoGzmZ8ee9TkaoejAsBwlA+Wz2Q3vhz65X6sMgalRwpdJx8kSEUYV8ZPV3MZvPo8KdNg993o4jL6G36GDW4BPIyO6FPZhfsawdf6liVD0Xo5kibIK7B9VoE178cdLQtLpS2YolRwf5yy6XR6hbbBGQR+6xrGOdP16eGZDb1CE2bMvvJijjloFqPscGktWOqW+nfh5txwFfBzlfARDTBsS8WZtg3Yoj1kn33kPsWRlgHfNutFRAIynDuDdQzQq8tTtVwm+Yi75RfcPHW8y3P Work"
)
end
step
'I have no ssh keys'
do
Key
.
delete_all
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