forked from ory/kratos
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontext_test.go
45 lines (40 loc) · 1.22 KB
/
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
// Copyright © 2023 Ory Corp
// SPDX-License-Identifier: Apache-2.0
package schema
import (
"fmt"
"testing"
"github.com/stretchr/testify/assert"
"github.com/ory/jsonschema/v3"
)
func TestContextSetRoot(t *testing.T) {
for k, tc := range []struct {
in jsonschema.ValidationError
head string
expect jsonschema.ValidationError
}{
{
head: "traits",
in: jsonschema.ValidationError{
InstancePtr: "#/foo/bar",
Context: &jsonschema.ValidationErrorContextRequired{Missing: []string{"#/foo/bar/baz"}},
Causes: []*jsonschema.ValidationError{{
InstancePtr: "#/foo/bar",
Context: &jsonschema.ValidationErrorContextRequired{Missing: []string{"#/foo/bar/baz"}},
}},
},
expect: jsonschema.ValidationError{
InstancePtr: "#/traits/foo/bar",
Context: &jsonschema.ValidationErrorContextRequired{Missing: []string{"#/traits/foo/bar/baz"}},
Causes: []*jsonschema.ValidationError{{
InstancePtr: "#/traits/foo/bar",
Context: &jsonschema.ValidationErrorContextRequired{Missing: []string{"#/traits/foo/bar/baz"}},
}},
},
},
} {
t.Run(fmt.Sprintf("case=%d", k), func(t *testing.T) {
assert.EqualValues(t, tc.expect, *ContextSetRoot(&tc.in, tc.head))
})
}
}