-
Notifications
You must be signed in to change notification settings - Fork 1
/
collections_test.gno
499 lines (437 loc) · 14.8 KB
/
collections_test.gno
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
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
package zentasktic
import (
"testing"
"gno.land/p/demo/avl"
)
/*
func Test_AddCollection(t *testing.T) {
collection := Collection{Id: "1", RealmId: "4", Name: "First collection",}
// Test adding a collection successfully.
err := collection.AddCollection()
if err != nil {
t.Errorf("Failed to add collection: %v", err)
}
// Test adding a duplicate task.
cerr := collection.AddCollection()
if cerr != ErrCollectionIdAlreadyExists {
t.Errorf("Expected ErrCollectionIdAlreadyExists, got %v", cerr)
}
}
func Test_RemoveCollection(t *testing.T) {
collection := Collection{Id: "20", RealmId: "4", Name: "Removable collection",}
// Test adding a collection successfully.
err := collection.AddCollection()
if err != nil {
t.Errorf("Failed to add collection: %v", err)
}
retrievedCollection, rerr := GetCollectionById(collection.Id)
if rerr != nil {
t.Errorf("Could not retrieve the added collection")
}
// Test removing a collection
terr := retrievedCollection.RemoveCollection()
if terr != ErrCollectionNotRemoved {
t.Errorf("Expected ErrCollectionNotRemoved, got %v", terr)
}
}
func Test_EditCollection(t *testing.T) {
collection := Collection{Id: "2", RealmId: "4", Name: "Second collection",}
// Test adding a collection successfully.
err := collection.AddCollection()
if err != nil {
t.Errorf("Failed to add collection: %v", err)
}
// Test editing the collection
editedCollection := Collection{Id: collection.Id, RealmId: collection.RealmId, Name: "Edited collection",}
cerr := editedCollection.EditCollection()
if cerr != nil {
t.Errorf("Failed to edit the collection")
}
retrievedCollection, _ := GetCollectionById(editedCollection.Id)
if retrievedCollection.Name != "Edited collection" {
t.Errorf("Collection was not edited")
}
}
func Test_AddProjectToCollection(t *testing.T){
// Example Collection and Projects
col := Collection{Id: "1", Name: "First collection", RealmId: "4",}
prj := Project{Id: "10", Body: "Project 10", RealmId: "1",}
Collections.Set(col.Id, col) // Mock existing collections
tests := []struct {
name string
collection Collection
project Project
wantErr bool
errMsg error
}{
{
name: "Attach to existing collection",
collection: col,
project: prj,
wantErr: false,
},
{
name: "Attach to non-existing collection",
collection: Collection{Id: "200", Name: "Collection 200", RealmId: "4",},
project: prj,
wantErr: true,
errMsg: ErrCollectionIdNotFound,
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
err := tt.collection.AddProjectToCollection(tt.project)
if (err != nil) != tt.wantErr {
t.Errorf("AddProjectToCollection() error = %v, wantErr %v", err, tt.wantErr)
}
if tt.wantErr && err != tt.errMsg {
t.Errorf("AddProjectToCollection() error = %v, expected %v", err, tt.errMsg)
}
// For successful attach, verify the project is added to the collection's tasks.
if !tt.wantErr {
projects, exist := CollectionProjects.Get(tt.collection.Id)
if !exist || len(projects.([]Project)) == 0 {
t.Errorf("Project was not added to the collection")
} else {
found := false
for _, project := range projects.([]Project) {
if project.Id == tt.project.Id {
found = true
break
}
}
if !found {
t.Errorf("Project was not attached to the collection")
}
}
}
})
}
}
func Test_AddTaskToCollection(t *testing.T){
// Example Collection and Tasks
col := Collection{Id: "2", Name: "Second Collection", RealmId: "4",}
tsk := Task{Id: "30", Body: "Task 30", RealmId: "1",}
Collections.Set(col.Id, col) // Mock existing collections
tests := []struct {
name string
collection Collection
task Task
wantErr bool
errMsg error
}{
{
name: "Attach to existing collection",
collection: col,
task: tsk,
wantErr: false,
},
{
name: "Attach to non-existing collection",
collection: Collection{Id: "210", Name: "Collection 210", RealmId: "4",},
task: tsk,
wantErr: true,
errMsg: ErrCollectionIdNotFound,
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
err := tt.collection.AddTaskToCollection(tt.task)
if (err != nil) != tt.wantErr {
t.Errorf("AddTaskToCollection() error = %v, wantErr %v", err, tt.wantErr)
}
if tt.wantErr && err != tt.errMsg {
t.Errorf("AddTaskToCollection() error = %v, expected %v", err, tt.errMsg)
}
// For successful attach, verify the task is added to the collection's tasks.
if !tt.wantErr {
tasks, exist := CollectionTasks.Get(tt.collection.Id)
if !exist || len(tasks.([]Task)) == 0 {
t.Errorf("Task was not added to the collection")
} else {
found := false
for _, task := range tasks.([]Task) {
if task.Id == tt.task.Id {
found = true
break
}
}
if !found {
t.Errorf("Task was not attached to the collection")
}
}
}
})
}
}
func Test_RemoveProjectFromCollection(t *testing.T){
// Setup:
collection := Collection{Id: "300", Name: "Collection 300",}
project1 := Project{Id: "21", Body: "Project 21", RealmId: "1",}
project2 := Project{Id: "22", Body: "Project 22", RealmId: "1",}
collection.AddCollection()
project1.AddProject()
project2.AddProject()
collection.AddProjectToCollection(project1)
collection.AddProjectToCollection(project2)
tests := []struct {
name string
project Project
collection Collection
wantErr bool
expectedErr error
}{
{
name: "Remove existing project from collection",
project: project1,
collection: collection,
wantErr: false,
expectedErr: nil,
},
{
name: "Try to remove project from non-existing collection",
project: project1,
collection: Collection{Id: "nonexistent"},
wantErr: true,
expectedErr: ErrCollectionIdNotFound,
},
{
name: "Try to remove non-existing project from collection",
project: Project{Id: "nonexistent"},
collection: collection,
wantErr: true,
expectedErr: ErrProjectByIdNotFound,
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
err := tt.collection.RemoveProjectFromCollection(tt.project)
if tt.wantErr {
if err == nil || err != tt.expectedErr {
t.Errorf("%s: expected error %v, got %v", tt.name, tt.expectedErr, err)
}
} else {
if err != nil {
t.Errorf("%s: unexpected error: %v", tt.name, err)
}
// For successful removal, verify the project is no longer part of the collection's projects
if !tt.wantErr {
projects, _ := CollectionProjects.Get(tt.collection.Id)
for _, project := range projects.([]Project) {
if project.Id == tt.project.Id {
t.Errorf("%s: project was not detached from the collection", tt.name)
break
}
}
}
}
})
}
}
func Test_RemoveTaskFromCollection(t *testing.T){
// setup, re-using parts from Test_AddTaskToCollection
collection := Collection{Id: "40", Name: "Collection 40",}
task1 := Task{Id: "40", Body: "Task 40", RealmId: "1",}
collection.AddCollection()
task1.AddTask()
collection.AddTaskToCollection(task1)
tests := []struct {
name string
task Task
collection Collection
wantErr bool
expectedErr error
}{
{
name: "Remove existing task from collection",
task: task1,
collection: collection,
wantErr: false,
expectedErr: nil,
},
{
name: "Try to remove task from non-existing collection",
task: task1,
collection: Collection{Id: "nonexistent"},
wantErr: true,
expectedErr: ErrCollectionIdNotFound,
},
{
name: "Try to remove non-existing task from collection",
task: Task{Id: "nonexistent"},
collection: collection,
wantErr: true,
expectedErr: ErrTaskByIdNotFound,
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
err := tt.collection.RemoveTaskFromCollection(tt.task)
if tt.wantErr {
if err == nil || err != tt.expectedErr {
t.Errorf("%s: expected error %v, got %v", tt.name, tt.expectedErr, err)
}
} else {
if err != nil {
t.Errorf("%s: unexpected error: %v", tt.name, err)
}
// For successful removal, verify the task is no longer part of the collection's tasks
if !tt.wantErr {
tasks, _ := CollectionTasks.Get(tt.collection.Id)
for _, task := range tasks.([]Task) {
if task.Id == tt.task.Id {
t.Errorf("%s: task was not detached from the collection", tt.name)
break
}
}
}
}
})
}
}
func Test_GetCollectionById(t *testing.T){
// test getting a non-existing collection
nonCollection, err := GetCollectionById("0")
if err != ErrCollectionByIdNotFound {
t.Fatalf("Expected ErrCollectionByIdNotFound, got: %v", err)
}
// test getting the correct collection by id
correctCollection, err := GetCollectionById("1")
if err != nil {
t.Fatalf("Failed to get collection by id, error: %v", err)
}
if correctCollection.Name != "First collection" {
t.Fatalf("Got the wrong collection, with name: %v", correctCollection.Name)
}
}
func Test_GetCollectionTasks(t *testing.T) {
// retrieving objects based on these mocks
//col := Collection{Id: "2", Name: "Second Collection", RealmId: "4",}
tsk := Task{Id: "30", Body: "Task 30", RealmId: "1",}
collection, cerr := GetCollectionById("2")
if cerr != nil {
t.Errorf("GetCollectionById() failed, %v", cerr)
}
collectionTasks, pterr := collection.GetCollectionTasks()
if len(collectionTasks) == 0 {
t.Errorf("GetCollectionTasks() failed, %v", pterr)
}
// test detaching from an existing collection
dtterr := collection.RemoveTaskFromCollection(tsk)
if dtterr != nil {
t.Errorf("RemoveTaskFromCollection() failed, %v", dtterr)
}
collectionWithNoTasks, pterr := collection.GetCollectionTasks()
if len(collectionWithNoTasks) != 0 {
t.Errorf("GetCollectionTasks() after detach failed, %v", pterr)
}
// add task back to collection, for tests mockup integrity
collection.AddTaskToCollection(tsk)
}
func Test_GetCollectionProjects(t *testing.T) {
// retrieving objects based on these mocks
//col := Collection{Id: "1", Name: "First Collection", RealmId: "4",}
prj := Project{Id: "10", Body: "Project 10", RealmId: "2", ContextId: "2", Due: "2024-01-01"}
collection, cerr := GetCollectionById("1")
if cerr != nil {
t.Errorf("GetCollectionById() failed, %v", cerr)
}
collectionProjects, pterr := collection.GetCollectionProjects()
if len(collectionProjects) == 0 {
t.Errorf("GetCollectionProjects() failed, %v", pterr)
}
// test detaching from an existing collection
dtterr := collection.RemoveProjectFromCollection(prj)
if dtterr != nil {
t.Errorf("RemoveProjectFromCollection() failed, %v", dtterr)
}
collectionWithNoProjects, pterr := collection.GetCollectionProjects()
if len(collectionWithNoProjects) != 0 {
t.Errorf("GetCollectionProjects() after detach failed, %v", pterr)
}
// add project back to collection, for tests mockup integrity
collection.AddProjectToCollection(prj)
}
func Test_GetAllCollections(t *testing.T){
// mocking the collections based on previous tests
// TODO: add isolation?
knownCollections := []Collection{
{
Id: "1",
RealmId: "4",
Name: "First collection",
Tasks: nil,
Projects: []Project{
{
Id: "10",
ContextId: "2",
RealmId: "4",
Tasks: nil,
Body: "Project 10",
Due: "2024-01-01",
},
},
},
{
Id: "2",
RealmId: "4",
Name: "Second Collection",
Tasks: []Task{
{
Id:"30",
ProjectId:"",
ContextId:"",
RealmId:"4",
Body:"Task 30",
Due:"",
Alert:"",
},
},
Projects: nil,
},
{
Id:"20",
RealmId:"4",
Name:"Removable collection",
Tasks: nil,
Projects: nil,
},
{
Id: "300",
Name: "Collection 300",
Tasks: nil,
Projects: []Project {
{
Id:"22",
ContextId:"",
RealmId:"4",
Tasks: nil,
Body:"Project 22",
Due:"",
},
},
},
{
Id: "40",
Name: "Collection 40",
Tasks: nil,
Projects: nil,
},
}
// Manually marshal the known collections to create the expected outcome.
collectionsObject := CollectionsObject{Collections: knownCollections}
expected, err := collectionsObject.MarshalJSON()
if err != nil {
t.Fatalf("Failed to manually marshal known collections: %v", err)
}
// Execute GetAllCollections() to get the actual outcome.
actual, err := GetAllCollections()
if err != nil {
t.Fatalf("GetAllCollections() failed with error: %v", err)
}
// Compare the expected and actual outcomes.
if string(expected) != actual {
t.Errorf("Expected and actual collections JSON strings do not match.\nExpected: %s\nActual: %s", string(expected), actual)
}
}
*/