zip_tricks 5.1.1 → 5.5.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.rubocop.yml +2 -0
- data/.travis.yml +0 -3
- data/CHANGELOG.md +36 -0
- data/README.md +26 -15
- data/lib/zip_tricks/block_write.rb +26 -21
- data/lib/zip_tricks/file_reader.rb +8 -6
- data/lib/zip_tricks/null_writer.rb +1 -1
- data/lib/zip_tricks/output_enumerator.rb +48 -27
- data/lib/zip_tricks/path_set.rb +4 -0
- data/lib/zip_tricks/rails_streaming.rb +6 -7
- data/lib/zip_tricks/size_estimator.rb +0 -3
- data/lib/zip_tricks/stream_crc32.rb +2 -2
- data/lib/zip_tricks/streamer.rb +47 -19
- data/lib/zip_tricks/streamer/deflated_writer.rb +9 -28
- data/lib/zip_tricks/streamer/entry.rb +5 -1
- data/lib/zip_tricks/streamer/stored_writer.rb +4 -3
- data/lib/zip_tricks/version.rb +1 -1
- data/lib/zip_tricks/write_and_tell.rb +2 -12
- data/lib/zip_tricks/write_buffer.rb +37 -17
- data/lib/zip_tricks/zip_writer.rb +3 -3
- data/zip_tricks.gemspec +1 -1
- metadata +3 -12
- data/qa/README_QA.md +0 -16
- data/qa/generate_test_files.rb +0 -126
- data/qa/in/VTYL8830.jpg +0 -0
- data/qa/in/war-and-peace.txt +0 -10810
- data/qa/support.rb +0 -88
- data/qa/test-report-2016-07-28.txt +0 -156
- data/qa/test-report-2016-12-12.txt +0 -156
- data/qa/test-report-2017-04-2.txt +0 -168
- data/qa/test-report.txt +0 -28
data/qa/support.rb
DELETED
@@ -1,88 +0,0 @@
|
|
1
|
-
# frozen_string_literal: true
|
2
|
-
|
3
|
-
require 'rubygems'
|
4
|
-
require 'bundler'
|
5
|
-
Bundler.setup
|
6
|
-
require_relative '../lib/zip_tricks'
|
7
|
-
require 'terminal-table'
|
8
|
-
|
9
|
-
$war_and_peace = File.open(__dir__ + '/in/war-and-peace.txt', 'rb', &:read).freeze
|
10
|
-
$war_and_peace_crc = Zlib.crc32($war_and_peace)
|
11
|
-
|
12
|
-
$image_file = File.open(__dir__ + '/in/VTYL8830.jpg', 'rb', &:read).freeze
|
13
|
-
$image_file_crc = Zlib.crc32($image_file)
|
14
|
-
|
15
|
-
# Rubocop: convention: Missing top-level class documentation comment.
|
16
|
-
BigEntry = Struct.new(:crc32, :size, :iterations) do
|
17
|
-
def write_to(io)
|
18
|
-
iterations.times { io << $war_and_peace }
|
19
|
-
end
|
20
|
-
end
|
21
|
-
|
22
|
-
def generate_big_entry(desired_minimum_size)
|
23
|
-
repeats = (desired_minimum_size.to_f / $war_and_peace.bytesize).ceil
|
24
|
-
crc_stream = ZipTricks::StreamCRC32.new
|
25
|
-
repeats.times { crc_stream << $war_and_peace }
|
26
|
-
entry_size = $war_and_peace.bytesize * repeats
|
27
|
-
raise 'Ooops' if entry_size < desired_minimum_size
|
28
|
-
BigEntry.new(crc_stream.to_i, entry_size, repeats)
|
29
|
-
end
|
30
|
-
|
31
|
-
TestDesc = Struct.new(:title, :filename)
|
32
|
-
|
33
|
-
$tests_performed = 0
|
34
|
-
$test_descs = []
|
35
|
-
$builder_threads = []
|
36
|
-
at_exit { $builder_threads.map(&:join) }
|
37
|
-
|
38
|
-
# Rubocop: convention: Assignment Branch Condition size for build_test is too high. [23.35/15]
|
39
|
-
def build_test(test_description)
|
40
|
-
$tests_performed += 1
|
41
|
-
|
42
|
-
test_file_base = test_description.downcase.delete('-').gsub(/[\s\:]+/, '_')
|
43
|
-
filename = '%<tests_performed>02d-%<test_file>s.zip' % {tests_number: $tests_performed, test_file: test_file_base}
|
44
|
-
|
45
|
-
puts 'Test %<tests_number>02d: %<description>s' % {tests_number: $tests_performed, description: test_description}
|
46
|
-
puts filename
|
47
|
-
puts ''
|
48
|
-
|
49
|
-
$test_descs << TestDesc.new(test_description, filename)
|
50
|
-
$builder_threads << Thread.new do
|
51
|
-
File.open(File.join(__dir__, filename + '.tmp'), 'wb') do |of|
|
52
|
-
ZipTricks::Streamer.open(of) do |zip|
|
53
|
-
yield(zip)
|
54
|
-
end
|
55
|
-
end
|
56
|
-
File.rename(File.join(__dir__, filename + '.tmp'), File.join(__dir__, filename))
|
57
|
-
end
|
58
|
-
end
|
59
|
-
|
60
|
-
# For quickly disabling them by prepending "x" (like RSpec)
|
61
|
-
def xbuild_test(*); end
|
62
|
-
|
63
|
-
# Prints a text file that you can then fill in
|
64
|
-
# Rubocop: convention: Assignment Branch Condition size for prepare_test_protocol
|
65
|
-
# is too high. [18.47/15]
|
66
|
-
def prepare_test_protocol
|
67
|
-
File.open(__dir__ + '/test-report.txt', 'wb') do |f|
|
68
|
-
platforms = [
|
69
|
-
'OSX 10.11 - Archive Utility (builtin)',
|
70
|
-
'OSX - The Unarchiver 3.10',
|
71
|
-
'Windows7 x64 - Builtin Explorer ZIP opener',
|
72
|
-
'Windows7 x64 - 7Zip 9.20'
|
73
|
-
]
|
74
|
-
platforms.each do |platform_name|
|
75
|
-
f.puts ''
|
76
|
-
table = Terminal::Table.new title: platform_name, headings: %w[Test Outcome]
|
77
|
-
$test_descs.each_with_index do |desc, i|
|
78
|
-
test_name = [desc.filename, '%<title>s' % {title: desc.title}].join("\n")
|
79
|
-
outcome = ' ' * 64
|
80
|
-
table << [test_name, outcome]
|
81
|
-
table << :separator if i < ($test_descs.length - 1)
|
82
|
-
end
|
83
|
-
f.puts table
|
84
|
-
end
|
85
|
-
end
|
86
|
-
end
|
87
|
-
|
88
|
-
at_exit { prepare_test_protocol }
|
@@ -1,156 +0,0 @@
|
|
1
|
-
|
2
|
-
+--------------------------------------------------------------------------------+------------------------------------------------------------------+
|
3
|
-
| OSX 10.11 - Archive Utility (builtin) |
|
4
|
-
+--------------------------------------------------------------------------------+------------------------------------------------------------------+
|
5
|
-
| Test | Outcome |
|
6
|
-
+--------------------------------------------------------------------------------+------------------------------------------------------------------+
|
7
|
-
| 01-two_small_stored_files.zip | Works |
|
8
|
-
| Two small stored files | |
|
9
|
-
+--------------------------------------------------------------------------------+------------------------------------------------------------------+
|
10
|
-
| 02-filename_with_diacritics.zip | Works |
|
11
|
-
| Filename with diacritics | |
|
12
|
-
+--------------------------------------------------------------------------------+------------------------------------------------------------------+
|
13
|
-
| 03-purely_utf8_filename.zip | Works |
|
14
|
-
| Purely UTF-8 filename | |
|
15
|
-
+--------------------------------------------------------------------------------+------------------------------------------------------------------+
|
16
|
-
| 04-two_entries_larger_than_the_overall_zip64_offset.zip | Works |
|
17
|
-
| Two entries larger than the overall Zip64 offset | |
|
18
|
-
+--------------------------------------------------------------------------------+------------------------------------------------------------------+
|
19
|
-
| 05-one_entry_that_requires_zip64_and_a_tiny_entry_following_it.zip | No |
|
20
|
-
| One entry that requires Zip64 and a tiny entry following it | |
|
21
|
-
+--------------------------------------------------------------------------------+------------------------------------------------------------------+
|
22
|
-
| 06-one_tiny_entry_followed_by_second_that_requires_zip64.zip | No |
|
23
|
-
| One tiny entry followed by second that requires Zip64 | |
|
24
|
-
+--------------------------------------------------------------------------------+------------------------------------------------------------------+
|
25
|
-
| 07-two_entries_both_requiring_zip64.zip | No |
|
26
|
-
| Two entries both requiring Zip64 | |
|
27
|
-
+--------------------------------------------------------------------------------+------------------------------------------------------------------+
|
28
|
-
| 08-two_stored_entries_using_data_descriptors.zip | Works |
|
29
|
-
| Two stored entries using data descriptors | |
|
30
|
-
+--------------------------------------------------------------------------------+------------------------------------------------------------------+
|
31
|
-
| 09-one_entry_deflated_using_data_descriptors.zip | Works |
|
32
|
-
| One entry deflated using data descriptors | |
|
33
|
-
+--------------------------------------------------------------------------------+------------------------------------------------------------------+
|
34
|
-
| 10-two_entries_larger_than_the_overall_zip64_offset_using_data_descriptors.zip | No |
|
35
|
-
| Two entries larger than the overall Zip64 offset using data descriptors | |
|
36
|
-
+--------------------------------------------------------------------------------+------------------------------------------------------------------+
|
37
|
-
| 11-one_stored_entry_larger_than_zip64_threshold_using_data_descriptors.zip | No |
|
38
|
-
| One stored entry larger than Zip64 threshold using data descriptors | |
|
39
|
-
+--------------------------------------------------------------------------------+------------------------------------------------------------------+
|
40
|
-
|
41
|
-
+--------------------------------------------------------------------------------+------------------------------------------------------------------+
|
42
|
-
| OSX - The Unarchiver 3.10 |
|
43
|
-
+--------------------------------------------------------------------------------+------------------------------------------------------------------+
|
44
|
-
| Test | Outcome |
|
45
|
-
+--------------------------------------------------------------------------------+------------------------------------------------------------------+
|
46
|
-
| 01-two_small_stored_files.zip | Works |
|
47
|
-
| Two small stored files | |
|
48
|
-
+--------------------------------------------------------------------------------+------------------------------------------------------------------+
|
49
|
-
| 02-filename_with_diacritics.zip | Works |
|
50
|
-
| Filename with diacritics | |
|
51
|
-
+--------------------------------------------------------------------------------+------------------------------------------------------------------+
|
52
|
-
| 03-purely_utf8_filename.zip | Works |
|
53
|
-
| Purely UTF-8 filename | |
|
54
|
-
+--------------------------------------------------------------------------------+------------------------------------------------------------------+
|
55
|
-
| 04-two_entries_larger_than_the_overall_zip64_offset.zip | Works |
|
56
|
-
| Two entries larger than the overall Zip64 offset | |
|
57
|
-
+--------------------------------------------------------------------------------+------------------------------------------------------------------+
|
58
|
-
| 05-one_entry_that_requires_zip64_and_a_tiny_entry_following_it.zip | Works |
|
59
|
-
| One entry that requires Zip64 and a tiny entry following it | |
|
60
|
-
+--------------------------------------------------------------------------------+------------------------------------------------------------------+
|
61
|
-
| 06-one_tiny_entry_followed_by_second_that_requires_zip64.zip | Works |
|
62
|
-
| One tiny entry followed by second that requires Zip64 | |
|
63
|
-
+--------------------------------------------------------------------------------+------------------------------------------------------------------+
|
64
|
-
| 07-two_entries_both_requiring_zip64.zip | Works |
|
65
|
-
| Two entries both requiring Zip64 | |
|
66
|
-
+--------------------------------------------------------------------------------+------------------------------------------------------------------+
|
67
|
-
| 08-two_stored_entries_using_data_descriptors.zip | Works |
|
68
|
-
| Two stored entries using data descriptors | |
|
69
|
-
+--------------------------------------------------------------------------------+------------------------------------------------------------------+
|
70
|
-
| 09-one_entry_deflated_using_data_descriptors.zip | Works |
|
71
|
-
| One entry deflated using data descriptors | |
|
72
|
-
+--------------------------------------------------------------------------------+------------------------------------------------------------------+
|
73
|
-
| 10-two_entries_larger_than_the_overall_zip64_offset_using_data_descriptors.zip | Works |
|
74
|
-
| Two entries larger than the overall Zip64 offset using data descriptors | |
|
75
|
-
+--------------------------------------------------------------------------------+------------------------------------------------------------------+
|
76
|
-
| 11-one_stored_entry_larger_than_zip64_threshold_using_data_descriptors.zip | Works |
|
77
|
-
| One stored entry larger than Zip64 threshold using data descriptors | |
|
78
|
-
+--------------------------------------------------------------------------------+------------------------------------------------------------------+
|
79
|
-
|
80
|
-
+--------------------------------------------------------------------------------+------------------------------------------------------------------+
|
81
|
-
| Windows7 x64 - Builtin Explorer ZIP opener |
|
82
|
-
+--------------------------------------------------------------------------------+------------------------------------------------------------------+
|
83
|
-
| Test | Outcome |
|
84
|
-
+--------------------------------------------------------------------------------+------------------------------------------------------------------+
|
85
|
-
| 01-two_small_stored_files.zip | Opens and extracts correctly |
|
86
|
-
| Two small stored files | |
|
87
|
-
+--------------------------------------------------------------------------------+------------------------------------------------------------------+
|
88
|
-
| 02-filename_with_diacritics.zip | Extracts, but filename is partially garbled |
|
89
|
-
| Filename with diacritics | |
|
90
|
-
+--------------------------------------------------------------------------------+------------------------------------------------------------------+
|
91
|
-
| 03-purely_utf8_filename.zip | Extracts, but filename is completely garbled |
|
92
|
-
| Purely UTF-8 filename | |
|
93
|
-
+--------------------------------------------------------------------------------+------------------------------------------------------------------+
|
94
|
-
| 04-two_entries_larger_than_the_overall_zip64_offset.zip | Works |
|
95
|
-
| Two entries larger than the overall Zip64 offset | |
|
96
|
-
+--------------------------------------------------------------------------------+------------------------------------------------------------------+
|
97
|
-
| 05-one_entry_that_requires_zip64_and_a_tiny_entry_following_it.zip | Works |
|
98
|
-
| One entry that requires Zip64 and a tiny entry following it | |
|
99
|
-
+--------------------------------------------------------------------------------+------------------------------------------------------------------+
|
100
|
-
| 06-one_tiny_entry_followed_by_second_that_requires_zip64.zip | Works |
|
101
|
-
| One tiny entry followed by second that requires Zip64 | |
|
102
|
-
+--------------------------------------------------------------------------------+------------------------------------------------------------------+
|
103
|
-
| 07-two_entries_both_requiring_zip64.zip | Works |
|
104
|
-
| Two entries both requiring Zip64 | |
|
105
|
-
+--------------------------------------------------------------------------------+------------------------------------------------------------------+
|
106
|
-
| 08-two_stored_entries_using_data_descriptors.zip | Works |
|
107
|
-
| Two stored entries using data descriptors | |
|
108
|
-
+--------------------------------------------------------------------------------+------------------------------------------------------------------+
|
109
|
-
| 09-one_entry_deflated_using_data_descriptors.zip | Works |
|
110
|
-
| One entry deflated using data descriptors | |
|
111
|
-
+--------------------------------------------------------------------------------+------------------------------------------------------------------+
|
112
|
-
| 10-two_entries_larger_than_the_overall_zip64_offset_using_data_descriptors.zip | Works |
|
113
|
-
| Two entries larger than the overall Zip64 offset using data descriptors | |
|
114
|
-
+--------------------------------------------------------------------------------+------------------------------------------------------------------+
|
115
|
-
| 11-one_stored_entry_larger_than_zip64_threshold_using_data_descriptors.zip | Works |
|
116
|
-
| One stored entry larger than Zip64 threshold using data descriptors | |
|
117
|
-
+--------------------------------------------------------------------------------+------------------------------------------------------------------+
|
118
|
-
|
119
|
-
+--------------------------------------------------------------------------------+------------------------------------------------------------------+
|
120
|
-
| Windows7 x64 - 7Zip 9.20 |
|
121
|
-
+--------------------------------------------------------------------------------+------------------------------------------------------------------+
|
122
|
-
| Test | Outcome |
|
123
|
-
+--------------------------------------------------------------------------------+------------------------------------------------------------------+
|
124
|
-
| 01-two_small_stored_files.zip | Works |
|
125
|
-
| Two small stored files | |
|
126
|
-
+--------------------------------------------------------------------------------+------------------------------------------------------------------+
|
127
|
-
| 02-filename_with_diacritics.zip | Works, filename correct |
|
128
|
-
| Filename with diacritics | |
|
129
|
-
+--------------------------------------------------------------------------------+------------------------------------------------------------------+
|
130
|
-
| 03-purely_utf8_filename.zip | Works, filename correct |
|
131
|
-
| Purely UTF-8 filename | |
|
132
|
-
+--------------------------------------------------------------------------------+------------------------------------------------------------------+
|
133
|
-
| 04-two_entries_larger_than_the_overall_zip64_offset.zip | Works |
|
134
|
-
| Two entries larger than the overall Zip64 offset | |
|
135
|
-
+--------------------------------------------------------------------------------+------------------------------------------------------------------+
|
136
|
-
| 05-one_entry_that_requires_zip64_and_a_tiny_entry_following_it.zip | Works |
|
137
|
-
| One entry that requires Zip64 and a tiny entry following it | |
|
138
|
-
+--------------------------------------------------------------------------------+------------------------------------------------------------------+
|
139
|
-
| 06-one_tiny_entry_followed_by_second_that_requires_zip64.zip | Works |
|
140
|
-
| One tiny entry followed by second that requires Zip64 | |
|
141
|
-
+--------------------------------------------------------------------------------+------------------------------------------------------------------+
|
142
|
-
| 07-two_entries_both_requiring_zip64.zip | Works |
|
143
|
-
| Two entries both requiring Zip64 | |
|
144
|
-
+--------------------------------------------------------------------------------+------------------------------------------------------------------+
|
145
|
-
| 08-two_stored_entries_using_data_descriptors.zip | Works |
|
146
|
-
| Two stored entries using data descriptors | |
|
147
|
-
+--------------------------------------------------------------------------------+------------------------------------------------------------------+
|
148
|
-
| 09-one_entry_deflated_using_data_descriptors.zip | Works |
|
149
|
-
| One entry deflated using data descriptors | |
|
150
|
-
+--------------------------------------------------------------------------------+------------------------------------------------------------------+
|
151
|
-
| 10-two_entries_larger_than_the_overall_zip64_offset_using_data_descriptors.zip | Works |
|
152
|
-
| Two entries larger than the overall Zip64 offset using data descriptors | |
|
153
|
-
+--------------------------------------------------------------------------------+------------------------------------------------------------------+
|
154
|
-
| 11-one_stored_entry_larger_than_zip64_threshold_using_data_descriptors.zip | Works |
|
155
|
-
| One stored entry larger than Zip64 threshold using data descriptors | |
|
156
|
-
+--------------------------------------------------------------------------------+------------------------------------------------------------------+
|
@@ -1,156 +0,0 @@
|
|
1
|
-
|
2
|
-
+--------------------------------------------------------------------------------+------------------------------------------------------------------+
|
3
|
-
| OSX 10.11 - Archive Utility (builtin) |
|
4
|
-
+--------------------------------------------------------------------------------+------------------------------------------------------------------+
|
5
|
-
| Test | Outcome |
|
6
|
-
+--------------------------------------------------------------------------------+------------------------------------------------------------------+
|
7
|
-
| 01-two_small_stored_files.zip | Works |
|
8
|
-
| Two small stored files | |
|
9
|
-
+--------------------------------------------------------------------------------+------------------------------------------------------------------+
|
10
|
-
| 02-filename_with_diacritics.zip | Works |
|
11
|
-
| Filename with diacritics | |
|
12
|
-
+--------------------------------------------------------------------------------+------------------------------------------------------------------+
|
13
|
-
| 03-purely_utf8_filename.zip | Works |
|
14
|
-
| Purely UTF-8 filename | |
|
15
|
-
+--------------------------------------------------------------------------------+------------------------------------------------------------------+
|
16
|
-
| 04-two_entries_larger_than_the_overall_zip64_offset.zip | Works |
|
17
|
-
| Two entries larger than the overall Zip64 offset | |
|
18
|
-
+--------------------------------------------------------------------------------+------------------------------------------------------------------+
|
19
|
-
| 05-one_entry_that_requires_zip64_and_a_tiny_entry_following_it.zip | No |
|
20
|
-
| One entry that requires Zip64 and a tiny entry following it | |
|
21
|
-
+--------------------------------------------------------------------------------+------------------------------------------------------------------+
|
22
|
-
| 06-one_tiny_entry_followed_by_second_that_requires_zip64.zip | No |
|
23
|
-
| One tiny entry followed by second that requires Zip64 | |
|
24
|
-
+--------------------------------------------------------------------------------+------------------------------------------------------------------+
|
25
|
-
| 07-two_entries_both_requiring_zip64.zip | No |
|
26
|
-
| Two entries both requiring Zip64 | |
|
27
|
-
+--------------------------------------------------------------------------------+------------------------------------------------------------------+
|
28
|
-
| 08-two_stored_entries_using_data_descriptors.zip | Works |
|
29
|
-
| Two stored entries using data descriptors | |
|
30
|
-
+--------------------------------------------------------------------------------+------------------------------------------------------------------+
|
31
|
-
| 09-one_entry_deflated_using_data_descriptors.zip | Works |
|
32
|
-
| One entry deflated using data descriptors | |
|
33
|
-
+--------------------------------------------------------------------------------+------------------------------------------------------------------+
|
34
|
-
| 10-two_entries_larger_than_the_overall_zip64_offset_using_data_descriptors.zip | No |
|
35
|
-
| Two entries larger than the overall Zip64 offset using data descriptors | |
|
36
|
-
+--------------------------------------------------------------------------------+------------------------------------------------------------------+
|
37
|
-
| 11-one_stored_entry_larger_than_zip64_threshold_using_data_descriptors.zip | No |
|
38
|
-
| One stored entry larger than Zip64 threshold using data descriptors | |
|
39
|
-
+--------------------------------------------------------------------------------+------------------------------------------------------------------+
|
40
|
-
|
41
|
-
+--------------------------------------------------------------------------------+------------------------------------------------------------------+
|
42
|
-
| OSX - The Unarchiver 3.10 |
|
43
|
-
+--------------------------------------------------------------------------------+------------------------------------------------------------------+
|
44
|
-
| Test | Outcome |
|
45
|
-
+--------------------------------------------------------------------------------+------------------------------------------------------------------+
|
46
|
-
| 01-two_small_stored_files.zip | Works |
|
47
|
-
| Two small stored files | |
|
48
|
-
+--------------------------------------------------------------------------------+------------------------------------------------------------------+
|
49
|
-
| 02-filename_with_diacritics.zip | Works |
|
50
|
-
| Filename with diacritics | |
|
51
|
-
+--------------------------------------------------------------------------------+------------------------------------------------------------------+
|
52
|
-
| 03-purely_utf8_filename.zip | Works |
|
53
|
-
| Purely UTF-8 filename | |
|
54
|
-
+--------------------------------------------------------------------------------+------------------------------------------------------------------+
|
55
|
-
| 04-two_entries_larger_than_the_overall_zip64_offset.zip | Works |
|
56
|
-
| Two entries larger than the overall Zip64 offset | |
|
57
|
-
+--------------------------------------------------------------------------------+------------------------------------------------------------------+
|
58
|
-
| 05-one_entry_that_requires_zip64_and_a_tiny_entry_following_it.zip | Works |
|
59
|
-
| One entry that requires Zip64 and a tiny entry following it | |
|
60
|
-
+--------------------------------------------------------------------------------+------------------------------------------------------------------+
|
61
|
-
| 06-one_tiny_entry_followed_by_second_that_requires_zip64.zip | Works |
|
62
|
-
| One tiny entry followed by second that requires Zip64 | |
|
63
|
-
+--------------------------------------------------------------------------------+------------------------------------------------------------------+
|
64
|
-
| 07-two_entries_both_requiring_zip64.zip | Works |
|
65
|
-
| Two entries both requiring Zip64 | |
|
66
|
-
+--------------------------------------------------------------------------------+------------------------------------------------------------------+
|
67
|
-
| 08-two_stored_entries_using_data_descriptors.zip | Works |
|
68
|
-
| Two stored entries using data descriptors | |
|
69
|
-
+--------------------------------------------------------------------------------+------------------------------------------------------------------+
|
70
|
-
| 09-one_entry_deflated_using_data_descriptors.zip | Works |
|
71
|
-
| One entry deflated using data descriptors | |
|
72
|
-
+--------------------------------------------------------------------------------+------------------------------------------------------------------+
|
73
|
-
| 10-two_entries_larger_than_the_overall_zip64_offset_using_data_descriptors.zip | Works |
|
74
|
-
| Two entries larger than the overall Zip64 offset using data descriptors | |
|
75
|
-
+--------------------------------------------------------------------------------+------------------------------------------------------------------+
|
76
|
-
| 11-one_stored_entry_larger_than_zip64_threshold_using_data_descriptors.zip | Works |
|
77
|
-
| One stored entry larger than Zip64 threshold using data descriptors | |
|
78
|
-
+--------------------------------------------------------------------------------+------------------------------------------------------------------+
|
79
|
-
|
80
|
-
+--------------------------------------------------------------------------------+------------------------------------------------------------------+
|
81
|
-
| Windows7 x64 - Builtin Explorer ZIP opener |
|
82
|
-
+--------------------------------------------------------------------------------+------------------------------------------------------------------+
|
83
|
-
| Test | Outcome |
|
84
|
-
+--------------------------------------------------------------------------------+------------------------------------------------------------------+
|
85
|
-
| 01-two_small_stored_files.zip | Opens and extracts correctly |
|
86
|
-
| Two small stored files | |
|
87
|
-
+--------------------------------------------------------------------------------+------------------------------------------------------------------+
|
88
|
-
| 02-filename_with_diacritics.zip | Extracts, but filename is partially garbled |
|
89
|
-
| Filename with diacritics | |
|
90
|
-
+--------------------------------------------------------------------------------+------------------------------------------------------------------+
|
91
|
-
| 03-purely_utf8_filename.zip | Extracts, but filename is completely garbled |
|
92
|
-
| Purely UTF-8 filename | |
|
93
|
-
+--------------------------------------------------------------------------------+------------------------------------------------------------------+
|
94
|
-
| 04-two_entries_larger_than_the_overall_zip64_offset.zip | Works |
|
95
|
-
| Two entries larger than the overall Zip64 offset | |
|
96
|
-
+--------------------------------------------------------------------------------+------------------------------------------------------------------+
|
97
|
-
| 05-one_entry_that_requires_zip64_and_a_tiny_entry_following_it.zip | Works |
|
98
|
-
| One entry that requires Zip64 and a tiny entry following it | |
|
99
|
-
+--------------------------------------------------------------------------------+------------------------------------------------------------------+
|
100
|
-
| 06-one_tiny_entry_followed_by_second_that_requires_zip64.zip | Works |
|
101
|
-
| One tiny entry followed by second that requires Zip64 | |
|
102
|
-
+--------------------------------------------------------------------------------+------------------------------------------------------------------+
|
103
|
-
| 07-two_entries_both_requiring_zip64.zip | Works |
|
104
|
-
| Two entries both requiring Zip64 | |
|
105
|
-
+--------------------------------------------------------------------------------+------------------------------------------------------------------+
|
106
|
-
| 08-two_stored_entries_using_data_descriptors.zip | Works |
|
107
|
-
| Two stored entries using data descriptors | |
|
108
|
-
+--------------------------------------------------------------------------------+------------------------------------------------------------------+
|
109
|
-
| 09-one_entry_deflated_using_data_descriptors.zip | Works |
|
110
|
-
| One entry deflated using data descriptors | |
|
111
|
-
+--------------------------------------------------------------------------------+------------------------------------------------------------------+
|
112
|
-
| 10-two_entries_larger_than_the_overall_zip64_offset_using_data_descriptors.zip | Works |
|
113
|
-
| Two entries larger than the overall Zip64 offset using data descriptors | |
|
114
|
-
+--------------------------------------------------------------------------------+------------------------------------------------------------------+
|
115
|
-
| 11-one_stored_entry_larger_than_zip64_threshold_using_data_descriptors.zip | Works |
|
116
|
-
| One stored entry larger than Zip64 threshold using data descriptors | |
|
117
|
-
+--------------------------------------------------------------------------------+------------------------------------------------------------------+
|
118
|
-
|
119
|
-
+--------------------------------------------------------------------------------+------------------------------------------------------------------+
|
120
|
-
| Windows7 x64 - 7Zip 9.20 |
|
121
|
-
+--------------------------------------------------------------------------------+------------------------------------------------------------------+
|
122
|
-
| Test | Outcome |
|
123
|
-
+--------------------------------------------------------------------------------+------------------------------------------------------------------+
|
124
|
-
| 01-two_small_stored_files.zip | Works |
|
125
|
-
| Two small stored files | |
|
126
|
-
+--------------------------------------------------------------------------------+------------------------------------------------------------------+
|
127
|
-
| 02-filename_with_diacritics.zip | Works, filename correct |
|
128
|
-
| Filename with diacritics | |
|
129
|
-
+--------------------------------------------------------------------------------+------------------------------------------------------------------+
|
130
|
-
| 03-purely_utf8_filename.zip | Works, filename correct |
|
131
|
-
| Purely UTF-8 filename | |
|
132
|
-
+--------------------------------------------------------------------------------+------------------------------------------------------------------+
|
133
|
-
| 04-two_entries_larger_than_the_overall_zip64_offset.zip | Works |
|
134
|
-
| Two entries larger than the overall Zip64 offset | |
|
135
|
-
+--------------------------------------------------------------------------------+------------------------------------------------------------------+
|
136
|
-
| 05-one_entry_that_requires_zip64_and_a_tiny_entry_following_it.zip | Works |
|
137
|
-
| One entry that requires Zip64 and a tiny entry following it | |
|
138
|
-
+--------------------------------------------------------------------------------+------------------------------------------------------------------+
|
139
|
-
| 06-one_tiny_entry_followed_by_second_that_requires_zip64.zip | Works |
|
140
|
-
| One tiny entry followed by second that requires Zip64 | |
|
141
|
-
+--------------------------------------------------------------------------------+------------------------------------------------------------------+
|
142
|
-
| 07-two_entries_both_requiring_zip64.zip | Works |
|
143
|
-
| Two entries both requiring Zip64 | |
|
144
|
-
+--------------------------------------------------------------------------------+------------------------------------------------------------------+
|
145
|
-
| 08-two_stored_entries_using_data_descriptors.zip | Works |
|
146
|
-
| Two stored entries using data descriptors | |
|
147
|
-
+--------------------------------------------------------------------------------+------------------------------------------------------------------+
|
148
|
-
| 09-one_entry_deflated_using_data_descriptors.zip | Works |
|
149
|
-
| One entry deflated using data descriptors | |
|
150
|
-
+--------------------------------------------------------------------------------+------------------------------------------------------------------+
|
151
|
-
| 10-two_entries_larger_than_the_overall_zip64_offset_using_data_descriptors.zip | Works |
|
152
|
-
| Two entries larger than the overall Zip64 offset using data descriptors | |
|
153
|
-
+--------------------------------------------------------------------------------+------------------------------------------------------------------+
|
154
|
-
| 11-one_stored_entry_larger_than_zip64_threshold_using_data_descriptors.zip | Works |
|
155
|
-
| One stored entry larger than Zip64 threshold using data descriptors | |
|
156
|
-
+--------------------------------------------------------------------------------+------------------------------------------------------------------+
|
@@ -1,168 +0,0 @@
|
|
1
|
-
|
2
|
-
+--------------------------------------------------------------------------------+------------------------------------------------------------------+
|
3
|
-
| OSX 10.11 - Archive Utility (builtin) |
|
4
|
-
+--------------------------------------------------------------------------------+------------------------------------------------------------------+
|
5
|
-
| Test | Outcome |
|
6
|
-
+--------------------------------------------------------------------------------+------------------------------------------------------------------+
|
7
|
-
| 01-two_small_stored_files.zip | Works |
|
8
|
-
| Two small stored files | |
|
9
|
-
+--------------------------------------------------------------------------------+------------------------------------------------------------------+
|
10
|
-
| 02-two_small_stored_files_and_an_empty_directory.zip | Works |
|
11
|
-
| Two small stored files and an empty directory | |
|
12
|
-
+--------------------------------------------------------------------------------+------------------------------------------------------------------+
|
13
|
-
| 03-filename_with_diacritics.zip | Works |
|
14
|
-
| Filename with diacritics | |
|
15
|
-
+--------------------------------------------------------------------------------+------------------------------------------------------------------+
|
16
|
-
| 04-purely_utf8_filename.zip | Works |
|
17
|
-
| Purely UTF-8 filename | |
|
18
|
-
+--------------------------------------------------------------------------------+------------------------------------------------------------------+
|
19
|
-
| 05-two_entries_larger_than_the_overall_zip64_offset.zip | Pending |
|
20
|
-
| Two entries larger than the overall Zip64 offset | |
|
21
|
-
+--------------------------------------------------------------------------------+------------------------------------------------------------------+
|
22
|
-
| 06-one_entry_that_requires_zip64_and_a_tiny_entry_following_it.zip | Pending |
|
23
|
-
| One entry that requires Zip64 and a tiny entry following it | |
|
24
|
-
+--------------------------------------------------------------------------------+------------------------------------------------------------------+
|
25
|
-
| 07-one_tiny_entry_followed_by_second_that_requires_zip64.zip | Pending |
|
26
|
-
| One tiny entry followed by second that requires Zip64 | |
|
27
|
-
+--------------------------------------------------------------------------------+------------------------------------------------------------------+
|
28
|
-
| 08-two_entries_both_requiring_zip64.zip | Pending |
|
29
|
-
| Two entries both requiring Zip64 | |
|
30
|
-
+--------------------------------------------------------------------------------+------------------------------------------------------------------+
|
31
|
-
| 09-two_stored_entries_using_data_descriptors.zip | Works |
|
32
|
-
| Two stored entries using data descriptors | |
|
33
|
-
+--------------------------------------------------------------------------------+------------------------------------------------------------------+
|
34
|
-
| 10-one_entry_deflated_using_data_descriptors.zip | Works |
|
35
|
-
| One entry deflated using data descriptors | |
|
36
|
-
+--------------------------------------------------------------------------------+------------------------------------------------------------------+
|
37
|
-
| 11-two_entries_larger_than_the_overall_zip64_offset_using_data_descriptors.zip | Pending |
|
38
|
-
| Two entries larger than the overall Zip64 offset using data descriptors | |
|
39
|
-
+--------------------------------------------------------------------------------+------------------------------------------------------------------+
|
40
|
-
| 12-one_stored_entry_larger_than_zip64_threshold_using_data_descriptors.zip | Pending |
|
41
|
-
| One stored entry larger than Zip64 threshold using data descriptors | |
|
42
|
-
+--------------------------------------------------------------------------------+------------------------------------------------------------------+
|
43
|
-
|
44
|
-
+--------------------------------------------------------------------------------+------------------------------------------------------------------+
|
45
|
-
| OSX - The Unarchiver 3.10 |
|
46
|
-
+--------------------------------------------------------------------------------+------------------------------------------------------------------+
|
47
|
-
| Test | Outcome |
|
48
|
-
+--------------------------------------------------------------------------------+------------------------------------------------------------------+
|
49
|
-
| 01-two_small_stored_files.zip | Works |
|
50
|
-
| Two small stored files | |
|
51
|
-
+--------------------------------------------------------------------------------+------------------------------------------------------------------+
|
52
|
-
| 02-two_small_stored_files_and_an_empty_directory.zip | Works |
|
53
|
-
| Two small stored files and an empty directory | |
|
54
|
-
+--------------------------------------------------------------------------------+------------------------------------------------------------------+
|
55
|
-
| 03-filename_with_diacritics.zip | Works |
|
56
|
-
| Filename with diacritics | |
|
57
|
-
+--------------------------------------------------------------------------------+------------------------------------------------------------------+
|
58
|
-
| 04-purely_utf8_filename.zip | Works |
|
59
|
-
| Purely UTF-8 filename | |
|
60
|
-
+--------------------------------------------------------------------------------+------------------------------------------------------------------+
|
61
|
-
| 05-two_entries_larger_than_the_overall_zip64_offset.zip | Pending |
|
62
|
-
| Two entries larger than the overall Zip64 offset | |
|
63
|
-
+--------------------------------------------------------------------------------+------------------------------------------------------------------+
|
64
|
-
| 06-one_entry_that_requires_zip64_and_a_tiny_entry_following_it.zip | Pending |
|
65
|
-
| One entry that requires Zip64 and a tiny entry following it | |
|
66
|
-
+--------------------------------------------------------------------------------+------------------------------------------------------------------+
|
67
|
-
| 07-one_tiny_entry_followed_by_second_that_requires_zip64.zip | Pending |
|
68
|
-
| One tiny entry followed by second that requires Zip64 | |
|
69
|
-
+--------------------------------------------------------------------------------+------------------------------------------------------------------+
|
70
|
-
| 08-two_entries_both_requiring_zip64.zip | Pending |
|
71
|
-
| Two entries both requiring Zip64 | |
|
72
|
-
+--------------------------------------------------------------------------------+------------------------------------------------------------------+
|
73
|
-
| 09-two_stored_entries_using_data_descriptors.zip | Works |
|
74
|
-
| Two stored entries using data descriptors | |
|
75
|
-
+--------------------------------------------------------------------------------+------------------------------------------------------------------+
|
76
|
-
| 10-one_entry_deflated_using_data_descriptors.zip | Works |
|
77
|
-
| One entry deflated using data descriptors | |
|
78
|
-
+--------------------------------------------------------------------------------+------------------------------------------------------------------+
|
79
|
-
| 11-two_entries_larger_than_the_overall_zip64_offset_using_data_descriptors.zip | Pending |
|
80
|
-
| Two entries larger than the overall Zip64 offset using data descriptors | |
|
81
|
-
+--------------------------------------------------------------------------------+------------------------------------------------------------------+
|
82
|
-
| 12-one_stored_entry_larger_than_zip64_threshold_using_data_descriptors.zip | Pending |
|
83
|
-
| One stored entry larger than Zip64 threshold using data descriptors | |
|
84
|
-
+--------------------------------------------------------------------------------+------------------------------------------------------------------+
|
85
|
-
|
86
|
-
+--------------------------------------------------------------------------------+------------------------------------------------------------------+
|
87
|
-
| Windows7 x64 - Builtin Explorer ZIP opener |
|
88
|
-
+--------------------------------------------------------------------------------+------------------------------------------------------------------+
|
89
|
-
| Test | Outcome |
|
90
|
-
+--------------------------------------------------------------------------------+------------------------------------------------------------------+
|
91
|
-
| 01-two_small_stored_files.zip | Pending |
|
92
|
-
| Two small stored files | |
|
93
|
-
+--------------------------------------------------------------------------------+------------------------------------------------------------------+
|
94
|
-
| 02-two_small_stored_files_and_an_empty_directory.zip | Works |
|
95
|
-
| Two small stored files and an empty directory | |
|
96
|
-
+--------------------------------------------------------------------------------+------------------------------------------------------------------+
|
97
|
-
| 03-filename_with_diacritics.zip | Pending |
|
98
|
-
| Filename with diacritics | |
|
99
|
-
+--------------------------------------------------------------------------------+------------------------------------------------------------------+
|
100
|
-
| 04-purely_utf8_filename.zip | Pending |
|
101
|
-
| Purely UTF-8 filename | |
|
102
|
-
+--------------------------------------------------------------------------------+------------------------------------------------------------------+
|
103
|
-
| 05-two_entries_larger_than_the_overall_zip64_offset.zip | Pending |
|
104
|
-
| Two entries larger than the overall Zip64 offset | |
|
105
|
-
+--------------------------------------------------------------------------------+------------------------------------------------------------------+
|
106
|
-
| 06-one_entry_that_requires_zip64_and_a_tiny_entry_following_it.zip | Pending |
|
107
|
-
| One entry that requires Zip64 and a tiny entry following it | |
|
108
|
-
+--------------------------------------------------------------------------------+------------------------------------------------------------------+
|
109
|
-
| 07-one_tiny_entry_followed_by_second_that_requires_zip64.zip | Pending |
|
110
|
-
| One tiny entry followed by second that requires Zip64 | |
|
111
|
-
+--------------------------------------------------------------------------------+------------------------------------------------------------------+
|
112
|
-
| 08-two_entries_both_requiring_zip64.zip | Pending |
|
113
|
-
| Two entries both requiring Zip64 | |
|
114
|
-
+--------------------------------------------------------------------------------+------------------------------------------------------------------+
|
115
|
-
| 09-two_stored_entries_using_data_descriptors.zip | Pending |
|
116
|
-
| Two stored entries using data descriptors | |
|
117
|
-
+--------------------------------------------------------------------------------+------------------------------------------------------------------+
|
118
|
-
| 10-one_entry_deflated_using_data_descriptors.zip | Pending |
|
119
|
-
| One entry deflated using data descriptors | |
|
120
|
-
+--------------------------------------------------------------------------------+------------------------------------------------------------------+
|
121
|
-
| 11-two_entries_larger_than_the_overall_zip64_offset_using_data_descriptors.zip | Pending |
|
122
|
-
| Two entries larger than the overall Zip64 offset using data descriptors | |
|
123
|
-
+--------------------------------------------------------------------------------+------------------------------------------------------------------+
|
124
|
-
| 12-one_stored_entry_larger_than_zip64_threshold_using_data_descriptors.zip | Pending |
|
125
|
-
| One stored entry larger than Zip64 threshold using data descriptors | |
|
126
|
-
+--------------------------------------------------------------------------------+------------------------------------------------------------------+
|
127
|
-
|
128
|
-
+--------------------------------------------------------------------------------+------------------------------------------------------------------+
|
129
|
-
| Windows7 x64 - 7Zip 9.20 |
|
130
|
-
+--------------------------------------------------------------------------------+------------------------------------------------------------------+
|
131
|
-
| Test | Outcome |
|
132
|
-
+--------------------------------------------------------------------------------+------------------------------------------------------------------+
|
133
|
-
| 01-two_small_stored_files.zip | Pending |
|
134
|
-
| Two small stored files | |
|
135
|
-
+--------------------------------------------------------------------------------+------------------------------------------------------------------+
|
136
|
-
| 02-two_small_stored_files_and_an_empty_directory.zip | Works |
|
137
|
-
| Two small stored files and an empty directory | |
|
138
|
-
+--------------------------------------------------------------------------------+------------------------------------------------------------------+
|
139
|
-
| 03-filename_with_diacritics.zip | Pending |
|
140
|
-
| Filename with diacritics | |
|
141
|
-
+--------------------------------------------------------------------------------+------------------------------------------------------------------+
|
142
|
-
| 04-purely_utf8_filename.zip | Pending |
|
143
|
-
| Purely UTF-8 filename | |
|
144
|
-
+--------------------------------------------------------------------------------+------------------------------------------------------------------+
|
145
|
-
| 05-two_entries_larger_than_the_overall_zip64_offset.zip | Pending |
|
146
|
-
| Two entries larger than the overall Zip64 offset | |
|
147
|
-
+--------------------------------------------------------------------------------+------------------------------------------------------------------+
|
148
|
-
| 06-one_entry_that_requires_zip64_and_a_tiny_entry_following_it.zip | Pending |
|
149
|
-
| One entry that requires Zip64 and a tiny entry following it | |
|
150
|
-
+--------------------------------------------------------------------------------+------------------------------------------------------------------+
|
151
|
-
| 07-one_tiny_entry_followed_by_second_that_requires_zip64.zip | Pending |
|
152
|
-
| One tiny entry followed by second that requires Zip64 | |
|
153
|
-
+--------------------------------------------------------------------------------+------------------------------------------------------------------+
|
154
|
-
| 08-two_entries_both_requiring_zip64.zip | Pending |
|
155
|
-
| Two entries both requiring Zip64 | |
|
156
|
-
+--------------------------------------------------------------------------------+------------------------------------------------------------------+
|
157
|
-
| 09-two_stored_entries_using_data_descriptors.zip | Pending |
|
158
|
-
| Two stored entries using data descriptors | |
|
159
|
-
+--------------------------------------------------------------------------------+------------------------------------------------------------------+
|
160
|
-
| 10-one_entry_deflated_using_data_descriptors.zip | Pending |
|
161
|
-
| One entry deflated using data descriptors | |
|
162
|
-
+--------------------------------------------------------------------------------+------------------------------------------------------------------+
|
163
|
-
| 11-two_entries_larger_than_the_overall_zip64_offset_using_data_descriptors.zip | Pending |
|
164
|
-
| Two entries larger than the overall Zip64 offset using data descriptors | |
|
165
|
-
+--------------------------------------------------------------------------------+------------------------------------------------------------------+
|
166
|
-
| 12-one_stored_entry_larger_than_zip64_threshold_using_data_descriptors.zip | Pending |
|
167
|
-
| One stored entry larger than Zip64 threshold using data descriptors | |
|
168
|
-
+--------------------------------------------------------------------------------+------------------------------------------------------------------+
|