forked from nao1215/filesql
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfile_test.go
More file actions
1501 lines (1281 loc) · 36.6 KB
/
file_test.go
File metadata and controls
1501 lines (1281 loc) · 36.6 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
989
990
991
992
993
994
995
996
997
998
999
1000
package filesql
import (
"compress/gzip"
"errors"
"os"
"path/filepath"
"strings"
"testing"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
"github.com/xuri/excelize/v2"
)
func TestNewFile(t *testing.T) {
t.Parallel()
tests := []struct {
name string
path string
expected FileType
}{
{
name: "CSV file",
path: "test.csv",
expected: FileTypeCSV,
},
{
name: "TSV file",
path: "test.tsv",
expected: FileTypeTSV,
},
{
name: "LTSV file",
path: "test.ltsv",
expected: FileTypeLTSV,
},
{
name: "Compressed CSV file",
path: "test.csv.gz",
expected: FileTypeCSVGZ,
},
{
name: "Compressed TSV file",
path: "test.tsv.bz2",
expected: FileTypeTSVBZ2,
},
{
name: "Compressed LTSV file",
path: "test.ltsv.xz",
expected: FileTypeLTSVXZ,
},
{
name: "Zstd compressed CSV file",
path: "test.csv.zst",
expected: FileTypeCSVZSTD,
},
{
name: "XLSX file",
path: "test.xlsx",
expected: FileTypeXLSX,
},
{
name: "Compressed XLSX file with gzip",
path: "test.xlsx.gz",
expected: FileTypeXLSXGZ,
},
{
name: "Compressed XLSX file with bzip2",
path: "test.xlsx.bz2",
expected: FileTypeXLSXBZ2,
},
{
name: "Compressed XLSX file with xz",
path: "test.xlsx.xz",
expected: FileTypeXLSXXZ,
},
{
name: "Compressed XLSX file with zstd",
path: "test.xlsx.zst",
expected: FileTypeXLSXZSTD,
},
{
name: "Unsupported file",
path: "test.txt",
expected: FileTypeUnsupported,
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
t.Parallel()
file := newFile(tt.path)
assert.Equal(t, tt.expected, file.getFileType(), "File type mismatch")
assert.Equal(t, tt.path, file.getPath(), "File path mismatch")
})
}
}
func TestFile_IsCompressed(t *testing.T) {
t.Parallel()
tests := []struct {
name string
path string
expected bool
}{
{
name: "Normal CSV file",
path: "test.csv",
expected: false,
},
{
name: "Gzip compressed file",
path: "test.csv.gz",
expected: true,
},
{
name: "Bzip2 compressed file",
path: "test.csv.bz2",
expected: true,
},
{
name: "XZ compressed file",
path: "test.csv.xz",
expected: true,
},
{
name: "Zstd compressed file",
path: "test.csv.zst",
expected: true,
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
t.Parallel()
file := newFile(tt.path)
assert.Equal(t, tt.expected, file.isCompressed(), "Compression check failed")
})
}
}
func TestFile_CompressionTypes(t *testing.T) {
t.Parallel()
tests := []struct {
name string
path string
isGZ bool
isBZ2 bool
isXZ bool
isZSTD bool
}{
{
name: "Normal file",
path: "test.csv",
isGZ: false,
isBZ2: false,
isXZ: false,
isZSTD: false,
},
{
name: "GZ file",
path: "test.csv.gz",
isGZ: true,
isBZ2: false,
isXZ: false,
isZSTD: false,
},
{
name: "BZ2 file",
path: "test.csv.bz2",
isGZ: false,
isBZ2: true,
isXZ: false,
isZSTD: false,
},
{
name: "XZ file",
path: "test.csv.xz",
isGZ: false,
isBZ2: false,
isXZ: true,
isZSTD: false,
},
{
name: "ZSTD file",
path: "test.csv.zst",
isGZ: false,
isBZ2: false,
isXZ: false,
isZSTD: true,
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
t.Parallel()
file := newFile(tt.path)
assert.Equal(t, tt.isGZ, file.isGZ(), "IsGZ() check failed")
assert.Equal(t, tt.isBZ2, file.isBZ2(), "IsBZ2() check failed")
assert.Equal(t, tt.isXZ, file.isXZ(), "IsXZ() check failed")
assert.Equal(t, tt.isZSTD, file.isZSTD(), "IsZSTD() check failed")
})
}
}
func TestFile_ToTable_CSV(t *testing.T) {
t.Parallel()
tmpDir := t.TempDir()
csvFile := filepath.Join(tmpDir, "test.csv")
csvContent := `name,age,city
John,25,Tokyo
Alice,30,Osaka
Bob,35,Kyoto`
err := os.WriteFile(csvFile, []byte(csvContent), 0600)
require.NoError(t, err, "Failed to write CSV file")
file := newFile(csvFile)
table, err := file.toTable()
require.NoError(t, err, "Failed to convert file to table")
expectedHeader := header{"name", "age", "city"}
assert.True(t, table.getHeader().equal(expectedHeader), "Header mismatch")
assert.Len(t, table.getRecords(), 3, "Record count mismatch")
expectedFirstRecord := Record{"John", "25", "Tokyo"}
assert.True(t, table.getRecords()[0].equal(expectedFirstRecord), "First record mismatch")
}
func TestFile_ToTable_TSV(t *testing.T) {
t.Parallel()
tmpDir := t.TempDir()
tsvFile := filepath.Join(tmpDir, "test.tsv")
tsvContent := `name age city
John 25 Tokyo
Alice 30 Osaka
Bob 35 Kyoto`
err := os.WriteFile(tsvFile, []byte(tsvContent), 0600)
require.NoError(t, err, "Failed to write TSV file")
file := newFile(tsvFile)
table, err := file.toTable()
require.NoError(t, err, "Failed to convert file to table")
expectedHeader := header{"name", "age", "city"}
assert.True(t, table.getHeader().equal(expectedHeader), "Header mismatch")
assert.Len(t, table.getRecords(), 3, "Record count mismatch")
expectedFirstRecord := Record{"John", "25", "Tokyo"}
assert.True(t, table.getRecords()[0].equal(expectedFirstRecord), "First record mismatch")
}
func TestFile_ToTable_LTSV(t *testing.T) {
t.Parallel()
tmpDir := t.TempDir()
ltsvFile := filepath.Join(tmpDir, "test.ltsv")
ltsvContent := `name:John age:25 city:Tokyo
name:Alice age:30 city:Osaka
name:Bob age:35 city:Kyoto`
err := os.WriteFile(ltsvFile, []byte(ltsvContent), 0600)
require.NoError(t, err, "Failed to write LTSV file")
file := newFile(ltsvFile)
table, err := file.toTable()
require.NoError(t, err, "Failed to convert file to table")
assert.Len(t, table.getRecords(), 3, "Record count mismatch")
// LTSV header order may vary due to map iteration
header := table.getHeader()
if len(header) != 3 {
t.Errorf("expected 3 columns, got %d", len(header))
}
// Check that all expected keys exist
headerMap := make(map[string]bool)
for _, h := range header {
headerMap[h] = true
}
expectedKeys := []string{"name", "age", "city"}
for _, key := range expectedKeys {
if !headerMap[key] {
t.Errorf("expected key %s not found in header", key)
}
}
}
func TestFile_ToTable_CompressedCSV(t *testing.T) {
t.Parallel()
tmpDir := t.TempDir()
csvFile := filepath.Join(tmpDir, "test.csv.gz")
csvContent := `name,age,city
John,25,Tokyo
Alice,30,Osaka`
// Create gzip compressed file
f, err := os.Create(csvFile) //nolint:gosec // Safe: csvFile is from controlled test temp dir
if err != nil {
t.Fatal(err)
}
gw := gzip.NewWriter(f)
_, err = gw.Write([]byte(csvContent))
if err != nil {
t.Fatal(err)
}
_ = gw.Close() // Ignore close error in test cleanup
_ = f.Close() // Ignore close error in test cleanup
file := newFile(csvFile)
table, err := file.toTable()
require.NoError(t, err, "Failed to convert file to table")
expectedHeader := header{"name", "age", "city"}
assert.True(t, table.getHeader().equal(expectedHeader), "Header mismatch")
assert.Len(t, table.getRecords(), 2, "Expected 2 records")
}
func TestFile_ToTable_UnsupportedFormat(t *testing.T) {
t.Parallel()
tmpDir := t.TempDir()
txtFile := filepath.Join(tmpDir, "test.txt")
err := os.WriteFile(txtFile, []byte("some content"), 0600)
if err != nil {
t.Fatal(err)
}
file := newFile(txtFile)
_, err = file.toTable()
assert.Error(t, err, "Expected error for unsupported file format")
}
func TestFile_ToTable_EmptyFile(t *testing.T) {
t.Parallel()
tmpDir := t.TempDir()
csvFile := filepath.Join(tmpDir, "empty.csv")
err := os.WriteFile(csvFile, []byte(""), 0600)
if err != nil {
t.Fatal(err)
}
file := newFile(csvFile)
_, err = file.toTable()
assert.Error(t, err, "Expected error for empty file")
}
func TestTableFromFilePath(t *testing.T) {
t.Parallel()
tests := []struct {
name string
filePath string
expected string
}{
{
name: "Simple CSV file",
filePath: "test.csv",
expected: "test",
},
{
name: "Compressed CSV file",
filePath: "data.csv.gz",
expected: "data",
},
{
name: "Path with directory",
filePath: filepath.Join("home", "user", "data.csv"),
expected: "data",
},
{
name: "File without extension",
filePath: "data",
expected: "data",
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
t.Parallel()
result := tableFromFilePath(tt.filePath)
assert.Equal(t, tt.expected, result, "tableFromFilePath failed")
})
}
}
func Test_FileTypeDetectionMethods(t *testing.T) {
t.Parallel()
testCases := []struct {
name string
filePath string
expectedCSV bool
expectedTSV bool
expectedLTSV bool
}{
{
name: "CSV file",
filePath: "test.csv",
expectedCSV: true,
expectedTSV: false,
expectedLTSV: false,
},
{
name: "TSV file",
filePath: "test.tsv",
expectedCSV: false,
expectedTSV: true,
expectedLTSV: false,
},
{
name: "LTSV file",
filePath: "test.ltsv",
expectedCSV: false,
expectedTSV: false,
expectedLTSV: true,
},
{
name: "Compressed CSV",
filePath: "test.csv.gz",
expectedCSV: true,
expectedTSV: false,
expectedLTSV: false,
},
{
name: "Compressed TSV",
filePath: "test.tsv.bz2",
expectedCSV: false,
expectedTSV: true,
expectedLTSV: false,
},
{
name: "Compressed LTSV",
filePath: "test.ltsv.xz",
expectedCSV: false,
expectedTSV: false,
expectedLTSV: true,
},
{
name: "Unsupported file",
filePath: "test.txt",
expectedCSV: false,
expectedTSV: false,
expectedLTSV: false,
},
}
for _, tc := range testCases {
t.Run(tc.name, func(t *testing.T) {
file := newFile(tc.filePath)
assert.Equal(t, tc.expectedCSV, file.isCSV(), "IsCSV() check failed for %s", tc.filePath)
assert.Equal(t, tc.expectedTSV, file.isTSV(), "IsTSV() check failed for %s", tc.filePath)
assert.Equal(t, tc.expectedLTSV, file.isLTSV(), "IsLTSV() check failed for %s", tc.filePath)
})
}
}
func Test_isSupportedFile(t *testing.T) {
t.Parallel()
testCases := []struct {
fileName string
isSupported bool
}{
// Basic formats
{"test.csv", true},
{"test.tsv", true},
{"test.ltsv", true},
// Compressed formats
{"test.csv.gz", true},
{"test.csv.bz2", true},
{"test.csv.xz", true},
{"test.csv.zst", true},
{"test.tsv.gz", true},
{"test.tsv.bz2", true},
{"test.tsv.xz", true},
{"test.tsv.zst", true},
{"test.ltsv.gz", true},
{"test.ltsv.bz2", true},
{"test.ltsv.xz", true},
{"test.ltsv.zst", true},
// Case insensitive
{"test.CSV", true},
{"test.TSV", true},
{"test.LTSV", true},
{"test.CSV.GZ", true},
// Unsupported formats
{"test.txt", false},
{"test.json", false},
{"test.xml", false},
{"test.xlsx", true},
{"test", false},
{"", false},
// Edge cases
{"test.csv.txt", false}, // Wrong final extension
{"test.gz", false}, // Compression only, no base format
{"test.csv.gz.bz2", false}, // Double compression
{".csv", true}, // Hidden file
{"a.very.long.filename.with.many.dots.csv", true},
}
for _, tc := range testCases {
t.Run(tc.fileName, func(t *testing.T) {
result := isSupportedFile(tc.fileName)
if result != tc.isSupported {
t.Errorf("isSupportedFile(%q) = %v, expected %v", tc.fileName, result, tc.isSupported)
}
})
}
}
func Test_OpenReaderEdgeCases(t *testing.T) {
t.Parallel()
// Test with non-existent file
t.Run("Non-existent file", func(t *testing.T) {
file := newFile("non_existent_file.csv")
_, closer, err := file.openReader()
if err == nil {
_ = closer() //nolint:errcheck
t.Error("Expected error for non-existent file, got nil")
}
})
// Test with malformed compressed file
t.Run("Invalid gzip file", func(t *testing.T) {
// Create a file with .gz extension but invalid gzip content
tmpFile, err := os.CreateTemp(t.TempDir(), "invalid_*.csv.gz")
require.NoError(t, err, "Failed to create file or perform operation")
defer os.Remove(tmpFile.Name())
// Write non-gzip content
if _, err := tmpFile.WriteString("This is not gzip content"); err != nil {
t.Fatal(err)
}
_ = tmpFile.Close() // Ignore close error in test cleanup
file := newFile(tmpFile.Name())
_, closer, err := file.openReader()
if err == nil {
_ = closer() //nolint:errcheck
t.Error("Expected error for invalid gzip file, got nil")
}
})
// Test with valid compressed files
compressionTypes := []struct {
ext string
content []byte
}{
{".gz", []byte{0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0x4b, 0x4c, 0x52, 0xc8, 0x4b, 0xcc, 0x4d, 0xe5, 0x02, 0x00, 0x00, 0x00, 0xff, 0xff, 0x01, 0x00, 0x00, 0xff, 0xff, 0x09, 0x9e, 0x2d, 0x1b, 0x09, 0x00, 0x00, 0x00}}, // "id,name\n" gzipped
}
for _, ct := range compressionTypes {
t.Run("Valid"+ct.ext, func(t *testing.T) {
tmpFile, err := os.CreateTemp(t.TempDir(), "valid_*"+".csv"+ct.ext)
if err != nil {
t.Fatal(err)
}
defer os.Remove(tmpFile.Name())
if _, err := tmpFile.Write(ct.content); err != nil {
t.Fatal(err)
}
_ = tmpFile.Close() // Ignore close error in test cleanup
file := newFile(tmpFile.Name())
reader, closer, err := file.openReader()
if err != nil {
t.Errorf("Unexpected error for valid %s file: %v", ct.ext, err)
return
}
defer closer()
if reader == nil {
t.Error("Reader should not be nil for valid compressed file")
}
})
}
}
func TestFile_ToTable_DuplicateColumns(t *testing.T) {
t.Parallel()
t.Run("CSV with duplicate column names", func(t *testing.T) {
t.Parallel()
tmpDir := t.TempDir()
csvFile := filepath.Join(tmpDir, "duplicate_columns.csv")
csvContent := `id,name,id,email
1,John,10,john@example.com
2,Jane,20,jane@example.com`
err := os.WriteFile(csvFile, []byte(csvContent), 0600)
require.NoError(t, err, "Failed to create file or perform operation")
file := newFile(csvFile)
_, err = file.toTable()
if err == nil {
t.Error("expected error for CSV with duplicate column names")
return
}
if !errors.Is(err, errDuplicateColumnName) {
t.Errorf("expected errDuplicateColumnName, got: %v", err)
}
// Verify error message contains the duplicate column name
if !strings.Contains(err.Error(), "id") {
t.Errorf("error message should contain duplicate column name 'id', got: %s", err.Error())
}
})
t.Run("TSV with duplicate column names", func(t *testing.T) {
t.Parallel()
tmpDir := t.TempDir()
tsvFile := filepath.Join(tmpDir, "duplicate_columns.tsv")
tsvContent := `id name id email
1 John 10 john@example.com
2 Jane 20 jane@example.com`
err := os.WriteFile(tsvFile, []byte(tsvContent), 0600)
require.NoError(t, err, "Failed to create file or perform operation")
file := newFile(tsvFile)
_, err = file.toTable()
if err == nil {
t.Error("expected error for TSV with duplicate column names")
return
}
if !errors.Is(err, errDuplicateColumnName) {
t.Errorf("expected errDuplicateColumnName, got: %v", err)
}
// Verify error message contains the duplicate column name
if !strings.Contains(err.Error(), "id") {
t.Errorf("error message should contain duplicate column name 'id', got: %s", err.Error())
}
})
t.Run("CSV with multiple duplicate column names", func(t *testing.T) {
t.Parallel()
tmpDir := t.TempDir()
csvFile := filepath.Join(tmpDir, "multiple_duplicates.csv")
csvContent := `name,age,name,email,age
John,25,Doe,john@example.com,26`
err := os.WriteFile(csvFile, []byte(csvContent), 0600)
require.NoError(t, err, "Failed to create file or perform operation")
file := newFile(csvFile)
_, err = file.toTable()
if err == nil {
t.Error("expected error for CSV with multiple duplicate column names")
return
}
if !errors.Is(err, errDuplicateColumnName) {
t.Errorf("expected errDuplicateColumnName, got: %v", err)
}
})
t.Run("CSV without duplicate column names", func(t *testing.T) {
t.Parallel()
tmpDir := t.TempDir()
csvFile := filepath.Join(tmpDir, "valid.csv")
csvContent := `id,name,age,email
1,John,25,john@example.com
2,Jane,30,jane@example.com`
err := os.WriteFile(csvFile, []byte(csvContent), 0600)
require.NoError(t, err, "Failed to create file or perform operation")
file := newFile(csvFile)
table, err := file.toTable()
if err != nil {
t.Errorf("expected no error for valid CSV, got: %v", err)
return
}
if table == nil {
t.Error("expected valid table, got nil")
}
})
}
// TestFileTypeExtension tests the extension() method for various FileTypes
func TestFileTypeExtension(t *testing.T) {
t.Parallel()
tests := []struct {
name string
fileType FileType
expected string
}{
{"CSV", FileTypeCSV, ".csv"},
{"TSV", FileTypeTSV, ".tsv"},
{"LTSV", FileTypeLTSV, ".ltsv"},
{"Parquet", FileTypeParquet, ".parquet"},
{"CSV GZ", FileTypeCSVGZ, ".csv.gz"},
{"TSV BZ2", FileTypeTSVBZ2, ".tsv.bz2"},
{"LTSV XZ", FileTypeLTSVXZ, ".ltsv.xz"},
{"CSV ZSTD", FileTypeCSVZSTD, ".csv.zst"},
{"XLSX", FileTypeXLSX, ".xlsx"},
{"XLSX GZ", FileTypeXLSXGZ, ".xlsx.gz"},
{"XLSX BZ2", FileTypeXLSXBZ2, ".xlsx.bz2"},
{"XLSX XZ", FileTypeXLSXXZ, ".xlsx.xz"},
{"XLSX ZSTD", FileTypeXLSXZSTD, ".xlsx.zst"},
{"Parquet GZ", FileTypeParquetGZ, ".parquet.gz"},
{"Parquet BZ2", FileTypeParquetBZ2, ".parquet.bz2"},
{"Parquet XZ", FileTypeParquetXZ, ".parquet.xz"},
{"Parquet ZSTD", FileTypeParquetZSTD, ".parquet.zst"},
{"Unsupported", FileTypeUnsupported, ""},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
t.Parallel()
if got := tt.fileType.extension(); got != tt.expected {
t.Errorf("FileType.extension() = %v, want %v", got, tt.expected)
}
})
}
}
// TestOpenReaderEdgeCases tests edge cases in openReader function
func TestOpenReaderEdgeCases(t *testing.T) {
t.Parallel()
tmpDir := t.TempDir()
t.Run("openReader with non-existent file", func(t *testing.T) {
t.Parallel()
file := newFile(filepath.Join(tmpDir, "nonexistent.csv"))
_, closer, err := file.openReader()
if err == nil {
_ = closer() //nolint:errcheck
t.Error("expected error for non-existent file")
}
})
t.Run("openReader with unsupported compressed file", func(t *testing.T) {
t.Parallel()
// Create a fake compressed file with invalid content
fakeBz2 := filepath.Join(tmpDir, "fake.csv.bz2")
if err := os.WriteFile(fakeBz2, []byte("not bz2 data"), 0600); err != nil {
t.Fatal(err)
}
file := newFile(fakeBz2)
reader, closer, err := file.openReader()
if err == nil {
defer closer()
// Try to read from it - should fail
buf := make([]byte, 10)
_, readErr := reader.Read(buf)
if readErr == nil {
t.Error("expected error when reading invalid bz2 data")
}
}
})
}
func TestGetSupportedFilePatterns(t *testing.T) {
t.Parallel()
patterns := supportedFileExtPatterns()
// Should have 25 patterns: 5 base extensions × 5 compression variants (including none)
expectedCount := 25
if len(patterns) != expectedCount {
t.Errorf("GetSupportedFilePatterns() returned %d patterns, want %d", len(patterns), expectedCount)
}
// Check that all expected patterns are present
expectedPatterns := []string{
"*.csv", "*.csv.gz", "*.csv.bz2", "*.csv.xz", "*.csv.zst",
"*.tsv", "*.tsv.gz", "*.tsv.bz2", "*.tsv.xz", "*.tsv.zst",
"*.ltsv", "*.ltsv.gz", "*.ltsv.bz2", "*.ltsv.xz", "*.ltsv.zst",
"*.parquet", "*.parquet.gz", "*.parquet.bz2", "*.parquet.xz", "*.parquet.zst",
"*.xlsx", "*.xlsx.gz", "*.xlsx.bz2", "*.xlsx.xz", "*.xlsx.zst",
}
for _, expected := range expectedPatterns {
found := false
for _, pattern := range patterns {
if pattern == expected {
found = true
break
}
}
if !found {
t.Errorf("GetSupportedFilePatterns() missing pattern: %s", expected)
}
}
}
func TestFile_ToTable_ErrorCases(t *testing.T) {
t.Parallel()
tmpDir := t.TempDir()
t.Run("corrupted CSV file", func(t *testing.T) {
t.Parallel()
// Create a file with invalid CSV format
corruptedFile := filepath.Join(tmpDir, "corrupted.csv")
if err := os.WriteFile(corruptedFile, []byte("name,age\n\"unclosed quote"), 0600); err != nil {
t.Fatal(err)
}
file := newFile(corruptedFile)
_, err := file.toTable()
if err == nil {
t.Error("expected error for corrupted CSV file")
}
})
t.Run("empty CSV file", func(t *testing.T) {
t.Parallel()
emptyFile := filepath.Join(tmpDir, "empty.csv")
if err := os.WriteFile(emptyFile, []byte(""), 0600); err != nil {
t.Fatal(err)
}
file := newFile(emptyFile)
_, err := file.toTable()
if err == nil {
t.Error("expected error for empty CSV file")
}
})
t.Run("non-existent file", func(t *testing.T) {
t.Parallel()
nonExistentFile := filepath.Join(tmpDir, "nonexistent.csv")
file := newFile(nonExistentFile)
_, err := file.toTable()
if err == nil {
t.Error("expected error for non-existent file")
}
})
t.Run("unsupported file type", func(t *testing.T) {
t.Parallel()
textFile := filepath.Join(tmpDir, "test.txt")
if err := os.WriteFile(textFile, []byte("plain text"), 0600); err != nil {
t.Fatal(err)
}
file := newFile(textFile)
_, err := file.toTable()
if err == nil {
t.Error("expected error for unsupported file type")
}
})
t.Run("corrupted compressed file", func(t *testing.T) {
t.Parallel()
// Create a file with .gz extension but invalid gzip content
corruptedGzFile := filepath.Join(tmpDir, "corrupted.csv.gz")
if err := os.WriteFile(corruptedGzFile, []byte("not gzip content"), 0600); err != nil {
t.Fatal(err)
}
file := newFile(corruptedGzFile)
_, err := file.toTable()
if err == nil {
t.Error("expected error for corrupted gzip file")
}
})
t.Run("CSV with inconsistent columns", func(t *testing.T) {
t.Parallel()
inconsistentFile := filepath.Join(tmpDir, "inconsistent.csv")
content := "name,age\nAlice,25\nBob,30,extra\n"
if err := os.WriteFile(inconsistentFile, []byte(content), 0600); err != nil {
t.Fatal(err)
}
file := newFile(inconsistentFile)
_, err := file.toTable()
// CSV parser should return error for inconsistent column count
if err == nil {
t.Error("expected error for inconsistent CSV columns")
}
})
t.Run("LTSV with partially invalid format", func(t *testing.T) {
t.Parallel()
partiallyInvalidLTSV := filepath.Join(tmpDir, "partially_invalid.ltsv")
// LTSV with some valid and some invalid lines
content := "name:Alice\tage:25\ninvalid_line_without_colon\nname:Bob\tage:30\n"
if err := os.WriteFile(partiallyInvalidLTSV, []byte(content), 0600); err != nil {
t.Fatal(err)
}
file := newFile(partiallyInvalidLTSV)
_, err := file.toTable()
// This should succeed as the LTSV parser handles partially invalid data
if err != nil {
t.Errorf("LTSV parser should handle partially invalid data gracefully, got: %v", err)
}
})
}
func TestCompressionDetection_EdgeCases(t *testing.T) {
t.Parallel()
testCases := []struct {
name string
filePath string
expectedCompressed bool
expectedGZ bool
expectedBZ2 bool
expectedXZ bool
expectedZSTD bool
}{
{
name: "double compression extension",
filePath: "file.csv.gz.bz2",
expectedCompressed: true,
expectedGZ: false,
expectedBZ2: true,
expectedXZ: false,
expectedZSTD: false,
},
{
name: "no compression",
filePath: "file.csv",
expectedCompressed: false,
expectedGZ: false,
expectedBZ2: false,
expectedXZ: false,
expectedZSTD: false,
},
{
name: "compression in middle of filename",
filePath: "file.gz.csv",
expectedCompressed: false,
expectedGZ: false,
expectedBZ2: false,
expectedXZ: false,
expectedZSTD: false,
},
{
name: "case sensitive compression",
filePath: "file.csv.GZ",
expectedCompressed: false, // Should be case-sensitive
expectedGZ: false,
expectedBZ2: false,
expectedXZ: false,
expectedZSTD: false,
},
}