forked from SheetJS/sheetjs
-
-
Notifications
You must be signed in to change notification settings - Fork 36
/
tests.lst
1445 lines (1445 loc) Β· 42 KB
/
tests.lst
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
863
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
AutoFilter.xlsb
BlankSheetTypes.xlsb
ErrorTypes.xlsb
NumberFormatCondition.xlsb
RkNumber.xlsb
apachepoi_51519.xlsb
# apachepoi_Simple.xlsb # Beta file
apachepoi_WithTextBox.xlsb
apachepoi_comments.xlsb
apachepoi_date.xlsb
apachepoi_hyperlink.xlsb
apachepoi_protected_passtika.xlsb.pending
apachepoi_sample.xlsb
apachepoi_testVarious.xlsb
author_snowman.xlsb
calendar_stress_test.xlsb.pending
cell_style_simple.xlsb
column_width.xlsb
comments_stress_test.xlsb
custom_properties.xlsb
defined_names_simple.xlsb
formula_stress_test.xlsb
formulae_test_simple.xlsb
hyperlink_no_rels.xlsb
hyperlink_stress_test_2011.xlsb
large_strings.xlsb.pending
merge_cells.xlsb
named_ranges_2011.xlsb
number_format.xlsb
number_format_entities.xlsb
number_format_russian.xlsb
numfmt_1_russian.xlsb
outline.xlsb
page_margins_2016.xlsb
phonetic_text.xlsb
pivot_table_named_range.xlsb
pivot_table_test.xlsb
rich_text_stress.xlsb
row_height.xlsb
sheet_visibility.xlsb
sized_boxen.xlsb
smart_tags_2007.xlsb
sushi.xlsb
text_and_numbers.xlsb
time_stress_test_1.xlsb.pending
xlsx-stream-d-date-cell.xlsb
AutoFilter.xlsx
ErrorTypes.xlsx
LONumbers-2010.xlsx
LONumbers-2011.xlsx
LONumbers.xlsx
RkNumber.xlsx
apachepoi_45430.xlsx
# apachepoi_45540_classic_Footer.xlsx # xlml
# apachepoi_45540_classic_Header.xlsx # xlml
apachepoi_45540_form_Footer.xlsx
apachepoi_45540_form_Header.xlsx
# apachepoi_45544.xlsx # xlml
apachepoi_46535.xlsx
apachepoi_46536.xlsx
apachepoi_47090.xlsx
apachepoi_47504.xlsx
apachepoi_47668.xlsx
apachepoi_47737.xlsx
apachepoi_47804.xlsx
apachepoi_47813.xlsx.pending
apachepoi_47862.xlsx
apachepoi_47889.xlsx
apachepoi_48495.xlsx
apachepoi_48539.xlsx
apachepoi_48703.xlsx
apachepoi_48779.xlsx
# apachepoi_48923.xlsx # xlml
apachepoi_48962.xlsx
# apachepoi_49156.xlsx # xlml
apachepoi_49273.xlsx
apachepoi_49325.xlsx
apachepoi_49609.xlsx
apachepoi_49783.xlsx
apachepoi_49872.xlsx
apachepoi_49928.xlsx
apachepoi_49966.xlsx
apachepoi_50096.xlsx
apachepoi_50299.xlsx
apachepoi_50755_workday_formula_example.xlsx
apachepoi_50784-font_theme_colours.xlsx
apachepoi_50786-indexed_colours.xlsx
apachepoi_50795.xlsx
apachepoi_50846-border_colours.xlsx
apachepoi_50867_with_table.xlsx
apachepoi_51222.xlsx
apachepoi_51470.xlsx
apachepoi_51519.xlsx
apachepoi_51585.xlsx
apachepoi_51626.xlsx
apachepoi_51626_contact.xlsx
apachepoi_51710.xlsx
apachepoi_51850.xlsx
apachepoi_51963.xlsx
apachepoi_51998.xlsx
apachepoi_52348.xlsx
apachepoi_52425.xlsx
apachepoi_52575_main.xlsx
apachepoi_52716.xlsx
apachepoi_53101.xlsx
apachepoi_53105.xlsx
apachepoi_53282.xlsx
apachepoi_53282b.xlsx
apachepoi_53568.xlsx
apachepoi_53734.xlsx
apachepoi_53798.xlsx
apachepoi_53798_shiftNegative_TMPL.xlsx
apachepoi_54034.xlsx
# apachepoi_54071.xlsx # xlml
apachepoi_54084 - Greek - beyond BMP.xlsx
apachepoi_54206.xlsx
apachepoi_54288-ref.xlsx
apachepoi_54288.xlsx
apachepoi_54399.xlsx
apachepoi_54436.xlsx
apachepoi_54524.xlsx
apachepoi_54607.xlsx
apachepoi_54764-2.xlsx
apachepoi_54764.xlsx
apachepoi_55406_Conditional_formatting_sample.xlsx
apachepoi_55640.xlsx
apachepoi_55745.xlsx
apachepoi_55850.xlsx
apachepoi_55864.xlsx
apachepoi_55906-MultiSheetRefs.xlsx
apachepoi_55923.xlsx
apachepoi_55924.xlsx
apachepoi_55926.xlsx
apachepoi_55927.xlsx
apachepoi_56011.xlsx
apachepoi_56017.xlsx
apachepoi_56169.xlsx
apachepoi_56170.xlsx
apachepoi_56274.xlsx
apachepoi_56278.xlsx
apachepoi_56295.xlsx
apachepoi_56315.xlsx
apachepoi_56420.xlsx
apachepoi_56502.xlsx
apachepoi_56511.xlsx
apachepoi_56514.xlsx
apachepoi_56557.xlsx
apachepoi_56574.xlsx
apachepoi_56644.xlsx
apachepoi_56688_1.xlsx
apachepoi_56688_2.xlsx
apachepoi_56688_3.xlsx
apachepoi_56688_4.xlsx
apachepoi_56702.xlsx
apachepoi_56730.xlsx
apachepoi_56737.xlsx
apachepoi_56822-Countifs.xlsx
apachepoi_56957.xlsx
apachepoi_57171_57163_57165.xlsx
apachepoi_57176.xlsx
apachepoi_57196.xlsx
apachepoi_57236.xlsx
apachepoi_57362.xlsx
apachepoi_57423.xlsx
apachepoi_57482-OnlyNumeric.xlsx
apachepoi_57523.xlsx
apachepoi_57535.xlsx
apachepoi_57798.xlsx
apachepoi_57826.xlsx
apachepoi_57828.xlsx
apachepoi_57838.xlsx
apachepoi_57890.xlsx
apachepoi_57893-many-merges.xlsx.pending
apachepoi_57914.xlsx
apachepoi_58315.xlsx
apachepoi_58325_db.xlsx
apachepoi_58325_lt.xlsx
# apachepoi_58616.xlsx # Cannot find Workbook stream
apachepoi_58648.xlsx
apachepoi_58731.xlsx
apachepoi_58747.xlsx
apachepoi_58760.xlsx
apachepoi_59021.xlsx
apachepoi_59026.xlsx
apachepoi_59106.xlsx
apachepoi_59132.xlsx
apachepoi_59264.xlsx
apachepoi_59687.xlsx
apachepoi_59736.xlsx
apachepoi_59746_NoRowNums.xlsx
apachepoi_59775.xlsx
apachepoi_60255_extra_drawingparts.xlsx
apachepoi_60289.xlsx
#apachepoi_60384.xlsx
apachepoi_60709.xlsx
#apachepoi_60825.xlsx # Missing worksheet xml file
apachepoi_61034.xlsx
apachepoi_61060-conditional-number-formatting.xlsx
apachepoi_61063.xlsx
apachepoi_61281.xlsx
apachepoi_AverageTaxRates.xlsx
apachepoi_Booleans.xlsx
apachepoi_BrNotClosed.xlsx
apachepoi_ConditionalFormattingSamples.xlsx
apachepoi_CustomXMLMapping-singleattributenamespace.xlsx
#apachepoi_CustomXMLMappings-complex-type.xlsx # Upstream changed file
apachepoi_CustomXMLMappings.xlsx
apachepoi_CustomXmlMappings-inverse-order.xlsx
apachepoi_DataTableCities.xlsx
apachepoi_DataValidationEvaluations.xlsx
apachepoi_DataValidations-49244.xlsx
# apachepoi_DateFormatTests.xlsx # xlml
apachepoi_ElapsedFormatTests.xlsx
apachepoi_ExcelTables.xlsx
apachepoi_ForShifting.xlsx
apachepoi_FormatChoiceTests.xlsx
apachepoi_FormatConditionTests.xlsx
apachepoi_FormatKM.xlsx
apachepoi_Formatting.xlsx
apachepoi_FormulaEvalTestData_Copy.xlsx
apachepoi_FormulaSheetRange.xlsx
# apachepoi_GeneralFormatTests.xlsx # xlml
apachepoi_GroupTest.xlsx
apachepoi_InlineStrings.xlsx
apachepoi_Intersection-52111-xssf.xlsx
apachepoi_MatrixFormulaEvalTestData.xlsx
apachepoi_NewStyleConditionalFormattings.xlsx
apachepoi_NewlineInFormulas.xlsx
# apachepoi_NumberFormatApproxTests.xlsx # xlml
apachepoi_NumberFormatTests.xlsx
apachepoi_RepeatingRowsCols.xlsx
apachepoi_SampleSS.strict.xlsx
apachepoi_SampleSS.xlsx
apachepoi_SheetTabColors.xlsx
apachepoi_ShrinkToFit.xlsx
apachepoi_SimpleMultiCell.xlsx
apachepoi_SimpleNormal.xlsx
apachepoi_SimpleScatterChart.xlsx
apachepoi_SimpleStrict.xlsx
apachepoi_SimpleWithComments.xlsx
apachepoi_StructuredReferences.xlsx
apachepoi_StructuredRefs-lots-with-lookups.xlsx
# apachepoi_Tables.xlsx # xlml
apachepoi_TablesWithDifferentHeaders.xlsx
apachepoi_TestShiftRowSharedFormula.xlsx
apachepoi_TextFormatTests.xlsx
apachepoi_Themes.xlsx
apachepoi_Themes2.xlsx
apachepoi_TwoSheetsNoneHidden.xlsx
apachepoi_TwoSheetsOneHidden.xlsx
apachepoi_WithChart.xlsx
apachepoi_WithChartSheet.xlsx
apachepoi_WithConditionalFormatting.xlsx
apachepoi_WithDrawing.xlsx
apachepoi_WithEmbeded.xlsx
apachepoi_WithMoreVariousData.xlsx
apachepoi_WithTable.xlsx
apachepoi_WithTextBox.xlsx
apachepoi_WithTextBox2.xlsx
apachepoi_WithThreeCharts.xlsx
apachepoi_WithTwoCharts.xlsx
apachepoi_WithVariousData.xlsx
apachepoi_XSSFSheet.copyRows.xlsx
apachepoi_atp.xlsx
apachepoi_bug60858.xlsx
apachepoi_chartTitle_noTitle.xlsx
apachepoi_chartTitle_withTitle.xlsx
apachepoi_chartTitle_withTitleFormula.xlsx
apachepoi_chart_sheet.xlsx
apachepoi_commentTest.xlsx
apachepoi_comments.xlsx
apachepoi_conditional_formatting_with_formula_on_second_sheet.xlsx
apachepoi_craftonhills.edu_programreview_report.aspx_goalpriorityreport_0011d159-1eeb-4b63-8833-867b0926e5f3.xlsx
apachepoi_customIndexedColors.xlsx
apachepoi_dataValidationTableRange.xlsx
apachepoi_evaluate_formula_with_structured_table_references.xlsx
apachepoi_headerFooterTest.xlsx
apachepoi_noSharedStringTable.xlsx
apachepoi_picture.xlsx
apachepoi_poc-shared-strings.xlsx
apachepoi_poc-xmlbomb-empty.xlsx
apachepoi_poc-xmlbomb.xlsx
# apachepoi_protected_passtika.xlsx # password
apachepoi_ref-56737.xlsx
apachepoi_ref2-56737.xlsx
apachepoi_reordered_sheets.xlsx
apachepoi_resize_compare.xlsx
apachepoi_sample-beta.xlsx
apachepoi_sample.strict.xlsx
apachepoi_sample.xlsx
apachepoi_shared_formulas.xlsx
apachepoi_sheetProtection_allLocked.xlsx
apachepoi_sheetProtection_not_protected.xlsx
apachepoi_simple-monthly-budget.xlsx
# apachepoi_style-alternate-content.xlsx # bad xml
apachepoi_styles.xlsx
apachepoi_tableStyle.xlsx
apachepoi_template.xlsx
apachepoi_unicodeSheetName.xlsx
apachepoi_workbookProtection-sheet_password-2013.xlsx
apachepoi_workbookProtection-workbook_password-2013.xlsx
apachepoi_workbookProtection-workbook_password_user_range-2010.xlsx
apachepoi_workbookProtection_not_protected.xlsx
apachepoi_workbookProtection_workbook_revision_protected.xlsx
apachepoi_workbookProtection_workbook_structure_protected.xlsx
apachepoi_workbookProtection_workbook_windows_protected.xlsx
apachepoi_workbookProtection_worksheet_protected.xlsx
apachepoi_xlsx-jdbc.xlsx
author_snowman.xlsx
calendar_stress_test.xlsx.pending
cell_style_simple.xlsx
column_width.xlsx
comments_stress_test.xlsx
custom_properties.xlsx
defined_names_simple.xlsx
excel-reader-xlsx_data01.xlsx
excel-reader-xlsx_data02.xlsx
excel-reader-xlsx_error02.xlsx.pending
excel-reader-xlsx_error03.xlsx.pending
excel-reader-xlsx_error04.xlsx.pending
excel-reader-xlsx_error05.xlsx.pending
excel-reader-xlsx_error06.xlsx.pending
excel-reader-xlsx_error07.xlsx.pending
excel-reader-xlsx_error08.xlsx.pending
excel-reader-xlsx_inline01.xlsx
excel-reader-xlsx_libre01.xlsx
formula_stress_test.xlsx
formulae_test_simple.xlsx
hyperlink_no_rels.xlsx
hyperlink_stress_test_2011.xlsx
interview.xlsx
issue.xlsx
jxls-core_formulaOneRow.xlsx
jxls-core_simple.xlsx
jxls-examples_stress1.xlsx
jxls-examples_stress2.xlsx
# jxls-reader_departmentData.xlsx # xlml
large_strings.xlsx.pending
libreoffice_calc_cjk-text_cell-justify-distributed-single.xlsx
libreoffice_calc_conditional-formatting.xlsx
libreoffice_calc_conditional-formatting_all_icon_sets.xlsx
libreoffice_calc_drawing-object_shapes.xlsx
libreoffice_calc_export-millon-rows.xlsx.pending
libreoffice_calc_external-ref_access-basic.xlsx
libreoffice_calc_external-ref_extdata.xlsx
libreoffice_calc_tab-color.xlsx
libreoffice_calc_text-angled-with-border.xlsx
libreoffice_calc_xlsx-export-single-cell-at-last-row.xlsx
libreoffice_calc_xlsx-import_encryption_simple-encryption-2007.xlsx.pending
libreoffice_calc_xlsx-import_encryption_simple-encryption-2010.xlsx.pending
libreoffice_calc_xlsx-import_format-as-table.xlsx
libreoffice_calc_xlsx-import_named-range.xlsx
libreoffice_calc_xlsx-import_perf_300000_line_sample.xlsx.pending
libreoffice_calc_xlsx-import_perf_8-by-300000-cells.xlsx.pending
libreoffice_calc_xlsx-import_perf_pivot-table-with-large-unique-entries.xlsx.pending
libreoffice_calc_xlsx-import_shared-formula_1.xlsx
merge_cells.xlsx
mixed_sheets.xlsx
named_ranges_2011.xlsx
number_format_entities.xlsx
openpyxl_g_NameWithValueBug.xlsx
openpyxl_g_empty.xlsx.pending
openpyxl_g_empty-no-string.xlsx
# openpyxl_g_empty-with-styles.xlsx # xlml
openpyxl_g_empty_libre.xlsx
# openpyxl_g_empty_no_dimensions.xlsx # xlml
openpyxl_g_empty_with_no_properties.xlsx
# openpyxl_g_guess_types.xlsx # xlml
openpyxl_g_libreoffice_nrt.xlsx
openpyxl_g_merge_range.xlsx
openpyxl_g_sample.xlsx
openpyxl_r_bigfoot.xlsx
openpyxl_r_bug137.xlsx
openpyxl_r_bug275.xlsx
openpyxl_r_bug304.xlsx.pending
openpyxl_r_comments.xlsx
openpyxl_r_complex-styles.xlsx
openpyxl_r_conditional-formatting.xlsx
openpyxl_r_contains_chartsheets.xlsx
openpyxl_r_date_1900.xlsx
openpyxl_r_date_1904.xlsx
openpyxl_r_formulae.xlsx
openpyxl_r_nonstandard_workbook_name.xlsx
openpyxl_r_null_archive.xlsx.pending
openpyxl_r_null_file.xlsx.pending
outline.xlsx
page_margins_2016.xlsx
phonetic_text.xlsx
pivot_table_named_range.xlsx
rich_text_stress.xlsx
roo_numbers1.xlsx
# roo_type_excel.xlsx # incorrect baseline
roo_1900_base.xlsx
roo_1904_base.xlsx
roo_Bibelbund.xlsx
roo_Pfand_from_windows_phone.xlsx
roo_bbu.xlsx
roo_boolean.xlsx
roo_borders.xlsx
roo_bug-numbered-sheet-names.xlsx
roo_chart_sheet.xlsx
roo_comments-google.xlsx
roo_comments.xlsx
roo_datetime.xlsx
roo_emptysheets.xlsx
roo_file_item_error.xlsx
roo_formula.xlsx
roo_formula_cell_types.xlsx
roo_formula_string_error.xlsx
roo_header_offset.xlsx
roo_hidden_sheets.xlsx
roo_html_strings_formatting.xlsx
roo_link.xlsx
roo_merged_ranges.xlsx
roo_name_with_leading_slash.xlsx
roo_named_cells.xlsx
roo_numbers-export.xlsx
roo_numbers1.xlsx
roo_numbers1withnull.xlsx
roo_numeric-link.xlsx
roo_only_one_sheet.xlsx
roo_paragraph.xlsx
roo_parse_clean_with_unicode.xlsx
roo_parse_with_clean_option.xlsx
roo_simple_spreadsheet.xlsx
roo_style.xlsx
roo_style_nodes_with_white_spaces.xlsx
roo_time-test.xlsx
# roo_type_excel.xlsx # incorrect baseline
# roo_type_openoffice.xlsx # incorrect baseline
roo_whitespace.xlsx
roo_x000D.xlsx
roo_zero-padded-number.xlsx
row_height.xlsx
sheet_visibility.xlsx
sheet_visibility_strict.xlsx
sized_boxen.xlsx
smart_tags_2007.xlsx
spout-xlsx_attack_billion_laughs.xlsx
spout-xlsx_attack_quadratic_blowup.xlsx
# spout-xlsx_file_corrupted.xlsx
# spout-xlsx_file_with_no_sheets_in_workbook_xml.xlsx # explicit error on RT
# spout-xlsx_file_with_sheet_xml_not_matching_content_types.xlsx
spout-xlsx_one_sheet_with_inline_strings.xlsx
spout-xlsx_one_sheet_with_invalid_xml_characters.xlsx
spout-xlsx_one_sheet_with_pre_encoded_html_entities.xlsx
spout-xlsx_one_sheet_with_shared_multiline_strings.xlsx
spout-xlsx_one_sheet_with_shared_strings.xlsx
spout-xlsx_one_sheet_with_shared_strings_containing_text_and_hyperlink_in_same_cell.xlsx
spout-xlsx_one_sheet_with_shared_strings_missing_unique_count.xlsx
spout-xlsx_one_sheet_with_shared_strings_missing_unique_count_and_count.xlsx
spout-xlsx_sheet_with_all_cell_types.xlsx
spout-xlsx_sheet_with_custom_date_formats_and_no_apply_number_format.xlsx
spout-xlsx_sheet_with_dates_and_times.xlsx
spout-xlsx_sheet_with_different_numeric_value_dates.xlsx
spout-xlsx_sheet_with_different_numeric_value_times.xlsx
spout-xlsx_sheet_with_dimensions_and_empty_cells.xlsx
spout-xlsx_sheet_with_empty_cells.xlsx
spout-xlsx_sheet_with_empty_rows_and_missing_row_index.xlsx
spout-xlsx_sheet_with_empty_shared_string.xlsx
spout-xlsx_sheet_with_formulas.xlsx
spout-xlsx_sheet_with_lots_of_shared_strings.xlsx
spout-xlsx_sheet_with_missing_cell_reference.xlsx
spout-xlsx_sheet_with_no_cells.xlsx
spout-xlsx_sheet_with_no_shared_strings_file.xlsx
spout-xlsx_sheet_with_prefixed_shared_strings_xml.xlsx
spout-xlsx_sheet_with_prefixed_xml_files.xlsx
spout-xlsx_sheet_with_preserve_space_shared_strings.xlsx
spout-xlsx_sheet_with_pronunciation.xlsx
spout-xlsx_sheet_with_row_not_starting_at_column_a.xlsx
spout-xlsx_sheet_with_same_numeric_value_date_formatted_differently.xlsx
spout-xlsx_sheet_with_untrimmed_inline_strings.xlsx
spout-xlsx_sheet_with_zeros_in_row.xlsx
spout-xlsx_sheet_without_dimensions_and_empty_cells.xlsx
spout-xlsx_sheet_without_dimensions_but_spans_and_empty_cells.xlsx
spout-xlsx_two_sheets_with_custom_names.xlsx
spout-xlsx_two_sheets_with_custom_names_and_custom_active_tab.xlsx
spout-xlsx_two_sheets_with_inline_strings.xlsx
spout-xlsx_two_sheets_with_shared_strings.xlsx
spout-xlsx_two_sheets_with_sheets_definition_in_reverse_order.xlsx
spreadsheet-parsexlsx_Test.xlsx
spreadsheet-parsexlsx_bug-10.xlsx
spreadsheet-parsexlsx_bug-11.xlsx
spreadsheet-parsexlsx_bug-12.xlsx
spreadsheet-parsexlsx_bug-13.xlsx
spreadsheet-parsexlsx_bug-14.xlsx
spreadsheet-parsexlsx_bug-15.xlsx
spreadsheet-parsexlsx_bug-16.xlsx
spreadsheet-parsexlsx_bug-17a.xlsx
spreadsheet-parsexlsx_bug-17b.xlsx
spreadsheet-parsexlsx_bug-2.xlsx
spreadsheet-parsexlsx_bug-29.xlsx
spreadsheet-parsexlsx_bug-3.xlsx
# spreadsheet-parsexlsx_bug-32-2.xlsx # occasional timeout
spreadsheet-parsexlsx_bug-32.xlsx
spreadsheet-parsexlsx_bug-38.xlsx
spreadsheet-parsexlsx_bug-4.xlsx
spreadsheet-parsexlsx_bug-41.xlsx
spreadsheet-parsexlsx_bug-5.xlsx
spreadsheet-parsexlsx_bug-57.xlsx
spreadsheet-parsexlsx_bug-6-2.xlsx
spreadsheet-parsexlsx_bug-6.xlsx
# spreadsheet-parsexlsx_bug-61.xlsx
spreadsheet-parsexlsx_bug-7.xlsx
spreadsheet-parsexlsx_bug-8.xlsx
spreadsheet-parsexlsx_bug-lock.xlsx
spreadsheet-parsexlsx_column-formats.xlsx
# spreadsheet-parsexlsx_encryption-agile-123q.xlsx
# spreadsheet-parsexlsx_encryption-standard-default-password.xlsx
spreadsheet-parsexlsx_hidden-row-and-column.xlsx
spreadsheet-parsexlsx_hidden-sheet.xlsx
spreadsheet-parsexlsx_page-Setup.xlsx
spreadsheet-parsexlsx_tab-color.xlsx
spreadsheet-parsexlsx_target-abspath.xlsx
sushi.xlsx
text_and_numbers.xlsx
write.xlsx
xlrd_apachepoi_49609.xlsx
xlrd_apachepoi_52348.xlsx
xlrd_err_cell_empty.xlsx
xlrd_issue150.xlsx
xlrd_merged_cells.xlsx
xlrd_reveng1.xlsx
xlrd_self_evaluation_report_2014-05-19.xlsx
xlrd_test_comments_excel.xlsx
xlrd_test_comments_excel_sheet2.xlsx
xlrd_test_comments_gdocs.xlsx
xlrd_text_bar.xlsx
xlsx-stream-d-date-cell.xlsx
ΧΧΧ©ΧΧ_Χ Χ§ΧΧΧΧͺ_ΧΧΧΧΧ.xlsx
BlankSheetTypes.xlsm
NumberFormatCondition.xlsm
apachepoi_45431.xlsm
apachepoi_47026.xlsm
apachepoi_47089.xlsm
apachepoi_57181.xlsm
apachepoi_60512.xlsm
apachepoi_ExcelWithAttachments.xlsm
apachepoi_SimpleMacro.xlsm
apachepoi_mv-calculator-final-2-20-2013.xlsm
apachepoi_testNames.xlsm
hyperlink_no_rels.xlsm
number_format.xlsm
number_format_russian.xlsm
numfmt_1_russian.xlsm
# openpyxl_r_vba comments.xlsm
# openpyxl_r_vba-comments-saved.xlsm
# openpyxl_r_vba-test.xlsm
# pivot_table_test.xlsm # xlml
roo_1900_base.xlsm
roo_1904_base.xlsm
roo_Bibelbund.xlsm
roo_Pfand_from_windows_phone.xlsm
roo_bbu.xlsm
roo_boolean.xlsm
roo_borders.xlsm
roo_bug-numbered-sheet-names.xlsm
roo_comments.xlsm
roo_datetime.xlsm
roo_emptysheets.xlsm
roo_file_item_error.xlsm
roo_formula.xlsm
roo_formula_string_error.xlsm
roo_link.xlsm
roo_named_cells.xlsm
roo_numbers1.xlsm
roo_numeric-link.xlsm
roo_only_one_sheet.xlsm
roo_paragraph.xlsm
roo_simple_spreadsheet.xlsm
roo_style.xlsm
roo_time-test.xlsm
roo_type_excel.xlsm
roo_type_openoffice.xlsm
roo_whitespace.xlsm
AutoFilter.ods
BlankSheetTypes.ods
apachepoi_SampleSS.ods
author_snowman.ods
cell_style_simple.ods
comments_stress_test.ods
formula_stress_test.ods
merge_cells.ods
number_format.ods
outline.ods
rich_text_stress.ods
roo_numbers1.ods
roo_type_excel.ods
roo_Bibelbund.ods
roo_Bibelbund1.ods
roo_advanced_header.ods
roo_bbu.ods
roo_boolean.ods
roo_borders.ods
roo_comments.ods
roo_datetime.ods
roo_dreimalvier.ods
roo_emptysheets.ods
# roo_encrypted-letmein.ods
roo_formula.ods
roo_hidden_sheets.ods
roo_html-escape.ods
roo_matrix.ods
roo_named_cells.ods
roo_numbers1.ods
roo_only_one_sheet.ods
roo_paragraph.ods
roo_ric.ods
roo_simple_spreadsheet.ods
roo_simple_spreadsheet_from_italo.ods
roo_style.ods
roo_time-test.ods
roo_type_excel.ods
roo_type_excelx.ods
roo_whitespace.ods
sheet_visibility.ods
spout-ods_attack_billion_laughs.ods
spout-ods_attack_quadratic_blowup.ods
# spout-ods_file_corrupted.ods
spout-ods_file_generated_by_excel_2010_windows.ods
spout-ods_file_generated_by_excel_office_online.ods
spout-ods_file_generated_by_libre_office.ods
spout-ods_one_sheet_with_strings.ods
spout-ods_sheet_with_all_cell_types.ods
spout-ods_sheet_with_dates_and_times.ods
spout-ods_sheet_with_empty_cells.ods
spout-ods_sheet_with_empty_rows.ods
spout-ods_sheet_with_formulas.ods
spout-ods_sheet_with_hyperlinks.ods
spout-ods_sheet_with_inline_font_formatting.ods
spout-ods_sheet_with_invalid_date_time.ods.pending
spout-ods_sheet_with_multiline_string.ods
spout-ods_sheet_with_no_cells.ods
spout-ods_sheet_with_number_columns_repeated.ods
spout-ods_sheet_with_number_rows_repeated.ods
spout-ods_sheet_with_only_one_cell.ods
spout-ods_sheet_with_undefined_value_type.ods
spout-ods_sheet_with_untrimmed_strings.ods
spout-ods_sheet_with_various_spaces.ods
spout-ods_sheet_with_zeros_in_row.ods
spout-ods_two_sheets_with_custom_names.ods
spout-ods_two_sheets_with_no_settings_xml_file.ods
spout-ods_two_sheets_with_strings.ods
sushi.ods
biff5/NumberFormatCondition.xls
biff5/RkNumber.xls
biff5/cell_style_simple.xls
biff5/comments_stress_test.xls
biff5/custom_properties.xls
biff5/defined_names_simple.xls
biff5/hyperlink_stress_test_2011.xls
biff5/large_strings.xls.pending
biff5/merge_cells.xls
biff5/named_ranges_2011.xls
biff5/number_format.xls
biff5/number_format_estonian.xls
biff5/number_format_greek.xls.pending
biff5/number_format_vietnamese.xls
biff5/pivot_table_test.xls
biff5/rich_text_stress.xls
biff5/sushi.xls
biff5/text_and_numbers.xls
comments_stress_test.xls.b64
formula_stress_test.xls.b64
A4X_2013.xls
A4X_gnumeric.xls
AutoFilter.xls
BlankSheetTypes.xls
ErrorTypes.xls
LONumbers-2010.xls
LONumbers-2011.xls
LONumbers.xls
NumberFormatCondition.xls
RkNumber.xls
apachepoi_12561-1.xls
apachepoi_12561-2.xls
apachepoi_12843-1.xls
apachepoi_12843-2.xls
apachepoi_13224.xls
apachepoi_13796.xls
apachepoi_14330-1.xls
apachepoi_14330-2.xls
apachepoi_14460.xls
# apachepoi_15228.xls # xlml
# apachepoi_15375.xls # xlml
apachepoi_15556.xls
apachepoi_15573.xls
# apachepoi_1900DateWindowing.xls # xlml
apachepoi_1904DateWindowing.xls
apachepoi_19599-1.xls
apachepoi_19599-2.xls
apachepoi_22742.xls
apachepoi_24207.xls
apachepoi_24215.xls
apachepoi_25183.xls
apachepoi_25695.xls
apachepoi_26100.xls
apachepoi_27272_1.xls
# apachepoi_27272_2.xls # xlml
apachepoi_27349-vlookupAcrossSheets.xls
apachepoi_27364.xls
apachepoi_27394.xls
apachepoi_27852.xls
apachepoi_27933.xls
apachepoi_28772.xls
apachepoi_28774.xls
apachepoi_29675.xls
apachepoi_29942.xls
apachepoi_29982.xls
apachepoi_30070.xls
apachepoi_30540.xls
apachepoi_30978-alt.xls
apachepoi_30978-deleted.xls
apachepoi_31661.xls
apachepoi_31749.xls
apachepoi_31979.xls
apachepoi_32822.xls
apachepoi_33082.xls
apachepoi_34775.xls
apachepoi_35564.xls
apachepoi_35565.xls
# apachepoi_35897-type4.xls ## password
apachepoi_36947.xls
apachepoi_37376.xls
apachepoi_37630.xls
apachepoi_37684-1.xls
apachepoi_37684-2.xls
apachepoi_37684.xls
apachepoi_39234.xls
apachepoi_39512.xls
apachepoi_39634.xls
apachepoi_3dFormulas.xls
apachepoi_40285.xls
apachepoi_41139.xls
apachepoi_41546.xls
# apachepoi_42016.xls # xlml timeout
apachepoi_42464-ExpPtg-bad.xls
apachepoi_42464-ExpPtg-ok.xls
apachepoi_42726.xls
apachepoi_42844.xls
apachepoi_43251.xls
apachepoi_43493.xls
apachepoi_43623.xls
apachepoi_43902.xls
apachepoi_44010-SingleChart.xls
apachepoi_44010-TwoCharts.xls
apachepoi_44167.xls
apachepoi_44200.xls
apachepoi_44201.xls
apachepoi_44235.xls
apachepoi_44297.xls
apachepoi_44593.xls ## xlsb loop timeout
apachepoi_44636.xls
apachepoi_44643.xls
apachepoi_44693.xls
apachepoi_44840.xls
apachepoi_44861.xls
apachepoi_44891.xls
apachepoi_44958.xls
apachepoi_44958_1.xls
apachepoi_45129.xls
apachepoi_45290.xls
apachepoi_45322.xls
apachepoi_45365-2.xls
# apachepoi_45365.xls # xlml
apachepoi_45492.xls
apachepoi_45538_classic_Footer.xls
apachepoi_45538_classic_Header.xls
apachepoi_45538_form_Footer.xls
apachepoi_45538_form_Header.xls
apachepoi_45565.xls
apachepoi_45672.xls
apachepoi_45720.xls
apachepoi_45761.xls
apachepoi_45784.xls
apachepoi_46136-NoWarnings.xls
apachepoi_46136-WithWarnings.xls
apachepoi_46137.xls
apachepoi_46250.xls
apachepoi_46368.xls
apachepoi_46445.xls
apachepoi_46515.xls
apachepoi_46670_http.xls
apachepoi_46670_local.xls
apachepoi_46670_ref_airline.xls
apachepoi_46904.xls
apachepoi_47034.xls
apachepoi_47154.xls
apachepoi_47245_test.xls
apachepoi_47251.xls
apachepoi_47251_1.xls
apachepoi_47701.xls
apachepoi_47847.xls
apachepoi_47920.xls
apachepoi_47924.xls
apachepoi_48026.xls
apachepoi_48180.xls
apachepoi_48325.xls
apachepoi_48703.xls
apachepoi_48968.xls
apachepoi_49096.xls
apachepoi_49185.xls
apachepoi_49219.xls
apachepoi_49237.xls
apachepoi_49423.xls
apachepoi_49524.xls
apachepoi_49529.xls
apachepoi_49581.xls
apachepoi_49612.xls
apachepoi_49751.xls
# apachepoi_49761.xls ## xlsb bad xnum
apachepoi_49896.xls
apachepoi_49928.xls
apachepoi_49931.xls
apachepoi_50020.xls
apachepoi_50298.xls
apachepoi_50426.xls
apachepoi_50756.xls
apachepoi_50779_1.xls
apachepoi_50779_2.xls
apachepoi_50833.xls.pending
apachepoi_50939.xls
apachepoi_51143.xls
apachepoi_51461.xls
apachepoi_51498.xls
apachepoi_51535.xls.pending
apachepoi_51670.xls
apachepoi_51675.xls
apachepoi_51832.xls.pending
apachepoi_52527.xls
apachepoi_52575_main.xls
apachepoi_52575_source.xls
apachepoi_53109.xls
apachepoi_53404.xls
apachepoi_53433.xls
apachepoi_53446.xls
apachepoi_53588.xls
apachepoi_53691.xls
apachepoi_53798_shiftNegative_TMPL.xls
apachepoi_53972.xls
apachepoi_53984.xls
# apachepoi_54016.xls # xlml
apachepoi_54206.xls
apachepoi_54500.xls
apachepoi_54686_fraction_formats.xls
apachepoi_55341_CellStyleBorder.xls
apachepoi_55668.xls
apachepoi_55906-MultiSheetRefs.xls
apachepoi_55982.xls
apachepoi_56325.xls
apachepoi_56325a.xls
apachepoi_56450.xls
apachepoi_56482.xls
apachepoi_56563a.xls
apachepoi_56563b.xls
apachepoi_56737.xls
apachepoi_57003-FixedFunctionTestCaseData.xls
apachepoi_57074.xls
apachepoi_57163.xls
apachepoi_57231_MixedGasReport.xls.pending
apachepoi_57456.xls.pending
apachepoi_57798.xls
apachepoi_57925.xls
apachepoi_59074.xls
apachepoi_59264.xls
apachepoi_59830.xls
apachepoi_59858.xls
apachepoi_60273.xls
# apachepoi_60284.xls
apachepoi_61045_govdocs1_626534.xls
apachepoi_61287.xls
# apachepoi_61300.xls # node 0.8 oob
apachepoi_AbnormalSharedFormulaFlag.xls
apachepoi_AreaErrPtg.xls
# apachepoi_BOOK_in_capitals.xls # note: worksheet length exceeds 31 chars
apachepoi_Basic_Expense_Template_2011.xls
apachepoi_CodeFunctionTestCaseData.xls
apachepoi_ColumnStyle1dp.xls
apachepoi_ColumnStyle1dpColoured.xls
apachepoi_ColumnStyleNone.xls
apachepoi_ComplexFunctionTestCaseData.xls
apachepoi_ConditionalFormattingSamples.xls
apachepoi_ContinueRecordProblem.xls
apachepoi_DBCSHeader.xls
apachepoi_DBCSSheetName.xls
apachepoi_DGet.xls
apachepoi_DStar.xls
apachepoi_DateFormats.xls
apachepoi_DeltaFunctionTestCaseData.xls
apachepoi_DrawingAndComments.xls
apachepoi_DrawingContinue.xls
apachepoi_EmbeddedChartHeaderTest.xls
apachepoi_Employee.xls
apachepoi_ErrPtg.xls
apachepoi_FactDoubleFunctionTestCaseData.xls
apachepoi_ForShifting.xls
apachepoi_FormatChoiceTests.xls
apachepoi_FormatKM.xls
apachepoi_Formatting.xls
apachepoi_FormulaEvalTestData.xls
apachepoi_FormulaRefs.xls
apachepoi_FormulaSheetRange.xls
apachepoi_HyperlinksOnManySheets.xls
apachepoi_IfFormulaTest.xls
apachepoi_ImRealFunctionTestCaseData.xls
apachepoi_ImaginaryFunctionTestCaseData.xls
apachepoi_IndexFunctionTestCaseData.xls
apachepoi_IndirectFunctionTestCaseData.xls
apachepoi_Intersection-52111.xls
apachepoi_IntersectionPtg.xls
apachepoi_IrrNpvTestCaseData.xls
# apachepoi_LookupFunctionsTestCaseData.xls # xlml
apachepoi_MRExtraLines.xls
apachepoi_MatchFunctionTestCaseData.xls
apachepoi_MatrixFormulaEvalTestData.xls
apachepoi_MissingBits.xls
apachepoi_NewStyleConditionalFormattings.xls
apachepoi_NoGutsRecords.xls
apachepoi_OddStyleRecord.xls
apachepoi_PercentPtg.xls
apachepoi_QuotientFunctionTestCaseData.xls
apachepoi_RangePtg.xls
apachepoi_ReadOnlyRecommended.xls
apachepoi_ReferencePtg.xls ## xlsb loop timeout
apachepoi_RepeatingRowsCols.xls
apachepoi_ReptFunctionTestCaseData.xls
apachepoi_RomanFunctionTestCaseData.xls
apachepoi_SampleSS.xls
apachepoi_SharedFormulaTest.xls ## xlsb loop timeout
apachepoi_SheetWithDrawing.xls
apachepoi_ShrinkToFit.xls
apachepoi_Simple.xls
apachepoi_SimpleChart.xls
apachepoi_SimpleMacro.xls
apachepoi_SimpleMultiCell.xls
apachepoi_SimpleScatterChart.xls
apachepoi_SimpleWithAutofilter.xls
apachepoi_SimpleWithChoose.xls
apachepoi_SimpleWithColours.xls
apachepoi_SimpleWithComments.xls
apachepoi_SimpleWithDataFormat.xls
apachepoi_SimpleWithFormula.xls
apachepoi_SimpleWithImages-mac.xls
apachepoi_SimpleWithImages.xls
apachepoi_SimpleWithPageBreaks.xls
apachepoi_SimpleWithPrintArea.xls
apachepoi_SimpleWithSkip.xls
apachepoi_SimpleWithStyling.xls
apachepoi_SingleLetterRanges.xls
apachepoi_SolverContainerAfterSPGR.xls
apachepoi_SquareMacro.xls
apachepoi_StringContinueRecords.xls
apachepoi_StringFormulas.xls
# apachepoi_SubtotalsNested.xls
apachepoi_TestRandBetween.xls
apachepoi_Themes2.xls
apachepoi_TwoSheetsNoneHidden.xls
apachepoi_TwoSheetsOneHidden.xls
# apachepoi_UncalcedRecord.xls # xlml
apachepoi_UnionPtg.xls
apachepoi_WORKBOOK_in_capitals.xls
# apachepoi_WeekNumFunctionTestCaseData.xls # xlml csv
# apachepoi_WeekNumFunctionTestCaseData2013.xls # xlml csv
apachepoi_WithChart.xls
apachepoi_WithCheckBoxes.xls
apachepoi_WithConditionalFormatting.xls
apachepoi_WithEmbeddedObjects.xls
apachepoi_WithExtendedStyles.xls
apachepoi_WithFormattedGraphTitle.xls
apachepoi_WithHyperlink.xls
apachepoi_WithThreeCharts.xls
apachepoi_WithTwoCharts.xls
apachepoi_WithTwoHyperLinks.xls
apachepoi_WrongFormulaRecordType.xls
apachepoi_XRefCalc.xls
apachepoi_XRefCalcData.xls
apachepoi_angelo.edu_content_files_19555-nsse-2011-multiyear-benchmark.xls
apachepoi_ar.org.apsme.www_Form Inscripcion Curso NO Socios.xls
apachepoi_at.gv.land-oberoesterreich.www_cps_rde_xbcr_SID-4A1B954F-5C07F98E_ooe_stat_download_bp10.xls
apachepoi_atp.xls
apachepoi_blankworkbook.xls
apachepoi_bug_42794.xls
apachepoi_colwidth.xls
apachepoi_com.aida-tour.www_SPO_files_maldives august october.xls
apachepoi_comments.xls
apachepoi_countblankExamples.xls
apachepoi_countifExamples.xls
apachepoi_dg-text.xls
apachepoi_drawings.xls
apachepoi_duprich1.xls
apachepoi_duprich2.xls
apachepoi_dvEmpty.xls
apachepoi_empty.xls
apachepoi_ex41187-19267.xls
apachepoi_ex42564-21435.xls
apachepoi_ex42564-21503.xls
apachepoi_ex42564-elementOrder.xls
apachepoi_ex42570-20305.xls
apachepoi_ex44921-21902.xls
# apachepoi_ex45046-21984.xls # xlml csv