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
iv
gitlab-ce
Commits
f88b6d03
Commit
f88b6d03
authored
Sep 08, 2014
by
Jan-Willem van der Meer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Refactor gitlab auth tests
parent
18f88a1b
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
13 additions
and
11 deletions
+13
-11
spec/lib/gitlab/auth_spec.rb
spec/lib/gitlab/auth_spec.rb
+13
-11
No files found.
spec/lib/gitlab/auth_spec.rb
View file @
f88b6d03
...
...
@@ -4,25 +4,27 @@ describe Gitlab::Auth do
let
(
:gl_auth
)
{
Gitlab
::
Auth
.
new
}
describe
:find
do
before
do
@user
=
create
(
:user
,
username:
'john'
,
password:
'88877711'
,
password_confirmation:
'88877711'
)
let!
(
:user
)
do
create
(
:user
,
username:
username
,
password:
password
,
password_confirmation:
password
)
end
let
(
:username
)
{
'john'
}
let
(
:password
)
{
'my-secret'
}
it
"should find user by valid login/password"
do
gl_auth
.
find
(
'john'
,
'88877711'
).
should
==
@
user
expect
(
gl_auth
.
find
(
username
,
password
)
).
to
eql
user
end
it
"should not find user with invalid password"
do
gl_auth
.
find
(
'john'
,
'invalid11'
).
should_not
==
@user
password
=
'wrong'
expect
(
gl_auth
.
find
(
username
,
password
)
).
to_not
eql
user
end
it
"should not find user with invalid login and password"
do
gl_auth
.
find
(
'jon'
,
'invalid11'
).
should_not
==
@user
it
"should not find user with invalid login"
do
user
=
'wrong'
expect
(
gl_auth
.
find
(
username
,
password
)
).
to_not
eql
user
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