forked from louketo/louketo-proxy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
user_context_test.go
108 lines (95 loc) · 2.89 KB
/
user_context_test.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
/*
Copyright 2015 All rights reserved.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
package main
import (
"testing"
"time"
"github.com/stretchr/testify/assert"
)
func TestIsAudience(t *testing.T) {
user := &userContext{
audience: "test",
}
if !user.isAudience("test") {
t.Error("return should not have been false")
}
if user.isAudience("test1") {
t.Error("return should not have been true")
}
}
func TestGetUserRoles(t *testing.T) {
user := &userContext{
roles: []string{"1", "2", "3"},
}
if user.getRoles() != "1,2,3" {
t.Error("we should have received a true resposne")
}
if user.getRoles() == "nothing" {
t.Error("we should have received a false response")
}
}
func TestIsExpired(t *testing.T) {
user := &userContext{
expiresAt: time.Now(),
}
if !user.isExpired() {
t.Error("we should have been false")
}
}
func TestIsBearerToken(t *testing.T) {
user := &userContext{
bearerToken: true,
}
assert.True(t, user.isBearer())
assert.False(t, user.isCookie())
}
func TestIsCookie(t *testing.T) {
user := &userContext{
bearerToken: false,
}
assert.False(t, user.isBearer())
assert.True(t, user.isCookie())
}
func TestGetUserContext(t *testing.T) {
realmRoles := []string{"realm:realm"}
clientRoles := []string{"client:client"}
token := newTestToken("test")
token.addRealmRoles(realmRoles)
token.addClientRoles("client", []string{"client"})
context, err := extractIdentity(token.getToken())
assert.NoError(t, err)
assert.NotNil(t, context)
assert.Equal(t, "1e11e539-8256-4b3b-bda8-cc0d56cddb48", context.id)
assert.Equal(t, "[email protected]", context.email)
assert.Equal(t, "rjayawardene", context.preferredName)
assert.Equal(t, append(realmRoles, clientRoles...), context.roles)
}
func TestGetUserRealmRoleContext(t *testing.T) {
roles := []string{"dsp-dev-vpn", "vpn-user", "dsp-prod-vpn", "openvpn:dev-vpn"}
token := newTestToken("test")
token.addRealmRoles(roles)
context, err := extractIdentity(token.getToken())
assert.NoError(t, err)
assert.NotNil(t, context)
assert.Equal(t, "1e11e539-8256-4b3b-bda8-cc0d56cddb48", context.id)
assert.Equal(t, "[email protected]", context.email)
assert.Equal(t, "rjayawardene", context.preferredName)
assert.Equal(t, roles, context.roles)
}
func TestUserContextString(t *testing.T) {
token := newTestToken("test")
context, err := extractIdentity(token.getToken())
assert.NoError(t, err)
assert.NotNil(t, context)
assert.NotEmpty(t, context.String())
}