Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
M
mastodon
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Pierre Boudes
mastodon
Commits
67243bda
Commit
67243bda
authored
7 years ago
by
Akihiko Odaki (@fn_aki@pawoo.net)
Committed by
Eugen Rochko
7 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Cover Auth::RegistrationsController more (#3353)
parent
8f991831
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
spec/controllers/auth/registrations_controller_spec.rb
+88
-15
88 additions, 15 deletions
spec/controllers/auth/registrations_controller_spec.rb
with
88 additions
and
15 deletions
spec/controllers/auth/registrations_controller_spec.rb
+
88
−
15
View file @
67243bda
...
...
@@ -3,37 +3,110 @@ require 'rails_helper'
RSpec
.
describe
Auth
::
RegistrationsController
,
type: :controller
do
render_views
describe
'GET #new'
do
before
do
shared_examples
'checks for enabled registrations'
do
|
path
|
around
do
|
example
|
open_registrations
=
Setting
.
open_registrations
example
.
run
Setting
.
open_registrations
=
open_registrations
end
it
'redirects if it is in single user mode while it is open for registration'
do
Fabricate
(
:account
)
Setting
.
open_registrations
=
true
request
.
env
[
"devise.mapping"
]
=
Devise
.
mappings
[
:user
]
expect
(
Rails
.
configuration
.
x
).
to
receive
(
:single_user_mode
).
and_return
(
true
)
get
path
expect
(
response
).
to
redirect_to
'/'
end
it
'redirects if it is not open for registration while it is not in single user mode'
do
Setting
.
open_registrations
=
false
expect
(
Rails
.
configuration
.
x
).
to
receive
(
:single_user_mode
).
and_return
(
false
)
get
path
expect
(
response
).
to
redirect_to
'/'
end
end
describe
'GET #edit'
do
it
'returns http success'
do
get
:new
request
.
env
[
"devise.mapping"
]
=
Devise
.
mappings
[
:user
]
sign_in
(
Fabricate
(
:user
))
get
:edit
expect
(
response
).
to
have_http_status
(
:success
)
end
end
describe
'POST #create'
do
let
(
:accept_language
)
{
Rails
.
application
.
config
.
i18n
.
available_locales
.
sample
.
to_s
}
describe
'GET #update'
do
it
'returns http success'
do
request
.
env
[
"devise.mapping"
]
=
Devise
.
mappings
[
:user
]
sign_in
(
Fabricate
(
:user
),
scope: :user
)
post
:update
expect
(
response
).
to
have_http_status
(
:success
)
end
end
describe
'GET #new'
do
before
do
Setting
.
open_registrations
=
true
request
.
env
[
"devise.mapping"
]
=
Devise
.
mappings
[
:user
]
request
.
headers
[
"Accept-Language"
]
=
accept_language
post
:create
,
params:
{
user:
{
account_attributes:
{
username:
'test'
},
email:
'test@example.com'
,
password:
'12345678'
,
password_confirmation:
'12345678'
}
}
end
it
'redirects to login page'
do
expect
(
response
).
to
redirect_to
new_user_session_path
context
do
around
do
|
example
|
open_registrations
=
Setting
.
open_registrations
example
.
run
Setting
.
open_registrations
=
open_registrations
end
it
'returns http success'
do
Setting
.
open_registrations
=
true
get
:new
expect
(
response
).
to
have_http_status
(
:success
)
end
end
it
'creates user'
do
user
=
User
.
find_by
(
email:
'test@example.com'
)
expect
(
user
).
to_not
be_nil
expect
(
user
.
locale
).
to
eq
(
accept_language
)
include_examples
'checks for enabled registrations'
,
:new
end
describe
'POST #create'
do
let
(
:accept_language
)
{
Rails
.
application
.
config
.
i18n
.
available_locales
.
sample
.
to_s
}
before
{
request
.
env
[
"devise.mapping"
]
=
Devise
.
mappings
[
:user
]
}
context
do
around
do
|
example
|
open_registrations
=
Setting
.
open_registrations
example
.
run
Setting
.
open_registrations
=
open_registrations
end
subject
do
Setting
.
open_registrations
=
true
request
.
headers
[
"Accept-Language"
]
=
accept_language
post
:create
,
params:
{
user:
{
account_attributes:
{
username:
'test'
},
email:
'test@example.com'
,
password:
'12345678'
,
password_confirmation:
'12345678'
}
}
end
it
'redirects to login page'
do
subject
expect
(
response
).
to
redirect_to
new_user_session_path
end
it
'creates user'
do
subject
user
=
User
.
find_by
(
email:
'test@example.com'
)
expect
(
user
).
to_not
be_nil
expect
(
user
.
locale
).
to
eq
(
accept_language
)
end
end
it
'does nothing if user already exists'
do
Fabricate
(
:user
,
account:
Fabricate
(
:account
,
username:
'test'
))
subject
end
include_examples
'checks for enabled registrations'
,
:create
end
describe
'DELETE #destroy'
do
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment