forked from ory/fosite
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest_helpers.go
179 lines (155 loc) · 4.93 KB
/
test_helpers.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
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
// Copyright © 2023 Ory Corp
// SPDX-License-Identifier: Apache-2.0
package internal
import (
"encoding/json"
"errors"
"fmt"
"io"
"net/url"
"strconv"
"testing"
"time"
cristaljwt "github.com/cristalhq/jwt/v4"
"github.com/stretchr/testify/require"
"golang.org/x/net/html"
goauth "golang.org/x/oauth2"
"github.com/ory/fosite"
)
func ptr(d time.Duration) *time.Duration {
return &d
}
var TestLifespans fosite.ClientLifespanConfig = fosite.ClientLifespanConfig{
AuthorizationCodeGrantAccessTokenLifespan: ptr(31 * time.Hour),
AuthorizationCodeGrantIDTokenLifespan: ptr(32 * time.Hour),
AuthorizationCodeGrantRefreshTokenLifespan: ptr(33 * time.Hour),
ClientCredentialsGrantAccessTokenLifespan: ptr(34 * time.Hour),
ImplicitGrantAccessTokenLifespan: ptr(35 * time.Hour),
ImplicitGrantIDTokenLifespan: ptr(36 * time.Hour),
JwtBearerGrantAccessTokenLifespan: ptr(37 * time.Hour),
PasswordGrantAccessTokenLifespan: ptr(38 * time.Hour),
PasswordGrantRefreshTokenLifespan: ptr(39 * time.Hour),
RefreshTokenGrantIDTokenLifespan: ptr(40 * time.Hour),
RefreshTokenGrantAccessTokenLifespan: ptr(41 * time.Hour),
RefreshTokenGrantRefreshTokenLifespan: ptr(42 * time.Hour),
}
func RequireEqualDuration(t *testing.T, expected time.Duration, actual time.Duration, precision time.Duration) {
delta := expected - actual
if delta < 0 {
delta = -delta
}
require.Less(t, delta, precision, fmt.Sprintf("expected %s; got %s", expected, actual))
}
func RequireEqualTime(t *testing.T, expected time.Time, actual time.Time, precision time.Duration) {
delta := expected.Sub(actual)
if delta < 0 {
delta = -delta
}
require.Less(t, delta, precision, fmt.Sprintf(
"expected %s; got %s",
expected.Format(time.RFC3339Nano),
actual.Format(time.RFC3339Nano),
))
}
func ExtractJwtExpClaim(t *testing.T, token string) *time.Time {
jwt, err := cristaljwt.ParseNoVerify([]byte(token))
require.NoError(t, err)
claims := &cristaljwt.RegisteredClaims{}
require.NoError(t, json.Unmarshal(jwt.Claims(), claims))
if claims.ExpiresAt == nil {
return nil
}
return &claims.ExpiresAt.Time
}
func ParseFormPostResponse(redirectURL string, resp io.ReadCloser) (authorizationCode, stateFromServer, iDToken string, token goauth.Token, customParameters url.Values, rFC6749Error map[string]string, err error) {
token = goauth.Token{}
rFC6749Error = map[string]string{}
customParameters = url.Values{}
doc, err := html.Parse(resp)
if err != nil {
return "", "", "", token, customParameters, rFC6749Error, err
}
//doc>html>body
body := findBody(doc.FirstChild.FirstChild)
if body.Data != "body" {
return "", "", "", token, customParameters, rFC6749Error, errors.New("Malformed html")
}
htmlEvent := body.Attr[0].Key
if htmlEvent != "onload" {
return "", "", "", token, customParameters, rFC6749Error, errors.New("onload event is missing")
}
onLoadFunc := body.Attr[0].Val
if onLoadFunc != "javascript:document.forms[0].submit()" {
return "", "", "", token, customParameters, rFC6749Error, errors.New("onload function is missing")
}
form := getNextNoneTextNode(body.FirstChild)
if form.Data != "form" {
return "", "", "", token, customParameters, rFC6749Error, errors.New("html form is missing")
}
for _, attr := range form.Attr {
if attr.Key == "method" {
if attr.Val != "post" {
return "", "", "", token, customParameters, rFC6749Error, errors.New("html form post method is missing")
}
} else {
if attr.Val != redirectURL {
return "", "", "", token, customParameters, rFC6749Error, errors.New("html form post url is wrong")
}
}
}
for node := getNextNoneTextNode(form.FirstChild); node != nil; node = getNextNoneTextNode(node.NextSibling) {
var k, v string
for _, attr := range node.Attr {
if attr.Key == "name" {
k = attr.Val
} else if attr.Key == "value" {
v = attr.Val
}
}
switch k {
case "state":
stateFromServer = v
case "code":
authorizationCode = v
case "expires_in":
expires, err := strconv.Atoi(v)
if err != nil {
return "", "", "", token, customParameters, rFC6749Error, err
}
token.Expiry = time.Now().UTC().Add(time.Duration(expires) * time.Second)
case "access_token":
token.AccessToken = v
case "token_type":
token.TokenType = v
case "refresh_token":
token.RefreshToken = v
case "error":
rFC6749Error["ErrorField"] = v
case "error_hint":
rFC6749Error["HintField"] = v
case "error_description":
rFC6749Error["DescriptionField"] = v
case "id_token":
iDToken = v
default:
customParameters.Add(k, v)
}
}
return
}
func getNextNoneTextNode(node *html.Node) *html.Node {
nextNode := node.NextSibling
if nextNode != nil && nextNode.Type == html.TextNode {
nextNode = getNextNoneTextNode(node.NextSibling)
}
return nextNode
}
func findBody(node *html.Node) *html.Node {
if node != nil {
if node.Data == "body" {
return node
}
return findBody(node.NextSibling)
}
return nil
}