From 00d2dc953e284fbff09c596937212b14ef37a3e8 Mon Sep 17 00:00:00 2001 From: Sebastian Ludwig Date: Sat, 5 Dec 2015 01:23:50 +0100 Subject: [PATCH] Tested and fixed comment consumption for all formatters. --- lib/twine/formatters/django.rb | 4 +++- lib/twine/formatters/flash.rb | 2 +- test/test_formatters.rb | 43 +++++++++++++++++----------------- 3 files changed, 25 insertions(+), 24 deletions(-) diff --git a/lib/twine/formatters/django.rb b/lib/twine/formatters/django.rb index cbadf73..db9082c 100644 --- a/lib/twine/formatters/django.rb +++ b/lib/twine/formatters/django.rb @@ -26,7 +26,7 @@ module Twine end def read_file(path, lang) - comment_regex = /#.? *"(.*)"$/ + comment_regex = /#\. *"?(.*)"?$/ key_regex = /msgid *"(.*)"$/ value_regex = /msgstr *"(.*)"$/m @@ -83,6 +83,8 @@ module Twine if comment and comment.length > 0 and !comment.start_with?("--------- ") set_comment_for_key(key, comment) end + key = nil + value = nil comment = nil end diff --git a/lib/twine/formatters/flash.rb b/lib/twine/formatters/flash.rb index 9b62314..5fff281 100644 --- a/lib/twine/formatters/flash.rb +++ b/lib/twine/formatters/flash.rb @@ -59,7 +59,7 @@ module Twine end end if @options[:consume_comments] - match = /#(.*)/.match(line) + match = /# *(.*)/.match(line) if match last_comment = match[1] else diff --git a/test/test_formatters.rb b/test/test_formatters.rb index 6727329..43af64d 100644 --- a/test/test_formatters.rb +++ b/test/test_formatters.rb @@ -17,7 +17,20 @@ class FormatterTest < TwineTestCase end @strings = Twine::StringsFile.new - @formatter = formatter_class.new @strings, { consume_all: true } + @formatter = formatter_class.new @strings, { consume_all: true, consume_comments: true } + end + + def assert_translations_read_correctly + 1.upto(4) do |i| + assert_equal "value#{i}-english", @strings.strings_map["key#{i}"].translations['en'] + end + end + + def assert_file_contents_read_correctly + assert_translations_read_correctly + + assert_equal "comment key1", @strings.strings_map["key1"].comment + assert_equal "comment key4", @strings.strings_map["key4"].comment end end @@ -29,9 +42,7 @@ class TestAndroidFormatter < FormatterTest def test_read_file_format @formatter.read_file fixture('formatter_android.xml'), 'en' - 1.upto(4) do |i| - assert_equal "value#{i}-english", @strings.strings_map["key#{i}"].translations['en'] - end + assert_file_contents_read_correctly end def test_set_translation_transforms_leading_spaces @@ -94,9 +105,7 @@ class TestAppleFormatter < FormatterTest def test_read_file_format @formatter.read_file fixture('formatter_apple.strings'), 'en' - 1.upto(4) do |i| - assert_equal "value#{i}-english", @strings.strings_map["key#{i}"].translations['en'] - end + assert_file_contents_read_correctly end def test_write_file_output_format @@ -127,9 +136,7 @@ class TestJQueryFormatter < FormatterTest def test_read_file_format @formatter.read_file fixture('formatter_jquery.json'), 'en' - 1.upto(4) do |i| - assert_equal "value#{i}-english", @strings.strings_map["key#{i}"].translations['en'] - end + assert_translations_read_correctly end def test_set_translation_escapes_newlines @@ -159,9 +166,7 @@ class TestGettextFormatter < FormatterTest def test_read_file_format @formatter.read_file fixture('formatter_gettext.po'), 'en' - 1.upto(4) do |i| - assert_equal "value#{i}-english", @strings.strings_map["key#{i}"].translations['en'] - end + assert_file_contents_read_correctly end def test_read_file_with_multiple_line_value @@ -188,9 +193,7 @@ class TestTizenFormatter < FormatterTest skip 'the current implementation of Tizen formatter does not support read_file' @formatter.read_file fixture('formatter_tizen.xml'), 'en' - 1.upto(4) do |i| - assert_equal "value#{i}-english", @strings.strings_map["key#{i}"].translations['en'] - end + assert_file_contents_read_correctly end def test_write_file_output_format @@ -209,9 +212,7 @@ class TestDjangoFormatter < FormatterTest def test_read_file_format @formatter.read_file fixture('formatter_django.po'), 'en' - 1.upto(4) do |i| - assert_equal "value#{i}-english", @strings.strings_map["key#{i}"].translations['en'] - end + assert_file_contents_read_correctly end def test_write_file_output_format @@ -229,9 +230,7 @@ class TestFlashFormatter < FormatterTest def test_read_file_format @formatter.read_file fixture('formatter_flash.properties'), 'en' - 1.upto(4) do |i| - assert_equal "value#{i}-english", @strings.strings_map["key#{i}"].translations['en'] - end + assert_file_contents_read_correctly end def test_write_file_output_format