]> git.openstreetmap.org Git - rails.git/blob - test/test_helper.rb
Adding some more diary entry tests. Making the RSS feed links more portable, by using...
[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     #print "setting up the api_fixtures"
31     fixtures :users, :changesets
32
33     fixtures :current_nodes, :nodes
34     set_fixture_class :current_nodes => Node
35     set_fixture_class :nodes => OldNode
36
37     fixtures  :current_node_tags,:node_tags
38     set_fixture_class :current_node_tags => NodeTag
39     set_fixture_class :node_tags => OldNodeTag
40
41     fixtures :current_ways, :current_way_nodes, :current_way_tags
42     set_fixture_class :current_ways => Way
43     set_fixture_class :current_way_nodes => WayNode
44     set_fixture_class :current_way_tags => WayTag
45
46     fixtures :ways, :way_nodes, :way_tags
47     set_fixture_class :ways => OldWay
48     set_fixture_class :way_nodes => OldWayNode
49     set_fixture_class :way_tags => OldWayTag
50
51     fixtures :current_relations, :current_relation_members, :current_relation_tags
52     set_fixture_class :current_relations => Relation
53     set_fixture_class :current_relation_members => RelationMember
54     set_fixture_class :current_relation_tags => RelationTag
55
56     fixtures :relations, :relation_members, :relation_tags
57     set_fixture_class :relations => OldRelation
58     set_fixture_class :relation_members => OldRelationMember
59     set_fixture_class :relation_tags => OldRelationTag
60     
61     fixtures :gpx_files, :gps_points, :gpx_file_tags
62     set_fixture_class :gpx_files => Trace
63     set_fixture_class :gps_points => Tracepoint
64     set_fixture_class :gpx_file_tags => Tracetag
65   end
66
67   ##
68   # takes a block which is executed in the context of a different 
69   # ActionController instance. this is used so that code can call methods
70   # on the node controller whilst testing the old_node controller.
71   def with_controller(new_controller)
72     controller_save = @controller
73     begin
74       @controller = new_controller
75       yield
76     ensure
77       @controller = controller_save
78     end
79   end
80
81   ##
82   # for some reason assert_equal a, b fails when the ways are actually
83   # equal, so this method manually checks the fields...
84   def assert_ways_are_equal(a, b)
85     assert_not_nil a, "first way is not allowed to be nil"
86     assert_not_nil b, "second way #{a.id} is not allowed to be nil"
87     assert_equal a.id, b.id, "way IDs"
88     assert_equal a.changeset_id, b.changeset_id, "changeset ID on way #{a.id}"
89     assert_equal a.visible, b.visible, "visible on way #{a.id}, #{a.visible.inspect} != #{b.visible.inspect}"
90     assert_equal a.version, b.version, "version on way #{a.id}"
91     assert_equal a.tags, b.tags, "tags on way #{a.id}"
92     assert_equal a.nds, b.nds, "node references on way #{a.id}"
93   end
94
95   ##
96   # for some reason a==b is false, but there doesn't seem to be any 
97   # difference between the nodes, so i'm checking all the attributes 
98   # manually and blaming it on ActiveRecord
99   def assert_nodes_are_equal(a, b)
100     assert_equal a.id, b.id, "node IDs"
101     assert_equal a.latitude, b.latitude, "latitude on node #{a.id}"
102     assert_equal a.longitude, b.longitude, "longitude on node #{a.id}"
103     assert_equal a.changeset_id, b.changeset_id, "changeset ID on node #{a.id}"
104     assert_equal a.visible, b.visible, "visible on node #{a.id}"
105     assert_equal a.version, b.version, "version on node #{a.id}"
106     assert_equal a.tags, b.tags, "tags on node #{a.id}"
107   end
108
109   # Add more helper methods to be used by all tests here...
110 end