]> git.openstreetmap.org Git - rails.git/blob - test/models/relation_tag_test.rb
Link GPX fixture files instead of stubbing
[rails.git] / test / models / relation_tag_test.rb
1 require "test_helper"
2
3 class RelationTagTest < ActiveSupport::TestCase
4   api_fixtures
5
6   def test_length_key_valid
7     tag = create(:relation_tag)
8     (0..255).each do |i|
9       tag.k = "k" * i
10       assert tag.valid?
11     end
12   end
13
14   def test_length_value_valid
15     tag = create(:relation_tag)
16     (0..255).each do |i|
17       tag.v = "v" * i
18       assert tag.valid?
19     end
20   end
21
22   def test_length_key_invalid
23     tag = create(:relation_tag)
24     tag.k = "k" * 256
25     assert !tag.valid?, "Key should be too long"
26     assert tag.errors[:k].any?
27   end
28
29   def test_length_value_invalid
30     tag = create(:relation_tag)
31     tag.v = "v" * 256
32     assert !tag.valid?, "Value should be too long"
33     assert tag.errors[:v].any?
34   end
35
36   def test_empty_tag_invalid
37     tag = RelationTag.new
38     assert !tag.valid?, "Empty relation tag should be invalid"
39     assert tag.errors[:relation].any?
40   end
41
42   def test_uniquness
43     existing = create(:relation_tag)
44     tag = RelationTag.new
45     tag.relation_id = existing.relation_id
46     tag.k = existing.k
47     tag.v = existing.v
48     assert tag.new_record?
49     assert !tag.valid?
50     assert_raise(ActiveRecord::RecordInvalid) { tag.save! }
51     assert tag.new_record?
52   end
53
54   ##
55   # test that tags can be updated and saved uniquely, i.e: tag.save!
56   # only affects the single tag that the activerecord object
57   # represents. this amounts to testing that the primary key is
58   # unique.
59   #
60   # Commenting this out - I attempted to fix it, but composite primary keys
61   # wasn't playing nice with the column already called :id. Seemed to be
62   # impossible to have validations on the :id column. If someone knows better
63   # please fix, otherwise this test is shelved.
64   #
65   # def test_update
66   #   v = "probably unique string here 3142592654"
67   #   assert_equal 0, RelationTag.count(:conditions => ['v=?', v])
68
69   #   # make sure we select a tag on a relation which has more than one tag
70   #   id = current_relations(:multi_tag_relation).relation_id
71   #   tag = RelationTag.find(:first, :conditions => ["id = ?", id])
72   #   tag.v = v
73   #   tag.save!
74
75   #   assert_equal 1, RelationTag.count(:conditions => ['v=?', v])
76   # end
77 end