Replace fixtures with a factory for old_relation_tags
This commit is contained in:
parent
e308da8daf
commit
aba28ec9e0
5 changed files with 48 additions and 134 deletions
|
@ -1,58 +1,34 @@
|
|||
require "test_helper"
|
||||
|
||||
class OldRelationTagTest < ActiveSupport::TestCase
|
||||
api_fixtures
|
||||
|
||||
def test_tag_count
|
||||
assert_equal 13, 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 !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 !tag.valid?, "Value should be too long"
|
||||
assert tag.errors[:v].any?
|
||||
end
|
||||
|
||||
def test_empty_tag_invalid
|
||||
|
@ -62,11 +38,12 @@ class OldRelationTagTest < ActiveSupport::TestCase
|
|||
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! }
|
||||
|
|
|
@ -8,6 +8,9 @@ class OldRelationTest < ActiveSupport::TestCase
|
|||
end
|
||||
|
||||
def test_relation_tags
|
||||
taglist_v3 = create_list(:old_relation_tag, 3, :old_relation => relations(:relation_with_versions_v3))
|
||||
taglist_v4 = create_list(:old_relation_tag, 2, :old_relation => relations(:relation_with_versions_v4))
|
||||
|
||||
relation = relations(:relation_with_versions_v1)
|
||||
tags = OldRelation.find(relation.id).old_tags.order(:k)
|
||||
assert_equal 0, tags.count
|
||||
|
@ -19,20 +22,18 @@ class OldRelationTest < ActiveSupport::TestCase
|
|||
relation = relations(:relation_with_versions_v3)
|
||||
tags = OldRelation.find(relation.id).old_tags.order(:k)
|
||||
assert_equal 3, tags.count
|
||||
assert_equal "testing", tags[0].k
|
||||
assert_equal "added in relation version 3", tags[0].v
|
||||
assert_equal "testing three", tags[1].k
|
||||
assert_equal "added in relation version 3", tags[1].v
|
||||
assert_equal "testing two", tags[2].k
|
||||
assert_equal "added in relation version 3", tags[2].v
|
||||
taglist_v3.sort_by!(&:k).each_index do |i|
|
||||
assert_equal taglist_v3[i].k, tags[i].k
|
||||
assert_equal taglist_v3[i].v, tags[i].v
|
||||
end
|
||||
|
||||
relation = relations(:relation_with_versions_v4)
|
||||
tags = OldRelation.find(relation.id).old_tags.order(:k)
|
||||
assert_equal 2, tags.count
|
||||
assert_equal "testing", tags[0].k
|
||||
assert_equal "added in relation version 3", tags[0].v
|
||||
assert_equal "testing two", tags[1].k
|
||||
assert_equal "modified in relation version 4", tags[1].v
|
||||
taglist_v4.sort_by!(&:k).each_index do |i|
|
||||
assert_equal taglist_v4[i].k, tags[i].k
|
||||
assert_equal taglist_v4[i].v, tags[i].v
|
||||
end
|
||||
end
|
||||
|
||||
def test_relation_members
|
||||
|
@ -100,6 +101,9 @@ class OldRelationTest < ActiveSupport::TestCase
|
|||
end
|
||||
|
||||
def test_tags
|
||||
taglist_v3 = create_list(:old_relation_tag, 3, :old_relation => relations(:relation_with_versions_v3))
|
||||
taglist_v4 = create_list(:old_relation_tag, 2, :old_relation => relations(:relation_with_versions_v4))
|
||||
|
||||
relation = relations(:relation_with_versions_v1)
|
||||
tags = OldRelation.find(relation.id).tags
|
||||
assert_equal 0, tags.size
|
||||
|
@ -111,14 +115,15 @@ class OldRelationTest < ActiveSupport::TestCase
|
|||
relation = relations(:relation_with_versions_v3)
|
||||
tags = OldRelation.find(relation.id).tags
|
||||
assert_equal 3, tags.size
|
||||
assert_equal "added in relation version 3", tags["testing"]
|
||||
assert_equal "added in relation version 3", tags["testing two"]
|
||||
assert_equal "added in relation version 3", tags["testing three"]
|
||||
taglist_v3.each do |tag|
|
||||
assert_equal tag.v, tags[tag.k]
|
||||
end
|
||||
|
||||
relation = relations(:relation_with_versions_v4)
|
||||
tags = OldRelation.find(relation.id).tags
|
||||
assert_equal 2, tags.size
|
||||
assert_equal "added in relation version 3", tags["testing"]
|
||||
assert_equal "modified in relation version 4", tags["testing two"]
|
||||
taglist_v4.each do |tag|
|
||||
assert_equal tag.v, tags[tag.k]
|
||||
end
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue