-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathfrom_resource_test.go
126 lines (91 loc) · 2.88 KB
/
from_resource_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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
package jsonapi_test
import (
"testing"
"github.com/smotes/jsonapi"
)
func TestFromResource_WhenNoAdapter(t *testing.T) {
s := struct{}{}
r := &jsonapi.Resource{}
err := jsonapi.FromResource(s, r, true)
if err == nil {
t.Error("FromResource() should return error when adapter does not satisfy identity write interface")
}
}
// id
type badIDWriteAdapter struct{}
func (a *badIDWriteAdapter) SetID(id string) error {
return testErr
}
func (a *badIDWriteAdapter) SetType(typ string) error {
return nil
}
func TestFromResource_WhenSetIDError(t *testing.T) {
testFromResourceForError(t, &badIDWriteAdapter{}, "SetID", testErr)
}
// type
type badTypeWriteAdapter struct{}
func (a *badTypeWriteAdapter) SetID(id string) error {
return nil
}
func (a *badTypeWriteAdapter) SetType(typ string) error {
return testErr
}
func TestFromResource_WhenSetTypeError(t *testing.T) {
testFromResourceForError(t, &badTypeWriteAdapter{}, "SetType", testErr)
}
// attributes
type badAttributesWriteAdapter struct{}
func (a *badAttributesWriteAdapter) SetID(id string) error {
return nil
}
func (a *badAttributesWriteAdapter) SetType(typ string) error {
return nil
}
func (a *badAttributesWriteAdapter) SetAttributes(v map[string]interface{}) error {
return testErr
}
func TestFromResource_WhenSetAttributesError(t *testing.T) {
testFromResourceForError(t, &badAttributesWriteAdapter{}, "SetAttributes", testErr)
}
// relationships
type badRelationshipsWriteAdapter struct{}
func (a *badRelationshipsWriteAdapter) SetID(id string) error {
return nil
}
func (a *badRelationshipsWriteAdapter) SetType(typ string) error {
return nil
}
func (a *badRelationshipsWriteAdapter) SetRelationships(rs jsonapi.Relationships) error {
return testErr
}
func TestFromResource_WhenSetRelationshipsError(t *testing.T) {
testFromResourceForError(t, &badRelationshipsWriteAdapter{}, "SetRelationships", testErr)
}
type notFullWriteAdapter struct{}
func (a *notFullWriteAdapter) SetID(id string) error {
return nil
}
func (a *notFullWriteAdapter) SetType(typ string) error {
return nil
}
func (a *notFullWriteAdapter) SetAttributes(attrs map[string]interface{}) error {
return testErr
}
func (a *notFullWriteAdapter) SetRelationships(rels jsonapi.Relationships) error {
return testErr
}
func TestFromResource_WhenNotFull(t *testing.T) {
adapter := notFullWriteAdapter{}
r := jsonapi.Resource{}
if err := jsonapi.FromResource(&adapter, &r, false); err != nil {
t.Error("unexpected error when calling FromResource with full=false, should not set attributes or relationships")
}
}
// helpers
func testFromResourceForError(t *testing.T, adapter interface{}, method string, expected error) {
r := jsonapi.Resource{ID: "test"}
if actual := jsonapi.FromResource(adapter, &r, true); actual != expected {
t.Errorf("expected FromResource to return error from adapter.%s, expected: %v, got: %v",
method, expected, actual)
}
}