-
Notifications
You must be signed in to change notification settings - Fork 9
/
node_test.go
383 lines (292 loc) · 8.08 KB
/
node_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
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
package neo4j
import (
"reflect"
"strconv"
"testing"
)
func TestDefaultConnection(t *testing.T) {
neo4jConnection := Connect("")
if neo4jConnection.Client == nil {
t.Error("Connection client is not set")
}
if neo4jConnection.BaseURL == "" {
t.Error("BaseUrl is not set")
}
if neo4jConnection.NodeURL == "" {
t.Error("NodeUrl is not set")
}
if neo4jConnection.RelationshipURL == "" {
t.Error("RelationshipUrl is not set")
}
if neo4jConnection.IndexNodeURL == "" {
t.Error("IndexNodeUrl is not set")
}
}
func TestGetNodeWithEmptyID(t *testing.T) {
neo4jConnection := Connect("")
node := &Node{}
node.ID = ""
err := neo4jConnection.Get(node)
if err == nil {
t.Error("Error is nil")
}
}
func TestGetNodeWithInvalidID(t *testing.T) {
neo4jConnection := Connect("")
node := &Node{}
node.ID = "asdfasdfas"
err := neo4jConnection.Get(node)
if err == nil {
t.Error("Error is nil")
}
}
func TestGetNodeReturnsErrorObjectOnError(t *testing.T) {
neo4jConnection := Connect("")
node := &Node{}
node.ID = "asdfasdfas"
err := neo4jConnection.Get(node)
if err == nil {
t.Error("There must be error")
}
tt := reflect.TypeOf(err).String()
// find a better way to check this
if tt != "*errors.errorString" {
t.Error("Error is not valid!")
}
}
func TestGetNodeWithIntMaxID(t *testing.T) {
maxInt := strconv.Itoa(int(^uint(0) >> 1))
neo4jConnection := Connect("")
node := &Node{}
node.ID = maxInt
if err := neo4jConnection.Get(node); err == nil {
t.Error("There must be error")
}
}
func checkForSetValues(t *testing.T, node *Node, err error) {
if err != nil {
t.Error("Error is not nil on valid test")
}
if node == nil {
t.Error("Node is nil on valid test")
}
if node.Payload == nil {
return
}
if node.Payload.PagedTraverse == "" {
t.Error("PagedTraverse on valid node is nil")
}
if node.Payload.OutgoingRelationships == "" {
t.Error("OutgoingRelationships on valid node is nil")
}
if node.Payload.Traverse == "" {
t.Error("Traverse on valid node is nil")
}
if node.Payload.AllTypedRelationships == "" {
t.Error("AllTypedRelationships on valid node is nil")
}
if node.Payload.Property == "" {
t.Error("Property on valid node is nil")
}
if node.Payload.AllRelationships == "" {
t.Error("AllRelationships on valid node is nil")
}
if node.Payload.Self == "" {
t.Error("Self on valid node is nil")
}
if node.Payload.Properties == "" {
t.Error("Properties on valid node is nil")
}
if node.Payload.OutgoingTypedRelationships == "" {
t.Error("OutgoingTypedRelationships on valid node is nil")
}
if node.Payload.IncomingRelationships == "" {
t.Error("IncomingRelationships on valid node is nil")
}
if node.Payload.IncomingTypedRelationships == "" {
t.Error("IncomingTypedRelationships on valid node is nil")
}
if node.Payload.CreateRelationship == "" {
t.Error("CreateRelationship on valid node is nil")
}
}
func checkForNil(t *testing.T, node *Node) {
if node.ID != "" {
t.Error("ID is set")
}
if node.Data != nil {
t.Error("node data is not nil")
}
if node.Payload.PagedTraverse != "" {
t.Error("PagedTraverse on valid node is not nil")
}
if node.Payload.OutgoingRelationships != "" {
t.Error("OutgoingRelationships on valid node is not nil")
}
if node.Payload.Traverse != "" {
t.Error("Traverse on valid node is not nil")
}
if node.Payload.AllTypedRelationships != "" {
t.Error("AllTypedRelationships on valid node is not nil")
}
if node.Payload.Property != "" {
t.Error("Property on valid node is not nil")
}
if node.Payload.AllRelationships != "" {
t.Error("AllRelationships on valid node is not nil")
}
if node.Payload.Self != "" {
t.Error("Self on valid node is not nil")
}
if node.Payload.Properties != "" {
t.Error("Properties on valid node is not nil")
}
if node.Payload.OutgoingTypedRelationships != "" {
t.Error("OutgoingTypedRelationships on valid node is not nil")
}
if node.Payload.IncomingRelationships != "" {
t.Error("IncomingRelationships on valid node is not nil")
}
if node.Payload.IncomingTypedRelationships != "" {
t.Error("IncomingTypedRelationships on valid node is not nil")
}
if node.Payload.CreateRelationship != "" {
t.Error("CreateRelationship on valid node is not nil")
}
}
func TestCreateNodeWithPassingInvalidObject(t *testing.T) {
t.Log("complete this method")
}
func TestCreateNodeWithPassingValidObjectAndData(t *testing.T) {
node := &Node{}
data := make(map[string]interface{})
data["stringData"] = "firstData"
data["integerData"] = 3
data["floatData"] = 3.0
node.Data = data
neo4jConnection := Connect("")
err := neo4jConnection.Create(node)
testCreatedNodeDeafultvalues(t, node, err)
t.Log("test integer values, all numbers are in float64 format")
if node.Data["stringData"] != "firstData" {
t.Error("string value has changed")
}
checkForSetValues(t, node, err)
}
func TestCreateNodeWithPassingValidObjectAndEmptyData(t *testing.T) {
node := &Node{}
neo4jConnection := Connect("")
err := neo4jConnection.Create(node)
if err != nil {
t.Error(err)
}
testCreatedNodeDeafultvalues(t, node, err)
if len(node.Data) != 0 {
t.Error("node data len must be 0")
}
checkForSetValues(t, node, err)
}
func testCreatedNodeDeafultvalues(t *testing.T, node *Node, err error) {
if err != nil {
t.Error("node creation returned err")
}
if node.ID == "" {
t.Error("Assigning node id doesnt work")
}
}
func TestUpdateNodeWithEmptyID(t *testing.T) {
node := &Node{}
neo4jConnection := Connect("")
err := neo4jConnection.Update(node)
if err == nil {
t.Error("Error is nil")
}
}
func TestBatchApiWithNode(t *testing.T) {
neo4jConnection := Connect("")
node := &Node{}
data := make(map[string]interface{})
data["CreateNodeWithBatch"] = "dataa"
node.Data = data
err := neo4jConnection.Create(node)
if err != nil {
t.Error("Error is not nil", err)
}
if node.ID == "" {
t.Error("Node id is nil")
}
if node.Data["CreateNodeWithBatch"] != "dataa" {
t.Error("Node data is nil")
}
node.Data = nil
err = neo4jConnection.Get(node)
if err != nil {
t.Error("Error is not nil")
}
if node.Data["CreateNodeWithBatch"] != "dataa" {
t.Error("Node data is nil")
}
node.Data["UpdateNodeWithBatch"] = "tadaa"
err = neo4jConnection.Update(node)
if err != nil {
t.Error("Update returned error", err)
}
if len(node.Data) != 2 {
t.Error("Data length must be 2")
}
if node.Data["UpdateNodeWithBatch"] != "tadaa" {
t.Error("Update didnt updated data properly ")
}
if err := neo4jConnection.Delete(node); err != nil {
t.Error("Error while deleting node", err)
}
if err := neo4jConnection.Get(node); err == nil {
t.Error("Getting deleted node succeeded")
}
}
func TestBatchApiWithRelationship(t *testing.T) {
neo4jConnection := Connect("")
node := &Node{}
node.Data = map[string]interface{}{
"hede": "debe",
}
if err := neo4jConnection.Create(node); err != nil {
t.Error("Error while creating node", err)
}
node2 := node
if err := neo4jConnection.Create(node2); err != nil {
t.Error("Error while creating node", err)
}
//create relationship
relationship := &Relationship{}
dataRel := make(map[string]interface{})
dataRel["dada"] = "gaga"
relationship.Data = dataRel
relationship.Type = "sampleType"
relationship.StartNodeID = node.ID
relationship.EndNodeID = node2.ID
if err := neo4jConnection.Create(relationship); err != nil {
t.Error("Error while creating relationship", err)
}
if relationship.ID == "" {
t.Error("Relationship is not created or id is not assigned")
}
// update relationship
relationship.Data["updatingRelationship"] = "update data"
if err := neo4jConnection.Update(relationship); err != nil {
t.Error("Error while creating relationship", err)
}
if relationship.Data["updatingRelationship"] != "update data" {
t.Error("Update is not completed successfully")
}
if relationship.ID == "" {
t.Error("ID is missing after update")
}
// delete relationship
if err := neo4jConnection.Delete(relationship); err != nil {
t.Error("Error while deleting relationship", err)
}
if err := neo4jConnection.Get(relationship); err == nil {
t.Error("Deleted relationship returned result", err)
}
}