-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathdiscovery_test.go
More file actions
282 lines (271 loc) · 7.05 KB
/
Copy pathdiscovery_test.go
File metadata and controls
282 lines (271 loc) · 7.05 KB
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
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
package oidfed
import (
"net/http"
"testing"
"github.com/jarcoal/httpmock"
"github.com/zachmann/go-utils/sliceutils"
"github.com/go-oidfed/lib/apimodel"
)
func TestSimpleOPCollector_CollectEntities(t *testing.T) {
tests := []struct {
name string
trustAnchor string
expectedOPs []string
}{
{
name: "ta1",
trustAnchor: ta1.EntityID,
expectedOPs: []string{
op1.EntityID,
op2.EntityID,
op3.EntityID,
proxy.EntityID,
},
},
{
name: "ta2",
trustAnchor: ta2.EntityID,
expectedOPs: []string{
op1.EntityID,
op2.EntityID,
op3.EntityID,
proxy.EntityID,
},
},
{
name: "ia1",
trustAnchor: ia1.EntityID,
expectedOPs: []string{
op1.EntityID,
op3.EntityID,
proxy.EntityID,
},
},
{
name: "ia2",
trustAnchor: ia2.EntityID,
expectedOPs: []string{
op1.EntityID,
op2.EntityID,
op3.EntityID,
proxy.EntityID,
},
},
}
for _, test := range tests {
t.Run(
test.name, func(t *testing.T) {
res, _ := (&SimpleOPCollector{}).CollectEntities(
apimodel.EntityCollectionRequest{TrustAnchor: test.trustAnchor},
)
if res == nil {
t.Fatalf("ops is nil")
}
if len(res.Entities) != len(test.expectedOPs) {
t.Errorf("discovered OPs does not match expected OPs")
t.Errorf("Expected: %+v", test.expectedOPs)
t.Error("Discovered:")
for _, op := range res.Entities {
t.Error(op.EntityID)
}
t.FailNow()
}
for _, op := range res.Entities {
if !sliceutils.SliceContains(op.EntityID, test.expectedOPs) {
t.Errorf("discovered OPs does not match expected OPs")
t.Errorf("discovered: %+v", op.EntityID)
t.Errorf("expected: %+v", test.expectedOPs)
t.FailNow()
}
}
},
)
}
}
func TestSimpleRemoteEntityCollector_AggregatesRemotePagination(t *testing.T) {
// Prepare a paginated mock endpoint
endpoint := "https://mock.example/entities"
all := []*CollectedEntity{
{EntityID: "e1"},
{EntityID: "e2"},
{EntityID: "e3"},
{EntityID: "e4"},
{EntityID: "e5"},
}
// Paginated responder handling three pages
httpmock.RegisterResponder(
"GET", endpoint, func(req *http.Request) (*http.Response, error) {
from := req.URL.Query().Get("from")
var res EntityCollectionResponse
switch from {
case "":
res = EntityCollectionResponse{
Entities: []*CollectedEntity{
all[0],
all[1],
},
Next: all[2].EntityID,
}
case all[2].EntityID:
res = EntityCollectionResponse{
Entities: []*CollectedEntity{
all[2],
all[3],
},
Next: all[4].EntityID,
}
case all[4].EntityID:
res = EntityCollectionResponse{
Entities: []*CollectedEntity{all[4]},
}
default:
res = EntityCollectionResponse{Entities: nil}
}
return httpmock.NewJsonResponse(200, res)
},
)
collector := SimpleRemoteEntityCollector{EntityCollectionEndpoint: endpoint}
// Case 1: no limit set — remote still paginates, we aggregate all
res, errRes := collector.CollectEntities(apimodel.EntityCollectionRequest{})
if errRes != nil {
t.Fatalf("unexpected error: %+v", errRes)
}
if res == nil {
t.Fatalf("response is nil")
}
if len(res.Entities) != len(all) {
t.Fatalf("expected %d entities, got %d", len(all), len(res.Entities))
}
if res.Next != "" {
t.Fatalf("expected no pagination in final response, got next_entity_id=%q", res.Next)
}
for i, e := range res.Entities {
if e.EntityID != all[i].EntityID {
t.Fatalf("entity order mismatch at %d: expected %q got %q", i, all[i].EntityID, e.EntityID)
}
}
// Case 2: limit set — we forward it, but still aggregate all remote pages
res2, errRes2 := collector.CollectEntities(apimodel.EntityCollectionRequest{Limit: 3})
if errRes2 != nil {
t.Fatalf("unexpected error (limit): %+v", errRes2)
}
if res2 == nil {
t.Fatalf("response is nil (limit)")
}
if len(res2.Entities) != len(all) {
t.Fatalf("expected %d entities with limit, got %d", len(all), len(res2.Entities))
}
if res2.Next != "" {
t.Fatalf("expected no pagination in final response (limit), got next_entity_id=%q", res2.Next)
}
}
func TestFilterableVerifiedChainsEntityCollector_CollectEntities(t *testing.T) {
tests := []struct {
name string
trustAnchor string
filters []EntityCollectionFilter
expectedOPs []string
}{
{
name: "ta2",
trustAnchor: ta2.EntityID,
expectedOPs: []string{
op1.EntityID,
op2.EntityID,
op3.EntityID,
proxy.EntityID,
},
},
{
name: "ta2, automatic",
filters: []EntityCollectionFilter{
EntityCollectionFilterOPSupportsAutomaticRegistration([]string{ta2.EntityID}),
},
trustAnchor: ta2.EntityID,
expectedOPs: []string{
op1.EntityID,
op2.EntityID,
op3.EntityID,
proxy.EntityID,
},
},
{
name: "ta2, automatic, scopes",
filters: []EntityCollectionFilter{
EntityCollectionFilterOPSupportsAutomaticRegistration([]string{ta2.EntityID}),
EntityCollectionFilterOPSupportedScopesIncludes([]string{ta2.EntityID}, "openid", "profile", "email"),
},
trustAnchor: ta2.EntityID,
expectedOPs: []string{
op1.EntityID,
op3.EntityID,
proxy.EntityID,
},
},
{
name: "ia1",
trustAnchor: ia1.EntityID,
expectedOPs: []string{
op1.EntityID,
op3.EntityID,
proxy.EntityID,
},
},
{
name: "ia1, automatic, scope:address",
trustAnchor: ia1.EntityID,
filters: []EntityCollectionFilter{
EntityCollectionFilterOPSupportsAutomaticRegistration([]string{ia1.EntityID}),
EntityCollectionFilterOPSupportedScopesIncludes([]string{ia1.EntityID}, "address"),
},
expectedOPs: []string{
op1.EntityID,
},
},
{
name: "ia1, automatic, scope:address, grant_type:rt",
trustAnchor: ia1.EntityID,
filters: []EntityCollectionFilter{
EntityCollectionFilterOPSupportsAutomaticRegistration([]string{ia1.EntityID}),
EntityCollectionFilterOPSupportedScopesIncludes([]string{ia1.EntityID}, "address"),
EntityCollectionFilterOPSupportedGrantTypesIncludes([]string{ia1.EntityID}, "refresh_token"),
},
expectedOPs: nil,
},
}
for _, test := range tests {
t.Run(
test.name, func(t *testing.T) {
res, _ := FilterableVerifiedChainsEntityCollector{Filters: test.filters}.CollectEntities(
apimodel.EntityCollectionRequest{
TrustAnchor: test.trustAnchor,
EntityTypes: []string{"openid_provider"},
},
)
if res == nil {
if test.expectedOPs == nil {
return
}
t.Fatalf("ops is nil")
}
if len(res.Entities) != len(test.expectedOPs) {
t.Errorf("discovered OPs does not match expected OPs")
t.Errorf("Expected: %+v", test.expectedOPs)
t.Error("Discovered:")
for _, op := range res.Entities {
t.Error(op.EntityID)
}
t.FailNow()
}
for _, op := range res.Entities {
if !sliceutils.SliceContains(op.EntityID, test.expectedOPs) {
t.Errorf("discovered OPs does not match expected OPs")
t.Errorf("discovered: %+v", op.EntityID)
t.Errorf("expected: %+v", test.expectedOPs)
t.FailNow()
}
}
},
)
}
}