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
|
# encoding: utf-8
require 'test_helper'
class ZipUnicodeFileNamesAndComments < MiniTest::Unit::TestCase
FILENAME = File.join(File.dirname(__FILE__), "test1.zip")
def test_unicode
file_entrys = ["текстовыйфайл.txt", "Résumé.txt", "슬레이어스휘.txt"]
directory_entrys = ["папка/текстовыйфайл.txt", "Résumé/Résumé.txt", "슬레이어스휘/슬레이어스휘.txt"]
stream = ::Zip::OutputStream.open(FILENAME) do |io|
file_entrys.each do |filename|
io.put_next_entry(filename)
io.write(filename)
end
directory_entrys.each do |filepath|
io.put_next_entry(filepath)
io.write(filepath)
end
end
assert(!stream.nil?)
::Zip::InputStream.open(FILENAME) do |io|
file_entrys.each do |filename|
entry = io.get_next_entry
entry_name = entry.name
entry_name = entry_name.force_encoding("UTF-8") if RUBY_VERSION >= '1.9'
assert(filename == entry_name)
end
directory_entrys.each do |filepath|
entry = io.get_next_entry
entry_name = entry.name
entry_name = entry_name.force_encoding("UTF-8") if RUBY_VERSION >= '1.9'
assert(filepath == entry_name)
end
end
::File.unlink(FILENAME)
end
end
|