-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathlink_test.go
95 lines (90 loc) · 1.74 KB
/
link_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
package stac_test
import (
"encoding/json"
"fmt"
"testing"
"github.com/planetlabs/go-stac"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
)
func TestLink(t *testing.T) {
cases := []struct {
link *stac.Link
data string
}{
{
link: &stac.Link{
Rel: "test",
Href: "https://example.com/test",
},
data: `{
"rel": "test",
"href": "https://example.com/test"
}`,
},
{
link: &stac.Link{
Rel: "test",
Title: "Test Link",
Type: "text/plain",
Href: "https://example.com/test",
},
data: `{
"rel": "test",
"title": "Test Link",
"type": "text/plain",
"href": "https://example.com/test"
}`,
},
{
link: &stac.Link{
Rel: "test",
Href: "https://example.com/test",
Method: "GET",
Headers: map[string]any{
"Content-Type": "test-content-type",
},
Body: map[string]any{
"foo": "bar",
},
},
data: `{
"rel": "test",
"href": "https://example.com/test",
"method": "GET",
"headers": {
"Content-Type": "test-content-type"
},
"body": {
"foo": "bar"
}
}`,
},
{
link: &stac.Link{
Rel: "test",
Href: "https://example.com/test",
Method: "GET",
AdditionalFields: map[string]any{
"custom": "custom-link",
},
},
data: `{
"rel": "test",
"href": "https://example.com/test",
"method": "GET",
"custom": "custom-link"
}`,
},
}
for i, c := range cases {
t.Run(fmt.Sprintf("case %d", i), func(t *testing.T) {
data, err := json.Marshal(c.link)
require.NoError(t, err)
assert.JSONEq(t, c.data, string(data))
l := &stac.Link{}
require.NoError(t, json.Unmarshal([]byte(c.data), l))
assert.Equal(t, c.link, l)
})
}
}