-
Notifications
You must be signed in to change notification settings - Fork 8
/
link_test.go
59 lines (51 loc) · 1.08 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
package jsonapi_test
import (
"errors"
"testing"
"github.com/mfcochauxlaberge/jsonapi"
"github.com/stretchr/testify/assert"
)
func TestMarshalLink(t *testing.T) {
assert := assert.New(t)
tests := []struct {
link jsonapi.Link
expectedPayload string
expectedErr bool
}{
{
link: jsonapi.Link{},
expectedPayload: `""`,
}, {
link: jsonapi.Link{
HRef: "example.org",
},
expectedPayload: `"example.org"`,
}, {
link: jsonapi.Link{
HRef: "example.org",
Meta: map[string]any{
"s": "abc",
"n": 123,
},
},
expectedPayload: `{"href":"example.org","meta":{"n":123,"s":"abc"}}`,
}, {
link: jsonapi.Link{
HRef: "example.org",
Meta: map[string]any{
"bad": badMarshaler{},
},
},
expectedErr: true,
},
}
for _, test := range tests {
pl, err := test.link.MarshalJSON()
assert.Equal(test.expectedErr, err != nil)
assert.Equal(test.expectedPayload, string(pl))
}
}
type badMarshaler struct{}
func (b badMarshaler) MarshalJSON() ([]byte, error) {
return nil, errors.New("error")
}