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
eb178f6d
Commit
eb178f6d
authored
Feb 08, 2016
by
Rémy Coutable
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add a spec to ensure Crowd login form is shown even when sign-in is disabled
parent
dcaeee45
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
13 additions
and
7 deletions
+13
-7
features/login_form.feature
features/login_form.feature
+8
-2
features/steps/login_form.rb
features/steps/login_form.rb
+5
-5
No files found.
features/login_form.feature
View file @
eb178f6d
Feature
:
Login form
Feature
:
Login form
Scenario
:
I
see
c
rowd form
Scenario
:
I
see
C
rowd form
Given
Crowd integration enabled
Given
Crowd integration enabled
When
I visit sign in page
When
I visit sign in page
Then
I should see Crowd login form
Then
I should see Crowd login form
\ No newline at end of file
Scenario
:
I
see Crowd form when sign-in is disabled
Given
Crowd integration enabled
And
Sign-in is disabled
When
I visit sign in page
Then
I should see Crowd login form
features/steps/login_form.rb
View file @
eb178f6d
...
@@ -5,18 +5,18 @@ class Spinach::Features::LoginForm < Spinach::FeatureSteps
...
@@ -5,18 +5,18 @@ class Spinach::Features::LoginForm < Spinach::FeatureSteps
include
SharedUser
include
SharedUser
include
SharedSearch
include
SharedSearch
step
'Sign-in is disabled'
do
allow_any_instance_of
(
ApplicationHelper
).
to
receive
(
:signin_enabled?
).
and_return
(
false
)
end
step
'Crowd integration enabled'
do
step
'Crowd integration enabled'
do
@providers_orig
=
Gitlab
::
OAuth
::
Provider
.
providers
@omniauth_conf_orig
=
Gitlab
.
config
.
omniauth
.
enabled
expect
(
Gitlab
::
OAuth
::
Provider
).
to
receive
(
:providers
).
and_return
([
:crowd
])
expect
(
Gitlab
::
OAuth
::
Provider
).
to
receive
(
:providers
).
and_return
([
:crowd
])
allow_any_instance_of
(
ApplicationHelper
).
to
receive
(
:user_omniauth_authorize_path
).
and_return
(
root_path
)
expect
(
Gitlab
.
config
.
omniauth
).
to
receive
(
:enabled
).
and_return
(
true
)
expect
(
Gitlab
.
config
.
omniauth
).
to
receive
(
:enabled
).
and_return
(
true
)
allow_any_instance_of
(
ApplicationHelper
).
to
receive
(
:user_omniauth_authorize_path
).
and_return
(
root_path
)
end
end
step
'I should see Crowd login form'
do
step
'I should see Crowd login form'
do
expect
(
page
).
to
have_selector
'#tab-crowd form'
expect
(
page
).
to
have_selector
'#tab-crowd form'
Gitlab
::
OAuth
::
Provider
.
stub
(
:providers
).
and_return
(
@providers_orig
)
Gitlab
.
config
.
omniauth
.
stub
(
:enabled
).
and_return
(
@omniauth_conf_orig
)
end
end
step
'I visit sign in page'
do
step
'I visit sign in page'
do
...
...
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