]> git.openstreetmap.org Git - rails.git/blob - test/test_helper.rb
713bbf6484af8220e3b55f12d2fa19855b34cb64
[rails.git] / test / test_helper.rb
1 ENV["RAILS_ENV"] = "test"
2 require File.expand_path(File.dirname(__FILE__) + "/../config/environment")
3 require 'test_help'
4 load 'composite_primary_keys/fixtures.rb'
5
6 class Test::Unit::TestCase
7   # Transactional fixtures accelerate your tests by wrapping each test method
8   # in a transaction that's rolled back on completion.  This ensures that the
9   # test database remains unchanged so your fixtures don't have to be reloaded
10   # between every test method.  Fewer database queries means faster tests.
11   #
12   # Read Mike Clark's excellent walkthrough at
13   #   http://clarkware.com/cgi/blosxom/2005/10/24#Rails10FastTesting
14   #
15   # Every Active Record database supports transactions except MyISAM tables
16   # in MySQL.  Turn off transactional fixtures in this case; however, if you
17   # don't care one way or the other, switching from MyISAM to InnoDB tables
18   # is recommended.
19   self.use_transactional_fixtures = false
20
21   # Instantiated fixtures are slow, but give you @david where otherwise you
22   # would need people(:david).  If you don't want to migrate your existing
23   # test cases which use the @david style and don't mind the speed hit (each
24   # instantiated fixtures translates to a database query per test method),
25   # then set this back to true.
26   self.use_instantiated_fixtures  = false
27
28   # Load standard fixtures needed to test API methods
29   def self.api_fixtures
30     fixtures :users, :changesets
31
32     fixtures :current_nodes, :nodes
33     set_fixture_class :current_nodes => :Node
34     set_fixture_class :nodes => :OldNode
35
36     fixtures  :current_node_tags,:node_tags
37     set_fixture_class :current_node_tags => :NodeTag
38     set_fixture_class :node_tags => :OldNodeTag
39
40     fixtures :current_ways, :current_way_nodes, :current_way_tags
41     set_fixture_class :current_ways => :Way
42     set_fixture_class :current_way_nodes => :WayNode
43     set_fixture_class :current_way_tags => :WayTag
44
45     fixtures :ways, :way_nodes, :way_tags
46     set_fixture_class :ways => :OldWay
47     set_fixture_class :way_nodes => :OldWayNode
48     set_fixture_class :way_tags => :OldWayTag
49
50     fixtures :current_relations, :current_relation_members, :current_relation_tags
51     set_fixture_class :current_relations => :Relation
52     set_fixture_class :current_relation_members => :RelationMember
53     set_fixture_class :current_relation_tags => :RelationTag
54
55     fixtures :relations, :relation_members, :relation_tags
56     set_fixture_class :relations => :OldRelation
57     set_fixture_class :relation_members => :OldRelationMember
58     set_fixture_class :relation_tags => :OldRelationTag
59   end
60
61   ##
62   # takes a block which is executed in the context of a different 
63   # ActionController instance. this is used so that code can call methods
64   # on the node controller whilst testing the old_node controller.
65   def with_controller(new_controller)
66     controller_save = @controller
67     begin
68       @controller = new_controller
69       yield
70     ensure
71       @controller = controller_save
72     end
73   end
74
75   ##
76   # for some reason assert_equal a, b fails when the ways are actually
77   # equal, so this method manually checks the fields...
78   def assert_ways_are_equal(a, b)
79     assert_not_nil a, "first way is not allowed to be nil"
80     assert_not_nil b, "second way #{a.id} is not allowed to be nil"
81     assert_equal a.id, b.id, "way IDs"
82     assert_equal a.changeset_id, b.changeset_id, "changeset ID on way #{a.id}"
83     assert_equal a.visible, b.visible, "visible on way #{a.id}, #{a.visible.inspect} != #{b.visible.inspect}"
84     assert_equal a.version, b.version, "version on way #{a.id}"
85     assert_equal a.tags, b.tags, "tags on way #{a.id}"
86     assert_equal a.nds, b.nds, "node references on way #{a.id}"
87   end
88
89   ##
90   # for some reason a==b is false, but there doesn't seem to be any 
91   # difference between the nodes, so i'm checking all the attributes 
92   # manually and blaming it on ActiveRecord
93   def assert_nodes_are_equal(a, b)
94     assert_equal a.id, b.id, "node IDs"
95     assert_equal a.latitude, b.latitude, "latitude on node #{a.id}"
96     assert_equal a.longitude, b.longitude, "longitude on node #{a.id}"
97     assert_equal a.changeset_id, b.changeset_id, "changeset ID on node #{a.id}"
98     assert_equal a.visible, b.visible, "visible on node #{a.id}"
99     assert_equal a.version, b.version, "version on node #{a.id}"
100     assert_equal a.tags, b.tags, "tags on node #{a.id}"
101   end
102
103   # Add more helper methods to be used by all tests here...
104 end