Skip to content

Commit

Permalink
Replace fixtures with a factory for old_relation_tags
Browse files Browse the repository at this point in the history
  • Loading branch information
gravitystorm committed Oct 30, 2016
1 parent e308da8 commit aba28ec
Show file tree
Hide file tree
Showing 5 changed files with 48 additions and 134 deletions.
10 changes: 10 additions & 0 deletions test/factories/old_relation_tags.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
FactoryGirl.define do
factory :old_relation_tag do
sequence(:k) { |n| "Key #{n}" }
sequence(:v) { |n| "Value #{n}" }

# Fixme requires old_relation factory
relation_id 1
version 1
end
end
77 changes: 0 additions & 77 deletions test/fixtures/relation_tags.yml

This file was deleted.

57 changes: 17 additions & 40 deletions test/models/old_relation_tag_test.rb
Original file line number Diff line number Diff line change
@@ -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
Expand All @@ -62,11 +38,12 @@ def test_empty_tag_invalid
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! }
Expand Down
35 changes: 20 additions & 15 deletions test/models/old_relation_test.rb
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@ def test_db_count
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
Expand All @@ -19,20 +22,18 @@ def test_relation_tags
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
Expand Down Expand Up @@ -100,6 +101,9 @@ def test_relations
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
Expand All @@ -111,14 +115,15 @@ def test_tags
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
3 changes: 1 addition & 2 deletions test/test_helper.rb
Original file line number Diff line number Diff line change
Expand Up @@ -46,9 +46,8 @@ def self.api_fixtures
fixtures :relations
set_fixture_class :relations => OldRelation

fixtures :relation_members, :relation_tags
fixtures :relation_members
set_fixture_class :relation_members => OldRelationMember
set_fixture_class :relation_tags => OldRelationTag

fixtures :gpx_files, :gps_points, :gpx_file_tags
set_fixture_class :gpx_files => Trace
Expand Down

0 comments on commit aba28ec

Please sign in to comment.