-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathrelationships_test.go
74 lines (62 loc) · 1.9 KB
/
relationships_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
package jsonapi_test
import (
"testing"
"github.com/smotes/jsonapi"
)
func TestRelationships_Add_WhenNil(t *testing.T) {
defer catchPanic(t, "Relationships", "Add")
var rs jsonapi.Relationships
rs.Add("foo", &jsonapi.Relationship{})
}
func TestRelationships_Add(t *testing.T) {
var (
rs = jsonapi.Relationships{}
key = "foo"
expected = &jsonapi.Relationship{}
)
rs.Add(key, expected)
if actual, ok := rs[key]; actual == nil || !ok {
t.Error("underlying map in Relationships should have value associated with key after Relationships.Add")
} else if actual != expected {
t.Errorf("unexpected value after Relationships.Add, expected: %s, actual: %s",
expected, actual)
}
}
func TestRelationships_Get_WhenNil(t *testing.T) {
defer catchPanic(t, "Relationships", "Get")
var rs jsonapi.Relationships
rs.Get("foo")
}
func TestRelationships_Get(t *testing.T) {
var (
rs = jsonapi.Relationships{}
key = "foo"
expected = &jsonapi.Relationship{}
)
if actual, ok := rs.Get(key); actual != nil || ok {
t.Error("Relationships.Get should return nil/false when no value is associated with the key")
}
rs.Add(key, expected)
if actual, ok := rs.Get(key); !ok {
t.Error("expected Relationships.Get to return true existence check after Relationships.Add for the given key")
} else if actual != expected {
t.Errorf("unexpected value after Relationships.Get, expected: %s, actual: %s",
expected, actual)
}
}
func TestRelationships_Delete_WhenNil(t *testing.T) {
defer catchPanic(t, "Relationships", "Delete")
var rs jsonapi.Relationships
rs.Delete("foo")
}
func TestRelationships_Delete(t *testing.T) {
var (
rs = jsonapi.Relationships{}
key = "foo"
)
rs.Add(key, &jsonapi.Relationship{})
rs.Delete(key)
if actual, ok := rs.Get(key); actual != nil || ok {
t.Error("Relationships.Get should return nil/false after calling Relationships.Delete for the given key")
}
}