summaryrefslogtreecommitdiff
path: root/internal/commands/archive_test.go
blob: ae9ce1f5523ca0b52f5a836e77e68b24b44217b6 (plain)
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
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
package commands

import (
	"context"
	"strings"
	"testing"

	"git.tjp.lol/punchcard/internal/queries"
)

func TestArchiveCommand(t *testing.T) {
	tests := []struct {
		name            string
		setupData       func(*queries.Queries) (clientID, projectID int64)
		args            []string
		expectedOutputs []string
		expectError     bool
		errorContains   string
	}{
		{
			name: "archive client by name",
			setupData: func(q *queries.Queries) (int64, int64) {
				client, _ := q.CreateClient(context.Background(), queries.CreateClientParams{
					Name: "TestClient",
				})
				return client.ID, 0
			},
			args:            []string{"archive", "--client", "TestClient"},
			expectedOutputs: []string{"Archived client: TestClient"},
			expectError:     false,
		},
		{
			name: "archive client by ID",
			setupData: func(q *queries.Queries) (int64, int64) {
				client, _ := q.CreateClient(context.Background(), queries.CreateClientParams{
					Name: "ClientByID",
				})
				return client.ID, 0
			},
			args:            []string{"archive", "--client", "1"},
			expectedOutputs: []string{"Archived client: ClientByID"},
			expectError:     false,
		},
		{
			name: "archive project by name",
			setupData: func(q *queries.Queries) (int64, int64) {
				client, _ := q.CreateClient(context.Background(), queries.CreateClientParams{
					Name: "TestClient",
				})
				project, _ := q.CreateProject(context.Background(), queries.CreateProjectParams{
					Name:     "TestProject",
					ClientID: client.ID,
				})
				return client.ID, project.ID
			},
			args:            []string{"archive", "--project", "TestProject"},
			expectedOutputs: []string{"Archived project: TestProject"},
			expectError:     false,
		},
		{
			name: "archive project by ID",
			setupData: func(q *queries.Queries) (int64, int64) {
				client, _ := q.CreateClient(context.Background(), queries.CreateClientParams{
					Name: "TestClient",
				})
				project, _ := q.CreateProject(context.Background(), queries.CreateProjectParams{
					Name:     "ProjectByID",
					ClientID: client.ID,
				})
				return client.ID, project.ID
			},
			args:            []string{"archive", "--project", "1"},
			expectedOutputs: []string{"Archived project: ProjectByID"},
			expectError:     false,
		},
		{
			name:          "archive without flags returns error",
			setupData:     func(q *queries.Queries) (int64, int64) { return 0, 0 },
			args:          []string{"archive"},
			expectError:   true,
			errorContains: "either --client or --project must be specified",
		},
		{
			name: "archive with both client and project flags returns error",
			setupData: func(q *queries.Queries) (int64, int64) {
				client, _ := q.CreateClient(context.Background(), queries.CreateClientParams{
					Name: "TestClient",
				})
				project, _ := q.CreateProject(context.Background(), queries.CreateProjectParams{
					Name:     "TestProject",
					ClientID: client.ID,
				})
				return client.ID, project.ID
			},
			args:          []string{"archive", "--client", "TestClient", "--project", "TestProject"},
			expectError:   true,
			errorContains: "cannot specify both --client and --project",
		},
		{
			name:          "archive nonexistent client returns error",
			setupData:     func(q *queries.Queries) (int64, int64) { return 0, 0 },
			args:          []string{"archive", "--client", "NonexistentClient"},
			expectError:   true,
			errorContains: "failed to find client",
		},
		{
			name:          "archive nonexistent project returns error",
			setupData:     func(q *queries.Queries) (int64, int64) { return 0, 0 },
			args:          []string{"archive", "--project", "NonexistentProject"},
			expectError:   true,
			errorContains: "failed to find project",
		},
		{
			name: "archive already archived client succeeds",
			setupData: func(q *queries.Queries) (int64, int64) {
				client, _ := q.CreateClient(context.Background(), queries.CreateClientParams{
					Name: "AlreadyArchived",
				})
				_ = q.ArchiveClient(context.Background(), client.ID)
				return client.ID, 0
			},
			args:            []string{"archive", "--client", "AlreadyArchived"},
			expectedOutputs: []string{"Archived client: AlreadyArchived"},
			expectError:     false,
		},
		{
			name: "archive client using short flag",
			setupData: func(q *queries.Queries) (int64, int64) {
				client, _ := q.CreateClient(context.Background(), queries.CreateClientParams{
					Name: "ShortFlagClient",
				})
				return client.ID, 0
			},
			args:            []string{"archive", "-c", "ShortFlagClient"},
			expectedOutputs: []string{"Archived client: ShortFlagClient"},
			expectError:     false,
		},
		{
			name: "archive project using short flag",
			setupData: func(q *queries.Queries) (int64, int64) {
				client, _ := q.CreateClient(context.Background(), queries.CreateClientParams{
					Name: "TestClient",
				})
				project, _ := q.CreateProject(context.Background(), queries.CreateProjectParams{
					Name:     "ShortFlagProject",
					ClientID: client.ID,
				})
				return client.ID, project.ID
			},
			args:            []string{"archive", "-p", "ShortFlagProject"},
			expectedOutputs: []string{"Archived project: ShortFlagProject"},
			expectError:     false,
		},
	}

	for _, tt := range tests {
		t.Run(tt.name, func(t *testing.T) {
			q, cleanup := setupTestDB(t)
			defer cleanup()

			tt.setupData(q)

			output, err := executeCommandWithDB(t, q, tt.args...)

			if tt.expectError {
				if err == nil {
					t.Errorf("Expected error but got none")
				} else if tt.errorContains != "" && !strings.Contains(err.Error(), tt.errorContains) {
					t.Errorf("Expected error to contain %q, got %q", tt.errorContains, err.Error())
				}
				return
			}

			if err != nil {
				t.Errorf("Unexpected error: %v", err)
				return
			}

			found := false
			for _, expectedOutput := range tt.expectedOutputs {
				if strings.Contains(output, expectedOutput) {
					found = true
					break
				}
			}

			if !found {
				t.Errorf("Expected output to contain one of %v, got %q", tt.expectedOutputs, output)
			}
		})
	}
}

func TestUnarchiveCommand(t *testing.T) {
	tests := []struct {
		name            string
		setupData       func(*queries.Queries) (clientID, projectID int64)
		args            []string
		expectedOutputs []string
		expectError     bool
		errorContains   string
	}{
		{
			name: "unarchive client by name",
			setupData: func(q *queries.Queries) (int64, int64) {
				client, _ := q.CreateClient(context.Background(), queries.CreateClientParams{
					Name: "ArchivedClient",
				})
				_ = q.ArchiveClient(context.Background(), client.ID)
				return client.ID, 0
			},
			args:            []string{"unarchive", "--client", "ArchivedClient"},
			expectedOutputs: []string{"Unarchived client: ArchivedClient"},
			expectError:     false,
		},
		{
			name: "unarchive client by ID",
			setupData: func(q *queries.Queries) (int64, int64) {
				client, _ := q.CreateClient(context.Background(), queries.CreateClientParams{
					Name: "ClientByID",
				})
				_ = q.ArchiveClient(context.Background(), client.ID)
				return client.ID, 0
			},
			args:            []string{"unarchive", "--client", "1"},
			expectedOutputs: []string{"Unarchived client: ClientByID"},
			expectError:     false,
		},
		{
			name: "unarchive project by name",
			setupData: func(q *queries.Queries) (int64, int64) {
				client, _ := q.CreateClient(context.Background(), queries.CreateClientParams{
					Name: "TestClient",
				})
				project, _ := q.CreateProject(context.Background(), queries.CreateProjectParams{
					Name:     "ArchivedProject",
					ClientID: client.ID,
				})
				_ = q.ArchiveProject(context.Background(), project.ID)
				return client.ID, project.ID
			},
			args:            []string{"unarchive", "--project", "ArchivedProject"},
			expectedOutputs: []string{"Unarchived project: ArchivedProject"},
			expectError:     false,
		},
		{
			name: "unarchive project by ID",
			setupData: func(q *queries.Queries) (int64, int64) {
				client, _ := q.CreateClient(context.Background(), queries.CreateClientParams{
					Name: "TestClient",
				})
				project, _ := q.CreateProject(context.Background(), queries.CreateProjectParams{
					Name:     "ProjectByID",
					ClientID: client.ID,
				})
				_ = q.ArchiveProject(context.Background(), project.ID)
				return client.ID, project.ID
			},
			args:            []string{"unarchive", "--project", "1"},
			expectedOutputs: []string{"Unarchived project: ProjectByID"},
			expectError:     false,
		},
		{
			name:          "unarchive without flags returns error",
			setupData:     func(q *queries.Queries) (int64, int64) { return 0, 0 },
			args:          []string{"unarchive"},
			expectError:   true,
			errorContains: "either --client or --project must be specified",
		},
		{
			name: "unarchive with both client and project flags returns error",
			setupData: func(q *queries.Queries) (int64, int64) {
				client, _ := q.CreateClient(context.Background(), queries.CreateClientParams{
					Name: "TestClient",
				})
				project, _ := q.CreateProject(context.Background(), queries.CreateProjectParams{
					Name:     "TestProject",
					ClientID: client.ID,
				})
				_ = q.ArchiveClient(context.Background(), client.ID)
				_ = q.ArchiveProject(context.Background(), project.ID)
				return client.ID, project.ID
			},
			args:          []string{"unarchive", "--client", "TestClient", "--project", "TestProject"},
			expectError:   true,
			errorContains: "cannot specify both --client and --project",
		},
		{
			name:          "unarchive nonexistent client returns error",
			setupData:     func(q *queries.Queries) (int64, int64) { return 0, 0 },
			args:          []string{"unarchive", "--client", "NonexistentClient"},
			expectError:   true,
			errorContains: "failed to find client",
		},
		{
			name:          "unarchive nonexistent project returns error",
			setupData:     func(q *queries.Queries) (int64, int64) { return 0, 0 },
			args:          []string{"unarchive", "--project", "NonexistentProject"},
			expectError:   true,
			errorContains: "failed to find project",
		},
		{
			name: "unarchive already active client succeeds",
			setupData: func(q *queries.Queries) (int64, int64) {
				client, _ := q.CreateClient(context.Background(), queries.CreateClientParams{
					Name: "ActiveClient",
				})
				return client.ID, 0
			},
			args:            []string{"unarchive", "--client", "ActiveClient"},
			expectedOutputs: []string{"Unarchived client: ActiveClient"},
			expectError:     false,
		},
		{
			name: "unarchive client using short flag",
			setupData: func(q *queries.Queries) (int64, int64) {
				client, _ := q.CreateClient(context.Background(), queries.CreateClientParams{
					Name: "ShortFlagClient",
				})
				_ = q.ArchiveClient(context.Background(), client.ID)
				return client.ID, 0
			},
			args:            []string{"unarchive", "-c", "ShortFlagClient"},
			expectedOutputs: []string{"Unarchived client: ShortFlagClient"},
			expectError:     false,
		},
		{
			name: "unarchive project using short flag",
			setupData: func(q *queries.Queries) (int64, int64) {
				client, _ := q.CreateClient(context.Background(), queries.CreateClientParams{
					Name: "TestClient",
				})
				project, _ := q.CreateProject(context.Background(), queries.CreateProjectParams{
					Name:     "ShortFlagProject",
					ClientID: client.ID,
				})
				_ = q.ArchiveProject(context.Background(), project.ID)
				return client.ID, project.ID
			},
			args:            []string{"unarchive", "-p", "ShortFlagProject"},
			expectedOutputs: []string{"Unarchived project: ShortFlagProject"},
			expectError:     false,
		},
	}

	for _, tt := range tests {
		t.Run(tt.name, func(t *testing.T) {
			q, cleanup := setupTestDB(t)
			defer cleanup()

			tt.setupData(q)

			output, err := executeCommandWithDB(t, q, tt.args...)

			if tt.expectError {
				if err == nil {
					t.Errorf("Expected error but got none")
				} else if tt.errorContains != "" && !strings.Contains(err.Error(), tt.errorContains) {
					t.Errorf("Expected error to contain %q, got %q", tt.errorContains, err.Error())
				}
				return
			}

			if err != nil {
				t.Errorf("Unexpected error: %v", err)
				return
			}

			found := false
			for _, expectedOutput := range tt.expectedOutputs {
				if strings.Contains(output, expectedOutput) {
					found = true
					break
				}
			}

			if !found {
				t.Errorf("Expected output to contain one of %v, got %q", tt.expectedOutputs, output)
			}
		})
	}
}

func TestArchiveStateVerification(t *testing.T) {
	tests := []struct {
		name          string
		setupData     func(*queries.Queries) (entityID int64, isClient bool)
		archiveAction func(*queries.Queries, int64)
		verifyFunc    func(*testing.T, *queries.Queries, int64, bool)
	}{
		{
			name: "client is archived after archive command",
			setupData: func(q *queries.Queries) (int64, bool) {
				client, _ := q.CreateClient(context.Background(), queries.CreateClientParams{
					Name: "TestClient",
				})
				return client.ID, true
			},
			archiveAction: func(q *queries.Queries, id int64) {
				_ = q.ArchiveClient(context.Background(), id)
			},
			verifyFunc: func(t *testing.T, q *queries.Queries, id int64, isClient bool) {
				clients, err := q.FindClient(context.Background(), queries.FindClientParams{
					ID: id,
				})
				if err != nil {
					t.Fatalf("Failed to find client: %v", err)
				}
				if len(clients) != 1 {
					t.Fatalf("Expected 1 client, got %d", len(clients))
				}
				if clients[0].Archived == 0 {
					t.Errorf("Expected client to be archived")
				}
			},
		},
		{
			name: "project is archived after archive command",
			setupData: func(q *queries.Queries) (int64, bool) {
				client, _ := q.CreateClient(context.Background(), queries.CreateClientParams{
					Name: "TestClient",
				})
				project, _ := q.CreateProject(context.Background(), queries.CreateProjectParams{
					Name:     "TestProject",
					ClientID: client.ID,
				})
				return project.ID, false
			},
			archiveAction: func(q *queries.Queries, id int64) {
				_ = q.ArchiveProject(context.Background(), id)
			},
			verifyFunc: func(t *testing.T, q *queries.Queries, id int64, isClient bool) {
				projects, err := q.FindProject(context.Background(), queries.FindProjectParams{
					ID: id,
				})
				if err != nil {
					t.Fatalf("Failed to find project: %v", err)
				}
				if len(projects) != 1 {
					t.Fatalf("Expected 1 project, got %d", len(projects))
				}
				if projects[0].Archived == 0 {
					t.Errorf("Expected project to be archived")
				}
			},
		},
		{
			name: "client is unarchived after unarchive command",
			setupData: func(q *queries.Queries) (int64, bool) {
				client, _ := q.CreateClient(context.Background(), queries.CreateClientParams{
					Name: "ArchivedClient",
				})
				_ = q.ArchiveClient(context.Background(), client.ID)
				return client.ID, true
			},
			archiveAction: func(q *queries.Queries, id int64) {
				_ = q.UnarchiveClient(context.Background(), id)
			},
			verifyFunc: func(t *testing.T, q *queries.Queries, id int64, isClient bool) {
				clients, err := q.FindClient(context.Background(), queries.FindClientParams{
					ID: id,
				})
				if err != nil {
					t.Fatalf("Failed to find client: %v", err)
				}
				if len(clients) != 1 {
					t.Fatalf("Expected 1 client, got %d", len(clients))
				}
				if clients[0].Archived != 0 {
					t.Errorf("Expected client to not be archived")
				}
			},
		},
		{
			name: "project is unarchived after unarchive command",
			setupData: func(q *queries.Queries) (int64, bool) {
				client, _ := q.CreateClient(context.Background(), queries.CreateClientParams{
					Name: "TestClient",
				})
				project, _ := q.CreateProject(context.Background(), queries.CreateProjectParams{
					Name:     "ArchivedProject",
					ClientID: client.ID,
				})
				_ = q.ArchiveProject(context.Background(), project.ID)
				return project.ID, false
			},
			archiveAction: func(q *queries.Queries, id int64) {
				_ = q.UnarchiveProject(context.Background(), id)
			},
			verifyFunc: func(t *testing.T, q *queries.Queries, id int64, isClient bool) {
				projects, err := q.FindProject(context.Background(), queries.FindProjectParams{
					ID: id,
				})
				if err != nil {
					t.Fatalf("Failed to find project: %v", err)
				}
				if len(projects) != 1 {
					t.Fatalf("Expected 1 project, got %d", len(projects))
				}
				if projects[0].Archived != 0 {
					t.Errorf("Expected project to not be archived")
				}
			},
		},
	}

	for _, tt := range tests {
		t.Run(tt.name, func(t *testing.T) {
			q, cleanup := setupTestDB(t)
			defer cleanup()

			entityID, isClient := tt.setupData(q)
			tt.archiveAction(q, entityID)
			tt.verifyFunc(t, q, entityID, isClient)
		})
	}
}