Merge branch 'ce-port-ee-f531c07299' into 'master'
Fix a too strict array-matching expectation See merge request gitlab-org/gitlab-ce!17093
This commit is contained in:
commit
fd4728a504
1 changed files with 7 additions and 8 deletions
|
@ -81,7 +81,7 @@ describe 'OpenID Connect requests' do
|
|||
it 'includes all user information and group memberships' do
|
||||
request_user_info
|
||||
|
||||
expect(json_response).to eq({
|
||||
expect(json_response).to match(a_hash_including({
|
||||
'sub' => hashed_subject,
|
||||
'name' => 'Alice',
|
||||
'nickname' => 'alice',
|
||||
|
@ -90,13 +90,12 @@ describe 'OpenID Connect requests' do
|
|||
'website' => 'https://example.com',
|
||||
'profile' => 'http://localhost/alice',
|
||||
'picture' => "http://localhost/uploads/-/system/user/avatar/#{user.id}/dk.png",
|
||||
'groups' =>
|
||||
if Group.supports_nested_groups?
|
||||
['group1', 'group2/group3', 'group2/group3/group4']
|
||||
else
|
||||
['group1', 'group2/group3']
|
||||
end
|
||||
})
|
||||
'groups' => anything
|
||||
}))
|
||||
|
||||
expected_groups = %w[group1 group2/group3]
|
||||
expected_groups << 'group2/group3/group4' if Group.supports_nested_groups?
|
||||
expect(json_response['groups']).to match_array(expected_groups)
|
||||
end
|
||||
end
|
||||
|
||||
|
|
Loading…
Reference in a new issue