]> git.openstreetmap.org Git - rails.git/commitdiff
Add some validations for i18n values
authorAndy Allan <git@gravitystorm.co.uk>
Wed, 29 Mar 2023 17:50:44 +0000 (18:50 +0100)
committerAndy Allan <git@gravitystorm.co.uk>
Wed, 12 Apr 2023 12:58:55 +0000 (13:58 +0100)
These only apply to the en.yml file for now, but can be expanded
in due course.

test/lib/i18n_test.rb

index 9c7d8e568347625a5c8d58291c4a028afe3c7769..3f46955b3bab54ce0a21d8ce82f68dc820365b4e 100644 (file)
@@ -55,6 +55,20 @@ class I18nTest < ActiveSupport::TestCase
     end
   end
 
+  def test_en_for_raw_html
+    en = YAML.load_file(Rails.root.join("config/locales/en.yml"))
+    assert_nothing_raised do
+      check_values_for_raw_html(en)
+    end
+  end
+
+  def test_en_for_nil_values
+    en = YAML.load_file(Rails.root.join("config/locales/en.yml"))
+    assert_nothing_raised do
+      check_values_for_nil(en)
+    end
+  end
+
   private
 
   def translation_keys(scope = nil)
@@ -81,4 +95,25 @@ class I18nTest < ActiveSupport::TestCase
   rescue I18n::MissingTranslationData
     [:zero, :one, :other]
   end
+
+  def check_values_for_raw_html(hash)
+    hash.each_pair do |k, v|
+      if v.is_a? Hash
+        check_values_for_raw_html(v)
+      else
+        next unless k.end_with?("_html")
+        raise "Avoid using raw html in '#{k}: #{v}'" if v.include? "<"
+      end
+    end
+  end
+
+  def check_values_for_nil(hash)
+    hash.each_pair do |k, v|
+      if v.is_a? Hash
+        check_values_for_nil(v)
+      else
+        raise "Avoid nil values in '#{k}: nil'" if v.nil?
+      end
+    end
+  end
 end