forked from ory/kratos
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathextension_test.go
89 lines (74 loc) · 2.16 KB
/
extension_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
// Copyright © 2023 Ory Corp
// SPDX-License-Identifier: Apache-2.0
package schema
import (
"bytes"
"context"
"fmt"
"testing"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
"github.com/ory/jsonschema/v3"
_ "github.com/ory/jsonschema/v3/fileloader"
)
type extensionStub struct {
identifiers []string
accountNames []string
}
func (r *extensionStub) Run(ctx jsonschema.ValidationContext, config ExtensionConfig, value interface{}) error {
if config.Credentials.Password.Identifier {
r.identifiers = append(r.identifiers, fmt.Sprintf("%s", value))
}
if config.Credentials.TOTP.AccountName {
r.accountNames = append(r.accountNames, fmt.Sprintf("%s", value))
}
return nil
}
func (r *extensionStub) Finish() error {
return nil
}
var ctx = context.Background()
func TestExtensionRunner(t *testing.T) {
t.Run("method=get identifier", func(t *testing.T) {
for k, tc := range []struct {
expectErr error
schema string
doc string
expect []string
}{
{
doc: `{"email":"foo@ory.sh"}`,
schema: "file://./stub/extension/schema.json",
expect: []string{"foo@ory.sh"},
},
{
doc: `{"emails":["foo@ory.sh","bar@ory.sh"]}`,
schema: "file://./stub/extension/schema.nested.json",
expect: []string{"foo@ory.sh", "bar@ory.sh"},
},
} {
t.Run(fmt.Sprintf("case=%d", k), func(t *testing.T) {
c := jsonschema.NewCompiler()
runner, err := NewExtensionRunner(ctx)
require.NoError(t, err)
r := new(extensionStub)
runner.AddRunner(r).Register(c)
err = c.MustCompile(ctx, tc.schema).Validate(bytes.NewBufferString(tc.doc))
if tc.expectErr != nil {
require.EqualError(t, err, tc.expectErr.Error())
}
assert.EqualValues(t, tc.expect, r.identifiers)
assert.EqualValues(t, tc.expect, r.accountNames)
})
}
})
t.Run("method=applies meta schema", func(t *testing.T) {
c := jsonschema.NewCompiler()
runner, err := NewExtensionRunner(ctx)
require.NoError(t, err)
runner.Register(c)
_, err = c.Compile(ctx, "file://./stub/extension/invalid.schema.json")
assert.Error(t, err)
assert.Contains(t, err.Error(), "expected boolean, but got number")
})
}