X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/f2d13c075660efb9582d7fb600bd6798d7a382ca..f8f7ab15685403a2b440723f83fdd8451488c908:/test/models/old_relation_tag_test.rb diff --git a/test/models/old_relation_tag_test.rb b/test/models/old_relation_tag_test.rb index ec4987ee0..a05e67ee7 100644 --- a/test/models/old_relation_tag_test.rb +++ b/test/models/old_relation_tag_test.rb @@ -1,75 +1,52 @@ -require 'test_helper' +require "test_helper" class OldRelationTagTest < ActiveSupport::TestCase - api_fixtures - - def test_tag_count - assert_equal 12, OldRelationTag.count - end - def test_length_key_valid - key = "k" + tag = create(:old_relation_tag) (0..255).each do |i| - tag = OldRelationTag.new - tag.relation_id = relation_tags(:t1).relation_id - tag.version = 1 - tag.k = key*i - tag.v = "v" + tag.k = "k" * i assert tag.valid? end end - + def test_length_value_valid - val = "v" + tag = create(:old_relation_tag) (0..255).each do |i| - tag = OldRelationTag.new - tag.relation_id = relation_tags(:t1).relation_id - tag.version = 1 - tag.k = "k" - tag.v = val*i + tag.v = "v" * i assert tag.valid? end end - + def test_length_key_invalid - ["k"*256].each do |i| - tag = OldRelationTag.new - tag.relation_id = relation_tags(:t1).relation_id - tag.version = 1 - tag.k = i - tag.v = "v" - assert !tag.valid?, "Key should be too long" - assert tag.errors[:k].any? - end + tag = create(:old_relation_tag) + tag.k = "k" * 256 + assert_not tag.valid?, "Key should be too long" + assert tag.errors[:k].any? end - + def test_length_value_invalid - ["k"*256].each do |i| - tag = OldRelationTag.new - tag.relation_id = relation_tags(:t1).relation_id - tag.version = 1 - tag.k = "k" - tag.v = i - assert !tag.valid?, "Value should be too long" - assert tag.errors[:v].any? - end + tag = create(:old_relation_tag) + tag.v = "v" * 256 + assert_not tag.valid?, "Value should be too long" + assert tag.errors[:v].any? end - + def test_empty_tag_invalid tag = OldRelationTag.new - assert !tag.valid?, "Empty tag should be invalid" + assert_not tag.valid?, "Empty tag should be invalid" assert tag.errors[:old_relation].any? end - + def test_uniqueness + existing = create(:old_relation_tag) tag = OldRelationTag.new - tag.relation_id = relation_tags(:t1).relation_id - tag.version = relation_tags(:t1).version - tag.k = relation_tags(:t1).k - tag.v = relation_tags(:t1).v + tag.relation_id = existing.relation_id + tag.version = existing.version + tag.k = existing.k + tag.v = existing.v assert tag.new_record? - assert !tag.valid? - assert_raise(ActiveRecord::RecordInvalid) {tag.save!} + assert_not tag.valid? + assert_raise(ActiveRecord::RecordInvalid) { tag.save! } assert tag.new_record? end end