-
Notifications
You must be signed in to change notification settings - Fork 1
/
test_pykanban.py
969 lines (943 loc) · 51.8 KB
/
test_pykanban.py
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
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
from tabulate import tabulate
from colored import fg, bg, attr
import inflect
import csv
import os
import shutil
import sys
import re
import time
from datetime import datetime
import pytest
from pykanban import *
DESTINATION = "./data/_test_data"
TABLE = {
"\x1b[38;5;15m\x1b[48;5;0m column1 \x1b[0m": [
" #################################################\n"
+ "| Card_1 #\n"
+ "| #\n"
+ "| Description : #\n"
+ "| This task involves creating wireframes #\n"
+ "| and mockups for the different pages and #\n"
+ "| screens of the software application. This may #\n"
+ "| include designing the layout, buttons, input #\n"
+ "| fields, and other visual elements of the user #\n"
+ "| interface. #\n"
+ "| Task Type : #\n"
+ "| Feature Implementation #\n"
+ "| Status : #\n"
+ "| In Progress #\n"
+ "| Estimated Time : #\n"
+ "| 8 hours #\n"
+ "| Notes : #\n"
+ "| This task should be completed before the #\n"
+ "| code for the user interface is written, as it #\n"
+ "| will provide a clear visual guide for the #\n"
+ "| developers. #\n"
+ " ------------------------------------------------",
"",
"",
],
"\x1b[38;5;9m\x1b[48;5;12m column2 \x1b[0m": [
" #################################################\n"
+ "| Card_2 #\n"
+ "| #\n"
+ "| Description : #\n"
+ "| This task involves writing the code #\n"
+ "| that will handle user authentication in the #\n"
+ "| software application. #\n"
+ "| Task Type : #\n"
+ "| Bug Fix #\n"
+ "| Status : #\n"
+ "| Completed #\n"
+ "| Estimated Time : #\n"
+ "| 16 hours #\n"
+ "| Notes : #\n"
+ "| This task should be completed before the #\n"
+ "| login functionality is implemented, as it #\n"
+ "| will provide the necessary code for handling #\n"
+ "| user authentication. #\n"
+ " ------------------------------------------------",
" #################################################\n"
+ "| Card_3 #\n"
+ "| #\n"
+ "| Description : #\n"
+ "| This task involves writing tests that #\n"
+ "| will verify that the authentication module is #\n"
+ "| working correctly. This may include testing #\n"
+ "| different scenarios. #\n"
+ "| Task Type : #\n"
+ "| Refactoring #\n"
+ "| Status : #\n"
+ "| In Progress #\n"
+ "| Estimated Time : #\n"
+ "| 4 hours #\n"
+ "| Notes : #\n"
+ "| This task should be completed after the #\n"
+ "| code for the authentication module has been #\n"
+ "| written, and should be run regularly to #\n"
+ "| ensure the module is functioning properly. #\n"
+ " ------------------------------------------------",
"",
],
"\x1b[38;5;10m\x1b[48;5;13m column3 \x1b[0m": [
" #################################################\n"
+ "| Card_4 #\n"
+ "| #\n"
+ "| Description : #\n"
+ "| This task involves integrating the #\n"
+ "| authentication module into the software #\n"
+ "| application, and implementing the #\n"
+ "| functionality for logging in and out. #\n"
+ "| Task Type : #\n"
+ "| Testing #\n"
+ "| Status : #\n"
+ "| In Progress #\n"
+ "| Estimated Time : #\n"
+ "| 12 hours #\n"
+ "| Notes : #\n"
+ "| This task should be completed after the #\n"
+ "| code for the authentication module and the #\n"
+ "| user interface have been written, and should #\n"
+ "| be tested thoroughly to ensure the login #\n"
+ "| process is working correctly. #\n"
+ " ------------------------------------------------",
" #################################################\n"
+ "| Card_5 #\n"
+ "| #\n"
+ "| Description : #\n"
+ "| This task involves writing the code #\n"
+ "| that will handle the connection to the #\n"
+ "| database used by the software application. #\n"
+ "| This may include implementing functions for #\n"
+ "| executing SQL queries #\n"
+ "| Task Type : #\n"
+ "| Documentation #\n"
+ "| Status : #\n"
+ "| Completed #\n"
+ "| Estimated Time : #\n"
+ "| 6 hours #\n"
+ "| Notes : #\n"
+ "| This task should be completed before the #\n"
+ "| code for accessing the database is written, #\n"
+ "| as it will provide the necessary functions #\n"
+ "| for connecting to the database. #\n"
+ " ------------------------------------------------",
" #################################################\n"
+ "| Card_6 #\n"
+ "| #\n"
+ "| Description : #\n"
+ "| This task involves writing the code for #\n"
+ "| the user profile page, which will display #\n"
+ "| information about the logged-in user, such as #\n"
+ "| their username, email address, and other #\n"
+ "| profile details. #\n"
+ "| Task Type : #\n"
+ "| Deployment #\n"
+ "| Status : #\n"
+ "| Blocked #\n"
+ "| Estimated Time : #\n"
+ "| 2 hours #\n"
+ "| Notes : #\n"
+ "| This task should be completed after the #\n"
+ "| code for the authentication module and the #\n"
+ "| database connection have been written, as it #\n"
+ "| will require accessing the user's data from #\n"
+ "| the database. #\n"
+ " ------------------------------------------------",
],
}
def generate_table():
os.mkdir(DESTINATION)
with open(f"{DESTINATION}/latest.csv", "w") as test_table:
writer = csv.DictWriter(test_table, fieldnames=list(TABLE.keys()))
writer.writeheader()
longest_header_in_cards = 0
for h in list(TABLE.keys()):
if longest_header_in_cards < len(TABLE[h]):
longest_header_in_cards = len(TABLE[h])
else:
continue
for row in range(longest_header_in_cards):
temp_ = {}
for h_pointer in TABLE:
if row in range(len(TABLE[h_pointer])):
temp_[h_pointer] = TABLE[h_pointer][row]
else:
continue
writer.writerow(temp_)
...
def test_card():
title = "Card_1"
sub_titles = ["Description", "Task Type", "Status", "Estimated Time", "Notes"]
lines_under_sub_titles = (
"This task involves creating wireframes and mockups for the different pages and screens of the software application. This may include designing the layout, buttons, input fields, and other visual elements of the user interface.",
"Feature Implementation",
"In Progress",
"8 hours",
"This task should be completed before the code for the user interface is written, as it will provide a clear visual guide for the developers.",
)
card = (
Card.add_title(title)
.add_sub_titles(sub_titles)
.add_lines(*lines_under_sub_titles)
.print_here()
)
assert (
card
== " #################################################\n"
+ "| Card_1 #\n"
+ "| #\n"
+ "| Description : #\n"
+ "| This task involves creating wireframes #\n"
+ "| and mockups for the different pages and #\n"
+ "| screens of the software application. This may #\n"
+ "| include designing the layout, buttons, input #\n"
+ "| fields, and other visual elements of the user #\n"
+ "| interface. #\n"
+ "| Task Type : #\n"
+ "| Feature Implementation #\n"
+ "| Status : #\n"
+ "| In Progress #\n"
+ "| Estimated Time : #\n"
+ "| 8 hours #\n"
+ "| Notes : #\n"
+ "| This task should be completed before the #\n"
+ "| code for the user interface is written, as it #\n"
+ "| will provide a clear visual guide for the #\n"
+ "| developers. #\n"
+ " ------------------------------------------------"
)
...
def test_create_header_without_set_color():
# Test with set header name
header = "Test Header"
header_without_color = init_header(header)
result = (
fg("#ffffff") + bg("#000000") + " " + "Test Header" + " " + attr("reset")
)
assert header_without_color == result
# Test without set header name
with pytest.raises(ValueError):
init_header("")
with pytest.raises(TypeError):
init_header()
def test_create_header_with_set_colors():
# Test without Foreground color
header = "Test Header with colors"
header_with_bg = init_header(header, back_color="#00ff00")
result = (
fg("#ffffff")
+ bg("#00ff00")
+ " "
+ "Test Header with colors"
+ " "
+ attr("reset")
)
assert header_with_bg == result
# Test without Background color
header = "Test Header with colors"
header_with_bg = init_header(header, fore_color="#ff0000")
result = (
fg("#ff0000")
+ bg("#000000")
+ " "
+ "Test Header with colors"
+ " "
+ attr("reset")
)
assert header_with_bg == result
# Test with Foreground color and Background color
header = "Test Header with colors"
header_with_bg = init_header(header, fore_color="#ff0000", back_color="#00ff00")
result = (
fg("#ff0000")
+ bg("#00ff00")
+ " "
+ "Test Header with colors"
+ " "
+ attr("reset")
)
assert header_with_bg == result
# Test colors with invaild Hex value
with pytest.raises(TypeError):
init_header(header, fore_color="000000", back_color="#9gffff")
def test_init_table():
assert init_table("_test_data") == "_test_data"
shutil.rmtree(DESTINATION)
with pytest.raises(TypeError):
init_table()
...
def test_view_tables():
destination = "./test_data"
os.mkdir("./data/_temp/")
temp = open("./data/_temp/latest.csv","w")
temp.close()
os.mkdir(destination)
# shutil.rmtree(f'{destination}/.DS_Store')
for f in os.listdir("./data"):
shutil.move(f"./data/{f}", destination)
assert view_tables() == "No Tables Exist"
for f in os.listdir(destination):
shutil.move(f"{destination}/{f}", "./data")
name_tables = []
for nt in os.listdir("./data"):
if nt == ".DS_Store":
continue
name_tables.append(nt)
assert view_tables() == name_tables
os.rmdir(destination)
shutil.rmtree("./data/_temp/")
...
def test_open_table():
# Test open table with only table name to open latest.csv
generate_table()
assert open_table(table_name="_test_data") == TABLE
shutil.rmtree(DESTINATION)
# Test open table without any parameters
with pytest.raises(TypeError):
open_table()
# Test open table to open table history
os.mkdir(DESTINATION)
table_e = {
"\x1b[38;5;15m\x1b[48;5;0m column1 \x1b[0m": [
" #################################################\n"
+ "| Card_1 #\n"
+ "| #\n"
+ "| descriptoin : #\n"
+ "| qwertyqwertyqwerty #\n"
+ "| #\n"
+ "| #\n"
+ "| Commnet : #\n"
+ "| qwertyqwertyqwertyqwertyqwertyqwerty #\n"
+ "| #\n"
+ "| #\n"
+ "| Notes : #\n"
+ "| qwertyqwertyqwertyqwertyqwertyqwerty #\n"
+ "| #\n"
+ "| #\n"
+ " ------------------------------------------------",
" #################################################\n"
+ "| Card_2 #\n"
+ "| #\n"
+ "| Title : #\n"
+ "| qwertyqwertyqwertyqwertyqwertyqwerty #\n"
+ "| #\n"
+ "| #\n"
+ "| Description : #\n"
+ "| qwertyqwertyqwertyqwertyqwertyqwer #\n"
+ "| ty #\n"
+ "| #\n"
+ "| Comment : #\n"
+ "| qwertyqwertyqwertyqwertyqwertyqwertyqw #\n"
+ "| ertyqwertyqwerty #\n"
+ "| #\n"
+ " ------------------------------------------------",
"",
],
"\x1b[38;5;9m\x1b[48;5;12m column2 \x1b[0m": [
" #################################################\n"
+ "| Card_3 #\n"
+ "| #\n"
+ "| Description : #\n"
+ "| qwertyqwertyqwertyqwertyqwertyqwer #\n"
+ "| ty #\n"
+ "| #\n"
+ "| Comment : #\n"
+ "| qwertyqwertyqwertyqwertyqwertyqwerty #\n"
+ "| #\n"
+ "| #\n"
+ "| Notes : #\n"
+ "| qwertyqwertyqwertyqwertyqwertyqwerty #\n"
+ "| #\n"
+ "| #\n"
+ " ------------------------------------------------",
"",
"",
],
"\x1b[38;5;10m\x1b[48;5;13m column3 \x1b[0m": [
" #################################################\n"
+ "| Card_4 #\n"
+ "| #\n"
+ "| des : #\n"
+ "| qwertyqwertyqwerty #\n"
+ "| #\n"
+ "| comment : #\n"
+ "| qwertyqwertyqwertyqwertyqwertyqwerty #\n"
+ "| #\n"
+ "| #\n"
+ "| notes : #\n"
+ "| qwertyqwertyqwerty #\n"
+ "| #\n"
+ "| #\n"
+ " ------------------------------------------------",
" #################################################\n"
+ "| Card_5 #\n"
+ "| #\n"
+ "| des : #\n"
+ "| qwertyqwertyqwerty #\n"
+ "| #\n"
+ "| comment : #\n"
+ "| qwertyqwertyqwertyqwertyqwertyqwerty #\n"
+ "| #\n"
+ "| #\n"
+ "| notes : #\n"
+ "| qwertyqwertyqwerty #\n"
+ "| #\n"
+ "| #\n"
+ " ------------------------------------------------",
" #################################################\n"
+ "| Card_6 #\n"
+ "| #\n"
+ "| tit : #\n"
+ "| qwertyqwertyqwerty #\n"
+ "| #\n"
+ "| des : #\n"
+ "| qwertyqwertyqwerty #\n"
+ "| #\n"
+ "| com : #\n"
+ "| qwertyqwertyqwerty #\n"
+ "| #\n"
+ " ------------------------------------------------",
],
}
with open(f"{DESTINATION}/_ 28-11-2022 03.44.42 PM.csv", "w") as test_table:
writer = csv.DictWriter(test_table, fieldnames=list(table_e.keys()))
writer.writeheader()
longest_header_in_cards = 0
for h in list(table_e.keys()):
if longest_header_in_cards < len(table_e[h]):
longest_header_in_cards = len(table_e[h])
else:
continue
for row in range(longest_header_in_cards):
temp_ = {}
for h_pointer in table_e:
if row in range(len(table_e[h_pointer])):
temp_[h_pointer] = table_e[h_pointer][row]
else:
continue
writer.writerow(temp_)
assert (
open_table(
table_name="_test_data", table_version="_ 28-11-2022 03.44.42 PM.csv"
)
== table_e
)
shutil.rmtree(DESTINATION)
# Test open table with wrong table name or is not exist
with pytest.raises(FileNotFoundError):
open_table(table_name="_test_data_")
def test_add_card():
generate_table()
# Test adding a card
assert (
add_card(
"_test_data",
"Card_7",
"column1",
["Description", "Task Type", "Status", "Estimated Time", "Notes"],
[
"Implement the user profile page, which will display information about the logged-in user.",
"Feature Implementation",
"In Progress",
"4 hours",
"This task may involve using a template engine such as Jinja or Mustache to create the user profile page.",
],
)
== "Added"
)
table_e = {
"\x1b[38;5;15m\x1b[48;5;0m column1 \x1b[0m": [
" #################################################\n"
+ "| Card_1 #\n"
+ "| #\n"
+ "| Description : #\n"
+ "| This task involves creating wireframes #\n"
+ "| and mockups for the different pages and #\n"
+ "| screens of the software application. This may #\n"
+ "| include designing the layout, buttons, input #\n"
+ "| fields, and other visual elements of the user #\n"
+ "| interface. #\n"
+ "| Task Type : #\n"
+ "| Feature Implementation #\n"
+ "| Status : #\n"
+ "| In Progress #\n"
+ "| Estimated Time : #\n"
+ "| 8 hours #\n"
+ "| Notes : #\n"
+ "| This task should be completed before the #\n"
+ "| code for the user interface is written, as it #\n"
+ "| will provide a clear visual guide for the #\n"
+ "| developers. #\n"
+ " ------------------------------------------------",
" #################################################\n"
+ "| Card_7 #\n"
+ "| #\n"
+ "| Description : #\n"
+ "| Implement the user profile page, which #\n"
+ "| will display information about the logged-in #\n"
+ "| user. #\n"
+ "| Task Type : #\n"
+ "| Feature Implementation #\n"
+ "| Status : #\n"
+ "| In Progress #\n"
+ "| Estimated Time : #\n"
+ "| 4 hours #\n"
+ "| Notes : #\n"
+ "| This task may involve using a template #\n"
+ "| engine such as Jinja or Mustache to create #\n"
+ "| the user profile page. #\n"
+ " ------------------------------------------------",
"",
],
"\x1b[38;5;9m\x1b[48;5;12m column2 \x1b[0m": [
" #################################################\n"
+ "| Card_2 #\n"
+ "| #\n"
+ "| Description : #\n"
+ "| This task involves writing the code #\n"
+ "| that will handle user authentication in the #\n"
+ "| software application. #\n"
+ "| Task Type : #\n"
+ "| Bug Fix #\n"
+ "| Status : #\n"
+ "| Completed #\n"
+ "| Estimated Time : #\n"
+ "| 16 hours #\n"
+ "| Notes : #\n"
+ "| This task should be completed before the #\n"
+ "| login functionality is implemented, as it #\n"
+ "| will provide the necessary code for handling #\n"
+ "| user authentication. #\n"
+ " ------------------------------------------------",
" #################################################\n"
+ "| Card_3 #\n"
+ "| #\n"
+ "| Description : #\n"
+ "| This task involves writing tests that #\n"
+ "| will verify that the authentication module is #\n"
+ "| working correctly. This may include testing #\n"
+ "| different scenarios. #\n"
+ "| Task Type : #\n"
+ "| Refactoring #\n"
+ "| Status : #\n"
+ "| In Progress #\n"
+ "| Estimated Time : #\n"
+ "| 4 hours #\n"
+ "| Notes : #\n"
+ "| This task should be completed after the #\n"
+ "| code for the authentication module has been #\n"
+ "| written, and should be run regularly to #\n"
+ "| ensure the module is functioning properly. #\n"
+ " ------------------------------------------------",
"",
],
"\x1b[38;5;10m\x1b[48;5;13m column3 \x1b[0m": [
" #################################################\n"
+ "| Card_4 #\n"
+ "| #\n"
+ "| Description : #\n"
+ "| This task involves integrating the #\n"
+ "| authentication module into the software #\n"
+ "| application, and implementing the #\n"
+ "| functionality for logging in and out. #\n"
+ "| Task Type : #\n"
+ "| Testing #\n"
+ "| Status : #\n"
+ "| In Progress #\n"
+ "| Estimated Time : #\n"
+ "| 12 hours #\n"
+ "| Notes : #\n"
+ "| This task should be completed after the #\n"
+ "| code for the authentication module and the #\n"
+ "| user interface have been written, and should #\n"
+ "| be tested thoroughly to ensure the login #\n"
+ "| process is working correctly. #\n"
+ " ------------------------------------------------",
" #################################################\n"
+ "| Card_5 #\n"
+ "| #\n"
+ "| Description : #\n"
+ "| This task involves writing the code #\n"
+ "| that will handle the connection to the #\n"
+ "| database used by the software application. #\n"
+ "| This may include implementing functions for #\n"
+ "| executing SQL queries #\n"
+ "| Task Type : #\n"
+ "| Documentation #\n"
+ "| Status : #\n"
+ "| Completed #\n"
+ "| Estimated Time : #\n"
+ "| 6 hours #\n"
+ "| Notes : #\n"
+ "| This task should be completed before the #\n"
+ "| code for accessing the database is written, #\n"
+ "| as it will provide the necessary functions #\n"
+ "| for connecting to the database. #\n"
+ " ------------------------------------------------",
" #################################################\n"
+ "| Card_6 #\n"
+ "| #\n"
+ "| Description : #\n"
+ "| This task involves writing the code for #\n"
+ "| the user profile page, which will display #\n"
+ "| information about the logged-in user, such as #\n"
+ "| their username, email address, and other #\n"
+ "| profile details. #\n"
+ "| Task Type : #\n"
+ "| Deployment #\n"
+ "| Status : #\n"
+ "| Blocked #\n"
+ "| Estimated Time : #\n"
+ "| 2 hours #\n"
+ "| Notes : #\n"
+ "| This task should be completed after the #\n"
+ "| code for the authentication module and the #\n"
+ "| database connection have been written, as it #\n"
+ "| will require accessing the user's data from #\n"
+ "| the database. #\n"
+ " ------------------------------------------------",
],
}
# Checking of the Card is added
assert open_table(table_name="_test_data") == table_e
# Test if the column name not exist
with pytest.raises(ValueError):
add_card(
"_test_data",
"Card_7",
"column4",
["Description", "Task Type", "Status", "Estimated Time", "Notes"],
[
"Implement the user profile page, which will display information about the logged-in user.",
"Feature Implementation",
"In Progress",
"4 hours",
"This task may involve using a template engine such as Jinja or Mustache to create the user profile page.",
],
)
# Test if the table name not exist
with pytest.raises(TypeError):
add_card(
"_test_data_",
"Card_7",
"column1",
["Description", "Task Type", "Status", "Estimated Time", "Notes"],
[
"Implement the user profile page, which will display information about the logged-in user.",
"Feature Implementation",
"In Progress",
"4 hours",
"This task may involve using a template engine such as Jinja or Mustache to create the user profile page.",
],
)
shutil.rmtree(DESTINATION)
...
def test_move_card():
generate_table()
# Test moving card
assert (
move_card(
table_name_to_edit="_test_data", card_name="Card_2", move_to="column1"
)
== "Moved"
)
table_e = {
"\x1b[38;5;15m\x1b[48;5;0m column1 \x1b[0m": [
" #################################################\n"
+ "| Card_1 #\n"
+ "| #\n"
+ "| Description : #\n"
+ "| This task involves creating wireframes #\n"
+ "| and mockups for the different pages and #\n"
+ "| screens of the software application. This may #\n"
+ "| include designing the layout, buttons, input #\n"
+ "| fields, and other visual elements of the user #\n"
+ "| interface. #\n"
+ "| Task Type : #\n"
+ "| Feature Implementation #\n"
+ "| Status : #\n"
+ "| In Progress #\n"
+ "| Estimated Time : #\n"
+ "| 8 hours #\n"
+ "| Notes : #\n"
+ "| This task should be completed before the #\n"
+ "| code for the user interface is written, as it #\n"
+ "| will provide a clear visual guide for the #\n"
+ "| developers. #\n"
+ " ------------------------------------------------",
" #################################################\n"
+ "| Card_2 #\n"
+ "| #\n"
+ "| Description : #\n"
+ "| This task involves writing the code #\n"
+ "| that will handle user authentication in the #\n"
+ "| software application. #\n"
+ "| Task Type : #\n"
+ "| Bug Fix #\n"
+ "| Status : #\n"
+ "| Completed #\n"
+ "| Estimated Time : #\n"
+ "| 16 hours #\n"
+ "| Notes : #\n"
+ "| This task should be completed before the #\n"
+ "| login functionality is implemented, as it #\n"
+ "| will provide the necessary code for handling #\n"
+ "| user authentication. #\n"
+ " ------------------------------------------------",
"",
],
"\x1b[38;5;9m\x1b[48;5;12m column2 \x1b[0m": [
" #################################################\n"
+ "| Card_3 #\n"
+ "| #\n"
+ "| Description : #\n"
+ "| This task involves writing tests that #\n"
+ "| will verify that the authentication module is #\n"
+ "| working correctly. This may include testing #\n"
+ "| different scenarios. #\n"
+ "| Task Type : #\n"
+ "| Refactoring #\n"
+ "| Status : #\n"
+ "| In Progress #\n"
+ "| Estimated Time : #\n"
+ "| 4 hours #\n"
+ "| Notes : #\n"
+ "| This task should be completed after the #\n"
+ "| code for the authentication module has been #\n"
+ "| written, and should be run regularly to #\n"
+ "| ensure the module is functioning properly. #\n"
+ " ------------------------------------------------",
"",
"",
],
"\x1b[38;5;10m\x1b[48;5;13m column3 \x1b[0m": [
" #################################################\n"
+ "| Card_4 #\n"
+ "| #\n"
+ "| Description : #\n"
+ "| This task involves integrating the #\n"
+ "| authentication module into the software #\n"
+ "| application, and implementing the #\n"
+ "| functionality for logging in and out. #\n"
+ "| Task Type : #\n"
+ "| Testing #\n"
+ "| Status : #\n"
+ "| In Progress #\n"
+ "| Estimated Time : #\n"
+ "| 12 hours #\n"
+ "| Notes : #\n"
+ "| This task should be completed after the #\n"
+ "| code for the authentication module and the #\n"
+ "| user interface have been written, and should #\n"
+ "| be tested thoroughly to ensure the login #\n"
+ "| process is working correctly. #\n"
+ " ------------------------------------------------",
" #################################################\n"
+ "| Card_5 #\n"
+ "| #\n"
+ "| Description : #\n"
+ "| This task involves writing the code #\n"
+ "| that will handle the connection to the #\n"
+ "| database used by the software application. #\n"
+ "| This may include implementing functions for #\n"
+ "| executing SQL queries #\n"
+ "| Task Type : #\n"
+ "| Documentation #\n"
+ "| Status : #\n"
+ "| Completed #\n"
+ "| Estimated Time : #\n"
+ "| 6 hours #\n"
+ "| Notes : #\n"
+ "| This task should be completed before the #\n"
+ "| code for accessing the database is written, #\n"
+ "| as it will provide the necessary functions #\n"
+ "| for connecting to the database. #\n"
+ " ------------------------------------------------",
" #################################################\n"
+ "| Card_6 #\n"
+ "| #\n"
+ "| Description : #\n"
+ "| This task involves writing the code for #\n"
+ "| the user profile page, which will display #\n"
+ "| information about the logged-in user, such as #\n"
+ "| their username, email address, and other #\n"
+ "| profile details. #\n"
+ "| Task Type : #\n"
+ "| Deployment #\n"
+ "| Status : #\n"
+ "| Blocked #\n"
+ "| Estimated Time : #\n"
+ "| 2 hours #\n"
+ "| Notes : #\n"
+ "| This task should be completed after the #\n"
+ "| code for the authentication module and the #\n"
+ "| database connection have been written, as it #\n"
+ "| will require accessing the user's data from #\n"
+ "| the database. #\n"
+ " ------------------------------------------------",
],
}
# Checking of the Card is moved
assert open_table(table_name="_test_data") == table_e
# Test if the table name not exist
with pytest.raises(TypeError):
move_card(
table_name_to_edit="_test_data_", card_name="Card_6", move_to="column1"
)
# Test if the card name not exist
with pytest.raises(ValueError):
move_card(
table_name_to_edit="_test_data", card_name="Card_7", move_to="column1"
)
# Test if the column name not exist
with pytest.raises(ValueError):
move_card(
table_name_to_edit="_test_data", card_name="Card_6", move_to="column4"
)
shutil.rmtree(DESTINATION)
def test_delete_card():
generate_table()
# Test deleting a card
assert delete_card(table_name_to_edit="_test_data", card_name="Card_2") == "Deleted"
table_e = {
"\x1b[38;5;15m\x1b[48;5;0m column1 \x1b[0m": [
" #################################################\n"
+ "| Card_1 #\n"
+ "| #\n"
+ "| Description : #\n"
+ "| This task involves creating wireframes #\n"
+ "| and mockups for the different pages and #\n"
+ "| screens of the software application. This may #\n"
+ "| include designing the layout, buttons, input #\n"
+ "| fields, and other visual elements of the user #\n"
+ "| interface. #\n"
+ "| Task Type : #\n"
+ "| Feature Implementation #\n"
+ "| Status : #\n"
+ "| In Progress #\n"
+ "| Estimated Time : #\n"
+ "| 8 hours #\n"
+ "| Notes : #\n"
+ "| This task should be completed before the #\n"
+ "| code for the user interface is written, as it #\n"
+ "| will provide a clear visual guide for the #\n"
+ "| developers. #\n"
+ " ------------------------------------------------",
"",
"",
],
"\x1b[38;5;9m\x1b[48;5;12m column2 \x1b[0m": [
" #################################################\n"
+ "| Card_3 #\n"
+ "| #\n"
+ "| Description : #\n"
+ "| This task involves writing tests that #\n"
+ "| will verify that the authentication module is #\n"
+ "| working correctly. This may include testing #\n"
+ "| different scenarios. #\n"
+ "| Task Type : #\n"
+ "| Refactoring #\n"
+ "| Status : #\n"
+ "| In Progress #\n"
+ "| Estimated Time : #\n"
+ "| 4 hours #\n"
+ "| Notes : #\n"
+ "| This task should be completed after the #\n"
+ "| code for the authentication module has been #\n"
+ "| written, and should be run regularly to #\n"
+ "| ensure the module is functioning properly. #\n"
+ " ------------------------------------------------",
"",
"",
],
"\x1b[38;5;10m\x1b[48;5;13m column3 \x1b[0m": [
" #################################################\n"
+ "| Card_4 #\n"
+ "| #\n"
+ "| Description : #\n"
+ "| This task involves integrating the #\n"
+ "| authentication module into the software #\n"
+ "| application, and implementing the #\n"
+ "| functionality for logging in and out. #\n"
+ "| Task Type : #\n"
+ "| Testing #\n"
+ "| Status : #\n"
+ "| In Progress #\n"
+ "| Estimated Time : #\n"
+ "| 12 hours #\n"
+ "| Notes : #\n"
+ "| This task should be completed after the #\n"
+ "| code for the authentication module and the #\n"
+ "| user interface have been written, and should #\n"
+ "| be tested thoroughly to ensure the login #\n"
+ "| process is working correctly. #\n"
+ " ------------------------------------------------",
" #################################################\n"
+ "| Card_5 #\n"
+ "| #\n"
+ "| Description : #\n"
+ "| This task involves writing the code #\n"
+ "| that will handle the connection to the #\n"
+ "| database used by the software application. #\n"
+ "| This may include implementing functions for #\n"
+ "| executing SQL queries #\n"
+ "| Task Type : #\n"
+ "| Documentation #\n"
+ "| Status : #\n"
+ "| Completed #\n"
+ "| Estimated Time : #\n"
+ "| 6 hours #\n"
+ "| Notes : #\n"
+ "| This task should be completed before the #\n"
+ "| code for accessing the database is written, #\n"
+ "| as it will provide the necessary functions #\n"
+ "| for connecting to the database. #\n"
+ " ------------------------------------------------",
" #################################################\n"
+ "| Card_6 #\n"
+ "| #\n"
+ "| Description : #\n"
+ "| This task involves writing the code for #\n"
+ "| the user profile page, which will display #\n"
+ "| information about the logged-in user, such as #\n"
+ "| their username, email address, and other #\n"
+ "| profile details. #\n"
+ "| Task Type : #\n"
+ "| Deployment #\n"
+ "| Status : #\n"
+ "| Blocked #\n"
+ "| Estimated Time : #\n"
+ "| 2 hours #\n"
+ "| Notes : #\n"
+ "| This task should be completed after the #\n"
+ "| code for the authentication module and the #\n"
+ "| database connection have been written, as it #\n"
+ "| will require accessing the user's data from #\n"
+ "| the database. #\n"
+ " ------------------------------------------------",
],
}
# Checking of the Card is deleted
assert open_table(table_name="_test_data") == table_e
# Test if the table name not exist
with pytest.raises(TypeError):
delete_card(table_name_to_edit="", card_name="Card_6")
# Test if the card name not exist
with pytest.raises(ValueError):
delete_card(table_name_to_edit="_test_data", card_name="Card_10")
shutil.rmtree(DESTINATION)
...
def main():
test_card()
test_create_header_without_set_color()
test_create_header_with_set_colors()
test_init_table()
test_view_tables()
test_open_table()
test_add_card()
test_move_card()
test_delete_card()
if __name__ == "__main__":
main()