-
Notifications
You must be signed in to change notification settings - Fork 0
/
objects_create_space_test.go
106 lines (84 loc) · 2.59 KB
/
objects_create_space_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
package pubnub
import (
"fmt"
"testing"
h "github.com/pubnub/go/tests/helpers"
"github.com/pubnub/go/utils"
"github.com/stretchr/testify/assert"
)
func AssertCreateSpace(t *testing.T, checkQueryParam, testContext bool) {
assert := assert.New(t)
pn := NewPubNub(NewDemoConfig())
incl := []PNUserSpaceInclude{
PNUserSpaceCustom,
}
custom := make(map[string]interface{})
custom["a"] = "b"
custom["c"] = "d"
queryParam := map[string]string{
"q1": "v1",
"q2": "v2",
}
if !checkQueryParam {
queryParam = nil
}
inclStr := EnumArrayToStringArray(incl)
o := newCreateSpaceBuilder(pn)
if testContext {
o = newCreateSpaceBuilderWithContext(pn, backgroundContext)
}
o.Include(incl)
o.ID("id0")
o.Name("name")
o.Description("exturl")
o.Custom(custom)
o.QueryParam(queryParam)
path, err := o.opts.buildPath()
assert.Nil(err)
h.AssertPathsEqual(t,
fmt.Sprintf("/v1/objects/%s/spaces", pn.Config.SubscribeKey),
path, []int{})
body, err := o.opts.buildBody()
assert.Nil(err)
expectedBody := "{\"id\":\"id0\",\"name\":\"name\",\"description\":\"exturl\",\"custom\":{\"a\":\"b\",\"c\":\"d\"}}"
assert.Equal(expectedBody, string(body))
if checkQueryParam {
u, _ := o.opts.buildQuery()
assert.Equal("v1", u.Get("q1"))
assert.Equal("v2", u.Get("q2"))
assert.Equal(string(utils.JoinChannels(inclStr)), u.Get("include"))
}
}
func TestCreateSpace(t *testing.T) {
AssertCreateSpace(t, true, false)
}
func TestCreateSpaceContext(t *testing.T) {
AssertCreateSpace(t, true, true)
}
func TestCreateSpaceResponseValueError(t *testing.T) {
assert := assert.New(t)
pn := NewPubNub(NewDemoConfig())
opts := &createSpaceOpts{
pubnub: pn,
}
jsonBytes := []byte(`s`)
_, _, err := newPNCreateSpaceResponse(jsonBytes, opts, StatusResponse{})
assert.Equal("pubnub/parsing: Error unmarshalling response: {s}", err.Error())
}
func TestCreateSpaceResponseValuePass(t *testing.T) {
assert := assert.New(t)
pn := NewPubNub(NewDemoConfig())
opts := &createSpaceOpts{
pubnub: pn,
}
jsonBytes := []byte(`{"status":200,"data":{"id":"id2","name":"name","description":"desc","custom":{"a":"b"},"created":"2019-08-19T15:05:51.493894Z","updated":"2019-08-19T15:05:51.493894Z","eTag":"Aee9zsKNndXlHw"}}`)
r, _, err := newPNCreateSpaceResponse(jsonBytes, opts, StatusResponse{})
assert.Equal("id2", r.Data.ID)
assert.Equal("name", r.Data.Name)
assert.Equal("desc", r.Data.Description)
assert.Equal("2019-08-19T15:05:51.493894Z", r.Data.Created)
assert.Equal("2019-08-19T15:05:51.493894Z", r.Data.Updated)
assert.Equal("Aee9zsKNndXlHw", r.Data.ETag)
assert.Equal("b", r.Data.Custom["a"])
assert.Nil(err)
}