summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog6
-rw-r--r--test/test_unicode_normalize.rb21
2 files changed, 21 insertions, 6 deletions
diff --git a/ChangeLog b/ChangeLog
index 6648512431..afca264bb9 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+Sat May 28 20:34:19 2016 Martin Duerst <duerst@it.aoyama.ac.jp>
+
+ * test/test_unicode_normalize.rb: Add test to check for availability of
+ Unicode data file; refactoring; fix an error with tests for destructive
+ method (unicode_normalize!).
+
Sat May 28 19:08:36 2016 Martin Duerst <duerst@it.aoyama.ac.jp>
* test/ruby/enc/test_case_comprehensive.rb: Add error messages to tests
diff --git a/test/test_unicode_normalize.rb b/test/test_unicode_normalize.rb
index 548c8a8cee..211f8f5430 100644
--- a/test/test_unicode_normalize.rb
+++ b/test/test_unicode_normalize.rb
@@ -9,11 +9,16 @@ require 'unicode_normalize/normalize'
class TestUnicodeNormalize < Test::Unit::TestCase
UNICODE_VERSION = UnicodeNormalize::UNICODE_VERSION
+ UNICODE_DATA_PATH = "../enc/unicode/data/#{UNICODE_VERSION}"
+
+ def expand_filename(basename)
+ File.expand_path("#{UNICODE_DATA_PATH}/#{basename}.txt", __dir__)
+ end
NormTest = Struct.new :source, :NFC, :NFD, :NFKC, :NFKD, :line
def read_tests
- IO.readlines(File.expand_path("../enc/unicode/data/#{UNICODE_VERSION}/NormalizationTest.txt", __dir__), encoding: 'utf-8')
+ IO.readlines(expand_filename('NormalizationTest'), encoding: 'utf-8')
.tap { |lines| assert_include(lines[0], "NormalizationTest-#{UNICODE_VERSION}.txt")}
.collect.with_index { |linedata, linenumber| [linedata, linenumber]}
.reject { |line| line[0] =~ /^[\#@]/ }
@@ -32,7 +37,6 @@ class TestUnicodeNormalize < Test::Unit::TestCase
@@tests ||= read_tests
rescue Errno::ENOENT => e
@@tests ||= []
- skip e.message
end
def self.generate_test_normalize(target, normalization, source, prechecked)
@@ -133,6 +137,11 @@ class TestUnicodeNormalize < Test::Unit::TestCase
generate_test_check_false :NFD, :NFKC, :nfkc
generate_test_check_false :NFKD, :NFKC, :nfkc
+ def test_AAAAA_data_file_available # AAAAA makes sure this test is run first
+ expanded = expand_filename 'NormalizationTest'
+ assert File.exist?(expanded), "File #{expanded} missing."
+ end
+
def test_non_UTF_8
assert_equal "\u1E0A".encode('UTF-16BE'), "D\u0307".encode('UTF-16BE').unicode_normalize(:nfc)
assert_equal true, "\u1E0A".encode('UTF-16BE').unicode_normalized?(:nfc)
@@ -172,10 +181,10 @@ class TestUnicodeNormalize < Test::Unit::TestCase
assert_equal ascii_string, ascii_string.unicode_normalize(:nfkc)
assert_equal ascii_string, ascii_string.unicode_normalize(:nfkd)
- assert_equal ascii_string, ascii_string.unicode_normalize!
- assert_equal ascii_string, ascii_string.unicode_normalize!(:nfd)
- assert_equal ascii_string, ascii_string.unicode_normalize!(:nfkc)
- assert_equal ascii_string, ascii_string.unicode_normalize!(:nfkd)
+ assert_equal ascii_string, ascii_string.dup.unicode_normalize!
+ assert_equal ascii_string, ascii_string.dup.unicode_normalize!(:nfd)
+ assert_equal ascii_string, ascii_string.dup.unicode_normalize!(:nfkc)
+ assert_equal ascii_string, ascii_string.dup.unicode_normalize!(:nfkd)
assert_equal true, ascii_string.unicode_normalized?
assert_equal true, ascii_string.unicode_normalized?(:nfd)