forked from ory/fosite
-
Notifications
You must be signed in to change notification settings - Fork 0
/
authorize_request_test.go
126 lines (120 loc) · 3.33 KB
/
authorize_request_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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
/*
* Copyright © 2015-2018 Aeneas Rekkas <aeneas+oss@aeneas.io>
*
* 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.
*
* @author Aeneas Rekkas <aeneas+oss@aeneas.io>
* @copyright 2015-2018 Aeneas Rekkas <aeneas+oss@aeneas.io>
* @license Apache-2.0
*
*/
package fosite
import (
"net/url"
"testing"
"time"
"github.com/stretchr/testify/assert"
)
func TestAuthorizeRequest(t *testing.T) {
var urlparse = func(rawurl string) *url.URL {
u, _ := url.Parse(rawurl)
return u
}
for k, c := range []struct {
ar *AuthorizeRequest
isRedirValid bool
}{
{
ar: NewAuthorizeRequest(),
isRedirValid: false,
},
{
ar: &AuthorizeRequest{
RedirectURI: urlparse("https://foobar"),
},
isRedirValid: false,
},
{
ar: &AuthorizeRequest{
RedirectURI: urlparse("https://foobar"),
Request: Request{
Client: &DefaultClient{RedirectURIs: []string{""}},
},
},
isRedirValid: false,
},
{
ar: &AuthorizeRequest{
Request: Request{
Client: &DefaultClient{RedirectURIs: []string{""}},
},
RedirectURI: urlparse(""),
},
isRedirValid: false,
},
{
ar: &AuthorizeRequest{
Request: Request{
Client: &DefaultClient{RedirectURIs: []string{""}},
},
RedirectURI: urlparse(""),
},
isRedirValid: false,
},
{
ar: &AuthorizeRequest{
RedirectURI: urlparse("https://foobar.com#123"),
Request: Request{
Client: &DefaultClient{RedirectURIs: []string{"https://foobar.com#123"}},
},
},
isRedirValid: false,
},
{
ar: &AuthorizeRequest{
Request: Request{
Client: &DefaultClient{RedirectURIs: []string{"https://foobar.com"}},
},
RedirectURI: urlparse("https://foobar.com#123"),
},
isRedirValid: false,
},
{
ar: &AuthorizeRequest{
Request: Request{
Client: &DefaultClient{RedirectURIs: []string{"https://foobar.com/cb"}},
RequestedAt: time.Now().UTC(),
RequestedScope: []string{"foo", "bar"},
},
RedirectURI: urlparse("https://foobar.com/cb"),
ResponseTypes: []string{"foo", "bar"},
State: "foobar",
},
isRedirValid: true,
},
} {
assert.Equal(t, c.ar.Client, c.ar.GetClient(), "%d", k)
assert.Equal(t, c.ar.RedirectURI, c.ar.GetRedirectURI(), "%d", k)
assert.Equal(t, c.ar.RequestedAt, c.ar.GetRequestedAt(), "%d", k)
assert.Equal(t, c.ar.ResponseTypes, c.ar.GetResponseTypes(), "%d", k)
assert.Equal(t, c.ar.RequestedScope, c.ar.GetRequestedScopes(), "%d", k)
assert.Equal(t, c.ar.State, c.ar.GetState(), "%d", k)
assert.Equal(t, c.isRedirValid, c.ar.IsRedirectURIValid(), "%d", k)
c.ar.GrantScope("foo")
c.ar.SetSession(&DefaultSession{})
c.ar.SetRequestedScopes([]string{"foo"})
assert.True(t, c.ar.GetGrantedScopes().Has("foo"))
assert.True(t, c.ar.GetRequestedScopes().Has("foo"))
assert.Equal(t, &DefaultSession{}, c.ar.GetSession())
}
}