]> git.openstreetmap.org Git - rails.git/blobdiff - test/models/changeset_comment_test.rb
Fix rubocop warnings
[rails.git] / test / models / changeset_comment_test.rb
index ed4f0e032a8f45b520bc54110b38de65a2fe7041..10901f70171f75381a6ea4959e21eaac433c0d87 100644 (file)
@@ -1,4 +1,5 @@
-require 'test_helper'
+# -*- coding: utf-8 -*-
+require "test_helper"
 
 class ChangesetCommentTest < ActiveSupport::TestCase
   fixtures :changesets, :changeset_comments
@@ -38,4 +39,23 @@ class ChangesetCommentTest < ActiveSupport::TestCase
   def test_comments_of_changeset_count
     assert_equal 3, Changeset.find(changesets(:normal_user_closed_change).id).comments.count
   end
+
+  def test_body_valid
+    ok = %W(Name vergrößern foo\nbar
+            ルシステムにも対応します 輕觸搖晃的遊戲)
+    bad = ["foo\x00bar", "foo\x08bar", "foo\x1fbar", "foo\x7fbar",
+           "foo\ufffebar", "foo\uffffbar"]
+
+    ok.each do |body|
+      changeset_comment = changeset_comments(:normal_comment_1)
+      changeset_comment.body = body
+      assert changeset_comment.valid?, "#{body} is invalid, when it should be"
+    end
+
+    bad.each do |body|
+      changeset_comment = changeset_comments(:normal_comment_1)
+      changeset_comment.body = body
+      assert !changeset_comment.valid?, "#{body} is valid when it shouldn't be"
+    end
+  end
 end