-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathlink_test.go
69 lines (64 loc) · 1.24 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
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",
AdditionalFields: map[string]any{
"method": "GET",
},
},
data: `{
"rel": "test",
"href": "https://example.com/test",
"method": "GET"
}`,
},
}
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)
})
}
}