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
1
Merge Requests
1
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
nexedi
gitlab-ce
Commits
d9baa901
Commit
d9baa901
authored
Mar 01, 2022
by
Alex Kalderimis
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Satisfy undercoverage check
parent
07fba40d
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
155 additions
and
1 deletion
+155
-1
spec/lib/gitlab/omniauth_initializer_spec.rb
spec/lib/gitlab/omniauth_initializer_spec.rb
+155
-1
No files found.
spec/lib/gitlab/omniauth_initializer_spec.rb
View file @
d9baa901
...
...
@@ -5,7 +5,161 @@ require 'spec_helper'
RSpec
.
describe
Gitlab
::
OmniauthInitializer
do
let
(
:devise_config
)
{
class_double
(
Devise
)
}
subject
{
described_class
.
new
(
devise_config
)
}
subject
(
:initializer
)
{
described_class
.
new
(
devise_config
)
}
describe
'.arguments_for'
do
let
(
:devise_config
)
{
nil
}
let
(
:arguments
)
{
initializer
.
send
(
:arguments_for
,
provider
)
}
context
'when there are no args at all'
do
let
(
:provider
)
{
{
'name'
=>
'unknown'
}
}
it
'returns an empty array'
do
expect
(
arguments
).
to
eq
[]
end
end
context
'when there is an app_id and an app_secret'
do
let
(
:provider
)
{
{
'name'
=>
'unknown'
,
'app_id'
=>
1
,
'app_secret'
=>
2
}
}
it
'includes both of them, in positional order'
do
expect
(
arguments
).
to
eq
[
1
,
2
]
end
end
context
'when there is an app_id and an app_secret, and an array of args'
do
let
(
:provider
)
do
{
'name'
=>
'unknown'
,
'app_id'
=>
1
,
'app_secret'
=>
2
,
'args'
=>
%w[one two three]
}
end
it
'concatenates the args on the end'
do
expect
(
arguments
).
to
eq
[
1
,
2
,
'one'
,
'two'
,
'three'
]
end
end
context
'when there is an app_id and an app_secret, and an array of args, and default values'
do
let
(
:provider
)
do
{
'name'
=>
'unknown'
,
'app_id'
=>
1
,
'app_secret'
=>
2
,
'args'
=>
%w[one two three]
}
end
before
do
expect
(
described_class
)
.
to
receive
(
:default_arguments_for
).
with
(
'unknown'
)
.
and_return
({
default_arg: :some_value
})
end
it
'concatenates the args on the end'
do
expect
(
arguments
)
.
to
eq
[
1
,
2
,
'one'
,
'two'
,
'three'
,
{
default_arg: :some_value
}]
end
end
context
'when there is an app_id and an app_secret, and a hash of args'
do
let
(
:provider
)
do
{
'name'
=>
'unknown'
,
'app_id'
=>
1
,
'app_secret'
=>
2
,
'args'
=>
{
'foo'
=>
100
,
'bar'
=>
200
,
'nested'
=>
{
'value'
=>
300
}
}
}
end
it
'concatenates the args on the end'
do
expect
(
arguments
)
.
to
eq
[
1
,
2
,
{
foo:
100
,
bar:
200
,
nested:
{
value:
300
}
}]
end
end
context
'when there is an app_id and an app_secret, and a hash of args, and default arguments'
do
let
(
:provider
)
do
{
'name'
=>
'unknown'
,
'app_id'
=>
1
,
'app_secret'
=>
2
,
'args'
=>
{
'foo'
=>
100
,
'bar'
=>
200
,
'nested'
=>
{
'value'
=>
300
}
}
}
end
before
do
expect
(
described_class
)
.
to
receive
(
:default_arguments_for
).
with
(
'unknown'
)
.
and_return
({
default_arg: :some_value
})
end
it
'concatenates the args on the end'
do
expect
(
arguments
)
.
to
eq
[
1
,
2
,
{
default_arg: :some_value
,
foo:
100
,
bar:
200
,
nested:
{
value:
300
}
}]
end
end
context
'when there is an app_id and an app_secret, no args, and default values'
do
let
(
:provider
)
do
{
'name'
=>
'unknown'
,
'app_id'
=>
1
,
'app_secret'
=>
2
}
end
before
do
expect
(
described_class
)
.
to
receive
(
:default_arguments_for
).
with
(
'unknown'
)
.
and_return
({
default_arg: :some_value
})
end
it
'concatenates the args on the end'
do
expect
(
arguments
)
.
to
eq
[
1
,
2
,
{
default_arg: :some_value
}]
end
end
context
'when there are args, of an unsupported type'
do
let
(
:provider
)
do
{
'name'
=>
'unknown'
,
'args'
=>
1
}
end
context
'when there are default arguments'
do
before
do
expect
(
described_class
)
.
to
receive
(
:default_arguments_for
).
with
(
'unknown'
)
.
and_return
({
default_arg: :some_value
})
end
it
'tracks a configuration error'
do
expect
(
::
Gitlab
::
ErrorTracking
)
.
to
receive
(
:track_and_raise_for_dev_exception
)
.
with
(
described_class
::
ConfigurationError
,
provider_name:
'unknown'
,
arguments_type:
'Integer'
)
expect
(
arguments
)
.
to
eq
[{
default_arg: :some_value
}]
end
end
context
'when there are no default arguments'
do
it
'tracks a configuration error'
do
expect
(
::
Gitlab
::
ErrorTracking
)
.
to
receive
(
:track_and_raise_for_dev_exception
)
.
with
(
described_class
::
ConfigurationError
,
provider_name:
'unknown'
,
arguments_type:
'Integer'
)
expect
(
arguments
).
to
be_empty
end
end
end
end
describe
'#execute'
do
it
'configures providers from array'
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