-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcommands_test.go
More file actions
988 lines (850 loc) · 23.1 KB
/
Copy pathcommands_test.go
File metadata and controls
988 lines (850 loc) · 23.1 KB
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
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
package main
import (
"fmt"
"os"
"path/filepath"
"testing"
)
func TestFilteredFiles(t *testing.T) {
app := &App{
files: []FileItem{
{Name: "main.go", Path: "/tmp/main.go"},
{Name: "README.md", Path: "/tmp/README.md"},
{Name: "config.yaml", Path: "/tmp/config.yaml"},
{Name: "main_test.go", Path: "/tmp/main_test.go"},
},
}
// No filter — returns all files
app.filterQuery = ""
result := app.filteredFiles()
if len(result) != 4 {
t.Errorf("expected 4 files with no filter, got %d", len(result))
}
// Case-insensitive substring match
app.filterQuery = "main"
result = app.filteredFiles()
if len(result) != 2 {
t.Errorf("expected 2 files matching 'main', got %d", len(result))
}
// Case insensitive
app.filterQuery = "README"
result = app.filteredFiles()
if len(result) != 1 {
t.Errorf("expected 1 file matching 'README', got %d", len(result))
}
app.filterQuery = "readme"
result = app.filteredFiles()
if len(result) != 1 {
t.Errorf("expected 1 file matching 'readme' (case insensitive), got %d", len(result))
}
// No match
app.filterQuery = "xyz"
result = app.filteredFiles()
if len(result) != 0 {
t.Errorf("expected 0 files matching 'xyz', got %d", len(result))
}
// Extension match
app.filterQuery = ".go"
result = app.filteredFiles()
if len(result) != 2 {
t.Errorf("expected 2 files matching '.go', got %d", len(result))
}
// Empty files list
app.files = []FileItem{}
app.filterQuery = "test"
result = app.filteredFiles()
if len(result) != 0 {
t.Errorf("expected 0 files from empty list, got %d", len(result))
}
}
func TestCurrentFile(t *testing.T) {
app := &App{
files: []FileItem{
{Name: "a.txt", Path: "/tmp/a.txt"},
{Name: "b.txt", Path: "/tmp/b.txt"},
},
cursor: 0,
}
// Valid cursor
item, ok := app.currentFile()
if !ok || item.Name != "a.txt" {
t.Errorf("expected a.txt, got %s (ok=%v)", item.Name, ok)
}
// Move cursor
app.cursor = 1
item, ok = app.currentFile()
if !ok || item.Name != "b.txt" {
t.Errorf("expected b.txt, got %s (ok=%v)", item.Name, ok)
}
// Out of range
app.cursor = 5
_, ok = app.currentFile()
if ok {
t.Error("expected false for out-of-range cursor")
}
// Negative cursor
app.cursor = -1
_, ok = app.currentFile()
if ok {
t.Error("expected false for negative cursor")
}
}
func TestCurrentFileWithFilter(t *testing.T) {
app := &App{
files: []FileItem{
{Name: "main.go", Path: "/tmp/main.go"},
{Name: "README.md", Path: "/tmp/README.md"},
{Name: "main_test.go", Path: "/tmp/main_test.go"},
},
filterQuery: "main",
cursor: 0,
}
item, ok := app.currentFile()
if !ok || item.Name != "main.go" {
t.Errorf("expected main.go, got %s", item.Name)
}
app.cursor = 1
item, ok = app.currentFile()
if !ok || item.Name != "main_test.go" {
t.Errorf("expected main_test.go, got %s", item.Name)
}
// Cursor beyond filtered results
app.cursor = 2
_, ok = app.currentFile()
if ok {
t.Error("expected false for cursor beyond filtered results")
}
}
func TestCopyFile(t *testing.T) {
dir := t.TempDir()
src := filepath.Join(dir, "source.txt")
dst := filepath.Join(dir, "dest.txt")
content := []byte("hello traverse")
if err := os.WriteFile(src, content, 0644); err != nil {
t.Fatal(err)
}
if err := copyFile(src, dst); err != nil {
t.Fatal(err)
}
got, err := os.ReadFile(dst)
if err != nil {
t.Fatal(err)
}
if string(got) != string(content) {
t.Errorf("expected %q, got %q", content, got)
}
}
func TestCopyFileNonExistent(t *testing.T) {
dir := t.TempDir()
src := filepath.Join(dir, "nonexistent.txt")
dst := filepath.Join(dir, "dest.txt")
err := copyFile(src, dst)
if err == nil {
t.Error("expected error when copying non-existent file")
}
}
func TestCopyFileSelfCopy(t *testing.T) {
dir := t.TempDir()
src := filepath.Join(dir, "file.txt")
content := []byte("hello traverse")
if err := os.WriteFile(src, content, 0644); err != nil {
t.Fatal(err)
}
// Self-copy should fail
err := copyFile(src, src)
if err == nil {
t.Error("expected error when copying file to itself")
}
}
func TestGetSelectedFiles(t *testing.T) {
app := &App{
files: []FileItem{
{Name: "a.txt", Path: "/tmp/a.txt"},
{Name: "b.txt", Path: "/tmp/b.txt"},
{Name: "c.txt", Path: "/tmp/c.txt"},
},
selected: map[int]bool{0: true, 2: true},
cursor: 1,
}
// With selection
files := app.getSelectedFiles()
if len(files) != 2 {
t.Errorf("expected 2 selected files, got %d", len(files))
}
// Without selection
app.selected = map[int]bool{}
files = app.getSelectedFiles()
if len(files) != 1 {
t.Errorf("expected 1 file (cursor), got %d", len(files))
}
if files[0] != "/tmp/b.txt" {
t.Errorf("expected /tmp/b.txt, got %s", files[0])
}
// Empty files
app.files = []FileItem{}
app.selected = map[int]bool{}
app.cursor = 0
files = app.getSelectedFiles()
if len(files) != 0 {
t.Errorf("expected 0 files from empty list, got %d", len(files))
}
}
func TestGetSelectedFilesWithFilter(t *testing.T) {
app := &App{
files: []FileItem{
{Name: "main.go", Path: "/tmp/main.go"},
{Name: "README.md", Path: "/tmp/README.md"},
{Name: "main_test.go", Path: "/tmp/main_test.go"},
},
filterQuery: "main",
selected: map[int]bool{0: true},
cursor: 0,
}
files := app.getSelectedFiles()
if len(files) != 1 {
t.Errorf("expected 1 selected file, got %d", len(files))
}
if files[0] != "/tmp/main.go" {
t.Errorf("expected /tmp/main.go, got %s", files[0])
}
}
func TestGitRepoRelPath(t *testing.T) {
// Test with nil git service
app := &App{}
result := app.gitRepoRelPath("/tmp/test.txt")
if result != "" {
t.Errorf("expected empty string for nil git service, got %q", result)
}
}
func TestCopyFiles(t *testing.T) {
dir := t.TempDir()
// Create test files
file1 := filepath.Join(dir, "file1.txt")
file2 := filepath.Join(dir, "file2.txt")
os.WriteFile(file1, []byte("content1"), 0644)
os.WriteFile(file2, []byte("content2"), 0644)
app := &App{
files: []FileItem{
{Name: "file1.txt", Path: file1},
{Name: "file2.txt", Path: file2},
},
selected: map[int]bool{0: true, 1: true},
}
// Test copy
model, _ := app.copyFiles(false)
if model != app {
t.Error("copyFiles should return same app")
}
if len(app.clipboardFiles) != 2 {
t.Errorf("copyFiles: expected 2 clipboard files, got %d", len(app.clipboardFiles))
}
if app.clipboardIsCut {
t.Error("copyFiles: clipboardIsCut should be false")
}
// Test cut
app.selected = map[int]bool{0: true}
model, _ = app.copyFiles(true)
if !app.clipboardIsCut {
t.Error("copyFiles(true): clipboardIsCut should be true")
}
}
func TestCopyFilesEmpty(t *testing.T) {
app := &App{
files: []FileItem{},
selected: map[int]bool{},
}
_, _ = app.copyFiles(false)
if len(app.clipboardFiles) != 0 {
t.Errorf("copyFiles with no selection: expected 0 clipboard files, got %d", len(app.clipboardFiles))
}
}
func TestDoCreateFile(t *testing.T) {
dir := t.TempDir()
app := &App{
cwd: dir,
}
// Create a new file
fileName := "newfile.txt"
_, cmd := app.doCreateFile(fileName)
// Execute the command to get the result
msg := cmd()
result, ok := msg.(CreateResultMsg)
if !ok {
t.Fatalf("expected CreateResultMsg, got %T", msg)
}
if result.err != nil {
t.Errorf("doCreateFile: unexpected error: %v", result.err)
}
if result.name != fileName {
t.Errorf("doCreateFile: name = %q, want %q", result.name, fileName)
}
// Verify file was created
path := filepath.Join(dir, fileName)
if _, err := os.Stat(path); os.IsNotExist(err) {
t.Error("doCreateFile: file was not created")
}
}
func TestDoCreateFileOverwrite(t *testing.T) {
dir := t.TempDir()
fileName := "existing.txt"
path := filepath.Join(dir, fileName)
os.WriteFile(path, []byte("original content"), 0644)
app := &App{
cwd: dir,
}
// Try to create a file that already exists
_, _ = app.doCreateFile(fileName)
// Should set confirmAction instead of creating
if app.confirmAction != "create-overwrite" {
t.Errorf("doCreateFile overwrite: confirmAction = %q, want %q", app.confirmAction, "create-overwrite")
}
// Original file should be unchanged
content, _ := os.ReadFile(path)
if string(content) != "original content" {
t.Error("doCreateFile overwrite: original file was modified")
}
}
func TestDoCreateDir(t *testing.T) {
dir := t.TempDir()
app := &App{
cwd: dir,
}
// Create a new directory
dirName := "newdir"
_, cmd := app.doCreateDir(dirName)
// Execute the command to get the result
msg := cmd()
result, ok := msg.(CreateResultMsg)
if !ok {
t.Fatalf("expected CreateResultMsg, got %T", msg)
}
if result.err != nil {
t.Errorf("doCreateDir: unexpected error: %v", result.err)
}
if result.name != dirName+"/" {
t.Errorf("doCreateDir: name = %q, want %q", result.name, dirName+"/")
}
// Verify directory was created
path := filepath.Join(dir, dirName)
info, err := os.Stat(path)
if os.IsNotExist(err) {
t.Error("doCreateDir: directory was not created")
} else if !info.IsDir() {
t.Error("doCreateDir: created path is not a directory")
}
}
func TestDoRename(t *testing.T) {
dir := t.TempDir()
oldName := "old.txt"
newName := "new.txt"
oldPath := filepath.Join(dir, oldName)
os.WriteFile(oldPath, []byte("content"), 0644)
app := &App{
files: []FileItem{
{Name: oldName, Path: oldPath},
},
cursor: 0,
cwd: dir,
}
// Rename the file
_, cmd := app.doRename(newName)
// Execute the command to get the result
msg := cmd()
result, ok := msg.(RenameResultMsg)
if !ok {
t.Fatalf("expected RenameResultMsg, got %T", msg)
}
if result.err != nil {
t.Errorf("doRename: unexpected error: %v", result.err)
}
if result.newName != newName {
t.Errorf("doRename: newName = %q, want %q", result.newName, newName)
}
// Verify file was renamed
newPath := filepath.Join(dir, newName)
if _, err := os.Stat(newPath); os.IsNotExist(err) {
t.Error("doRename: new file does not exist")
}
if _, err := os.Stat(oldPath); !os.IsNotExist(err) {
t.Error("doRename: old file still exists")
}
}
func TestDoRenamePathTraversal(t *testing.T) {
dir := t.TempDir()
oldName := "old.txt"
oldPath := filepath.Join(dir, oldName)
os.WriteFile(oldPath, []byte("content"), 0644)
app := &App{
files: []FileItem{
{Name: oldName, Path: oldPath},
},
cursor: 0,
cwd: dir,
}
// Try path traversal — should be rejected
badNames := []string{"../evil", "..\\evil", "sub/dir", "sub\\dir", "..", "."}
for _, name := range badNames {
app.message = ""
app.messageIsError = false
model, _ := app.doRename(name)
if model != app {
t.Errorf("doRename(%q): should return same app", name)
}
if !app.messageIsError {
t.Errorf("doRename(%q): should set error message", name)
}
}
// Verify original file is unchanged
if _, err := os.Stat(oldPath); err != nil {
t.Error("original file should still exist")
}
}
func TestDoRenameOverwrite(t *testing.T) {
dir := t.TempDir()
oldName := "old.txt"
newName := "existing.txt"
oldPath := filepath.Join(dir, oldName)
newPath := filepath.Join(dir, newName)
os.WriteFile(oldPath, []byte("old content"), 0644)
os.WriteFile(newPath, []byte("existing content"), 0644)
app := &App{
files: []FileItem{
{Name: oldName, Path: oldPath},
},
cursor: 0,
cwd: dir,
}
// Rename to existing file — should set confirmAction
model, _ := app.doRename(newName)
if model != app {
t.Error("doRename overwrite should return same app")
}
if app.confirmAction != "rename-overwrite" {
t.Errorf("confirmAction = %q, want %q", app.confirmAction, "rename-overwrite")
}
// Original file should be unchanged
content, _ := os.ReadFile(newPath)
if string(content) != "existing content" {
t.Error("existing file should not be overwritten without confirmation")
}
}
func TestIsValidFilename(t *testing.T) {
tests := []struct {
name string
valid bool
}{
{"hello.txt", true},
{"file name.txt", true},
{"日本語.txt", true},
{"", false},
{".", false},
{"..", false},
{"../evil", false},
{"..\\evil", false},
{"sub/dir", false},
{"sub\\dir", false},
{"C:\\Windows", false},
}
for _, tt := range tests {
got := isValidFilename(tt.name)
if got != tt.valid {
t.Errorf("isValidFilename(%q) = %v, want %v", tt.name, got, tt.valid)
}
}
}
func TestAddBookmark(t *testing.T) {
cfg := DefaultConfig()
app := &App{
cwd: "/tmp/test",
config: cfg,
}
// Add bookmark
model, _ := app.addBookmark()
if model != app {
t.Error("addBookmark should return same app")
}
if len(app.config.Bookmarks) != 1 {
t.Errorf("addBookmark: expected 1 bookmark, got %d", len(app.config.Bookmarks))
}
if app.config.Bookmarks[0] != "/tmp/test" {
t.Errorf("addBookmark: bookmark = %q, want %q", app.config.Bookmarks[0], "/tmp/test")
}
// Add same bookmark again (should not duplicate)
model, _ = app.addBookmark()
if len(app.config.Bookmarks) != 1 {
t.Errorf("addBookmark duplicate: expected 1 bookmark, got %d", len(app.config.Bookmarks))
}
}
func TestRemoveBookmark(t *testing.T) {
cfg := DefaultConfig()
cfg.Bookmarks = []string{"/tmp/test1", "/tmp/test2"}
app := &App{
cwd: "/tmp/test1",
config: cfg,
}
// Remove bookmark
model, _ := app.removeBookmark()
if model != app {
t.Error("removeBookmark should return same app")
}
if len(app.config.Bookmarks) != 1 {
t.Errorf("removeBookmark: expected 1 bookmark, got %d", len(app.config.Bookmarks))
}
if app.config.Bookmarks[0] != "/tmp/test2" {
t.Errorf("removeBookmark: remaining bookmark = %q, want %q", app.config.Bookmarks[0], "/tmp/test2")
}
// Remove non-existent bookmark
app.cwd = "/tmp/test3"
model, _ = app.removeBookmark()
if len(app.config.Bookmarks) != 1 {
t.Errorf("removeBookmark non-existent: expected 1 bookmark, got %d", len(app.config.Bookmarks))
}
}
func TestShowBookmarks(t *testing.T) {
cfg := DefaultConfig()
cfg.Bookmarks = []string{"/tmp/test1", "/tmp/test2"}
app := &App{
config: cfg,
}
// Show bookmarks
model, _ := app.showBookmarks()
if model != app {
t.Error("showBookmarks should return same app")
}
if !app.bookmarkMode {
t.Error("showBookmarks: bookmarkMode should be true")
}
if app.bookmarkIndex != 0 {
t.Errorf("showBookmarks: bookmarkIndex = %d, want 0", app.bookmarkIndex)
}
// Show bookmarks when empty
cfg.Bookmarks = []string{}
app.config = cfg
app.bookmarkMode = false
model, _ = app.showBookmarks()
if app.bookmarkMode {
t.Error("showBookmarks empty: bookmarkMode should be false")
}
}
func TestPasteFiles(t *testing.T) {
dir := t.TempDir()
// Create source file
srcFile := filepath.Join(dir, "source.txt")
os.WriteFile(srcFile, []byte("content"), 0644)
// Create destination directory
dstDir := filepath.Join(dir, "dest")
os.Mkdir(dstDir, 0755)
app := &App{
clipboardFiles: []string{srcFile},
clipboardIsCut: false,
cwd: dstDir,
}
// Paste files
model, cmd := app.pasteFiles()
if model != app {
t.Error("pasteFiles should return same app")
}
// Execute the command to perform the actual copy
msg := cmd()
result, ok := msg.(PasteResultMsg)
if !ok {
t.Fatalf("expected PasteResultMsg, got %T", msg)
}
if result.err != nil {
t.Errorf("pasteFiles: unexpected error: %v", result.err)
}
if result.count != 1 {
t.Errorf("pasteFiles: count = %d, want 1", result.count)
}
// Verify file was copied
dstFile := filepath.Join(dstDir, "source.txt")
if _, err := os.Stat(dstFile); os.IsNotExist(err) {
t.Error("pasteFiles: destination file was not created")
}
// Verify content
content, err := os.ReadFile(dstFile)
if err != nil {
t.Fatalf("pasteFiles: error reading destination: %v", err)
}
if string(content) != "content" {
t.Errorf("pasteFiles: content = %q, want %q", string(content), "content")
}
}
func TestPasteFilesEmpty(t *testing.T) {
app := &App{
clipboardFiles: []string{},
cwd: "/tmp",
}
model, _ := app.pasteFiles()
if model != app {
t.Error("pasteFiles empty should return same app")
}
}
func TestDeleteFiles(t *testing.T) {
dir := t.TempDir()
file := filepath.Join(dir, "file.txt")
os.WriteFile(file, []byte("content"), 0644)
app := &App{
files: []FileItem{
{Name: "file.txt", Path: file},
},
selected: map[int]bool{},
cursor: 0,
}
// Delete files (should set confirmAction)
model, _ := app.deleteFiles()
if model != app {
t.Error("deleteFiles should return same app")
}
if app.confirmAction != "delete" {
t.Errorf("deleteFiles: confirmAction = %q, want %q", app.confirmAction, "delete")
}
}
func TestDeleteFilesEmpty(t *testing.T) {
app := &App{
files: []FileItem{},
selected: map[int]bool{},
cursor: 0,
}
model, _ := app.deleteFiles()
if model != app {
t.Error("deleteFiles empty should return same app")
}
if app.confirmAction != "" {
t.Errorf("deleteFiles empty: confirmAction = %q, want empty", app.confirmAction)
}
}
func TestUndoDelete(t *testing.T) {
dir := t.TempDir()
file := filepath.Join(dir, "file.txt")
os.WriteFile(file, []byte("content"), 0644)
app := &App{
undoStack: []Operation{},
undoLimit: 10,
}
// Simulate delete
ensureUndoDir()
backupPath := filepath.Join(undoDir(), "file.txt")
os.Rename(file, backupPath)
app.undoStack = append(app.undoStack, Operation{
Type: "delete",
Backups: []string{backupPath},
Paths: []string{file},
})
// Verify file is deleted
if _, err := os.Stat(file); !os.IsNotExist(err) {
t.Error("file should be deleted")
}
// Undo
model, _ := app.undoLastOperation()
if model != app {
t.Error("undoLastOperation should return same app")
}
// Verify file is restored
if _, err := os.Stat(file); err != nil {
t.Error("file should be restored after undo")
}
// Verify undo stack is empty
if len(app.undoStack) != 0 {
t.Errorf("undoStack should be empty, got %d", len(app.undoStack))
}
}
func TestUndoRename(t *testing.T) {
dir := t.TempDir()
oldPath := filepath.Join(dir, "old.txt")
newPath := filepath.Join(dir, "new.txt")
os.WriteFile(oldPath, []byte("content"), 0644)
app := &App{
undoStack: []Operation{},
undoLimit: 10,
}
// Simulate rename
os.Rename(oldPath, newPath)
app.undoStack = append(app.undoStack, Operation{
Type: "rename",
Path: newPath,
OldPath: oldPath,
})
// Verify rename
if _, err := os.Stat(newPath); err != nil {
t.Error("new file should exist")
}
// Undo
model, _ := app.undoLastOperation()
if model != app {
t.Error("undoLastOperation should return same app")
}
// Verify restore
if _, err := os.Stat(oldPath); err != nil {
t.Error("old file should exist after undo")
}
// Verify undo stack is empty
if len(app.undoStack) != 0 {
t.Errorf("undoStack should be empty, got %d", len(app.undoStack))
}
}
func TestUndoEmpty(t *testing.T) {
app := &App{
undoStack: []Operation{},
undoLimit: 10,
}
model, _ := app.undoLastOperation()
if model != app {
t.Error("undoLastOperation with empty stack should return same app")
}
if app.message != "Nothing to undo" {
t.Errorf("message = %q, want %q", app.message, "Nothing to undo")
}
}
func TestUndoStackLimit(t *testing.T) {
dir := t.TempDir()
app := &App{
undoStack: []Operation{},
undoLimit: 3,
}
// Add 4 operations
for i := 0; i < 4; i++ {
file := filepath.Join(dir, fmt.Sprintf("file%d.txt", i))
os.WriteFile(file, []byte("content"), 0644)
ensureUndoDir()
backupPath := filepath.Join(undoDir(), fmt.Sprintf("file%d.txt", i))
os.Rename(file, backupPath)
app.undoStack = append(app.undoStack, Operation{
Type: "delete",
Backups: []string{backupPath},
Paths: []string{file},
})
// Limit stack size
if len(app.undoStack) > app.undoLimit {
old := app.undoStack[0]
for _, b := range old.Backups {
os.Remove(b)
}
app.undoStack = app.undoStack[1:]
}
}
// Verify stack size is limited
if len(app.undoStack) != 3 {
t.Errorf("undoStack should have 3 items, got %d", len(app.undoStack))
}
}
func TestUndoDir(t *testing.T) {
dir := undoDir()
if dir == "" {
t.Error("undoDir should not be empty")
}
// Test ensureUndoDir
err := ensureUndoDir()
if err != nil {
t.Errorf("ensureUndoDir error: %v", err)
}
// Test cleanUndoDir
cleanUndoDir()
if _, err := os.Stat(dir); !os.IsNotExist(err) {
t.Error("cleanUndoDir should remove the directory")
}
}
func TestUndoBatchDelete(t *testing.T) {
dir := t.TempDir()
file1 := filepath.Join(dir, "file1.txt")
file2 := filepath.Join(dir, "file2.txt")
os.WriteFile(file1, []byte("content1"), 0644)
os.WriteFile(file2, []byte("content2"), 0644)
app := &App{
undoStack: []Operation{},
undoLimit: 10,
}
// Simulate batch delete (both files in one operation)
ensureUndoDir()
backup1 := filepath.Join(undoDir(), "file1.txt")
backup2 := filepath.Join(undoDir(), "file2.txt")
os.Rename(file1, backup1)
os.Rename(file2, backup2)
app.undoStack = append(app.undoStack, Operation{
Type: "delete",
Backups: []string{backup1, backup2},
Paths: []string{file1, file2},
})
// Verify files are deleted
if _, err := os.Stat(file1); !os.IsNotExist(err) {
t.Error("file1 should be deleted")
}
if _, err := os.Stat(file2); !os.IsNotExist(err) {
t.Error("file2 should be deleted")
}
// Undo once — should restore both files
model, _ := app.undoLastOperation()
if model != app {
t.Error("undoLastOperation should return same app")
}
if _, err := os.Stat(file1); err != nil {
t.Error("file1 should be restored after undo")
}
if _, err := os.Stat(file2); err != nil {
t.Error("file2 should be restored after undo")
}
// Verify undo stack is empty
if len(app.undoStack) != 0 {
t.Errorf("undoStack should be empty, got %d", len(app.undoStack))
}
}
func TestMoveFile(t *testing.T) {
dir := t.TempDir()
src := filepath.Join(dir, "source.txt")
dst := filepath.Join(dir, "dest.txt")
os.WriteFile(src, []byte("hello"), 0644)
if err := moveFile(src, dst); err != nil {
t.Fatalf("moveFile failed: %v", err)
}
// Source should be gone
if _, err := os.Stat(src); !os.IsNotExist(err) {
t.Error("source should not exist after moveFile")
}
// Dest should exist with correct content
content, err := os.ReadFile(dst)
if err != nil {
t.Fatal(err)
}
if string(content) != "hello" {
t.Errorf("content = %q, want %q", string(content), "hello")
}
}
func TestMoveFileDirectory(t *testing.T) {
dir := t.TempDir()
srcDir := filepath.Join(dir, "srcdir")
dstDir := filepath.Join(dir, "dstdir")
os.Mkdir(srcDir, 0755)
os.WriteFile(filepath.Join(srcDir, "a.txt"), []byte("aaa"), 0644)
os.WriteFile(filepath.Join(srcDir, "b.txt"), []byte("bbb"), 0644)
if err := moveFile(srcDir, dstDir); err != nil {
t.Fatalf("moveFile directory failed: %v", err)
}
// Source dir should be gone
if _, err := os.Stat(srcDir); !os.IsNotExist(err) {
t.Error("source dir should not exist after moveFile")
}
// Dest dir should exist with both files
contentA, err := os.ReadFile(filepath.Join(dstDir, "a.txt"))
if err != nil {
t.Fatal(err)
}
if string(contentA) != "aaa" {
t.Errorf("a.txt content = %q, want %q", string(contentA), "aaa")
}
contentB, err := os.ReadFile(filepath.Join(dstDir, "b.txt"))
if err != nil {
t.Fatal(err)
}
if string(contentB) != "bbb" {
t.Errorf("b.txt content = %q, want %q", string(contentB), "bbb")
}
}
func TestMoveFileNonExistent(t *testing.T) {
dir := t.TempDir()
src := filepath.Join(dir, "nonexistent.txt")
dst := filepath.Join(dir, "dest.txt")
err := moveFile(src, dst)
if err == nil {
t.Error("moveFile on non-existent file should fail")
}
}