]> git.openstreetmap.org Git - rails.git/blob - test/test_helper.rb
Load API fixture for the search controller tests
[rails.git] / test / test_helper.rb
1 require "coveralls"
2 Coveralls.wear!("rails")
3
4 ENV["RAILS_ENV"] = "test"
5 require File.expand_path("../../config/environment", __FILE__)
6 require "rails/test_help"
7 load "composite_primary_keys/fixtures.rb"
8
9 module ActiveSupport
10   class TestCase
11     # Load standard fixtures needed to test API methods
12     def self.api_fixtures
13       # print "setting up the api_fixtures"
14       fixtures :users, :user_roles, :user_blocks, :changesets, :changeset_tags
15
16       fixtures :current_nodes, :nodes
17       set_fixture_class :current_nodes => Node
18       set_fixture_class :nodes => OldNode
19
20       fixtures :current_node_tags, :node_tags
21       set_fixture_class :current_node_tags => NodeTag
22       set_fixture_class :node_tags => OldNodeTag
23
24       fixtures :current_ways
25       set_fixture_class :current_ways => Way
26
27       fixtures :current_way_nodes, :current_way_tags
28       set_fixture_class :current_way_nodes => WayNode
29       set_fixture_class :current_way_tags => WayTag
30
31       fixtures :ways
32       set_fixture_class :ways => OldWay
33
34       fixtures :way_nodes, :way_tags
35       set_fixture_class :way_nodes => OldWayNode
36       set_fixture_class :way_tags => OldWayTag
37
38       fixtures :current_relations
39       set_fixture_class :current_relations => Relation
40
41       fixtures :current_relation_members, :current_relation_tags
42       set_fixture_class :current_relation_members => RelationMember
43       set_fixture_class :current_relation_tags => RelationTag
44
45       fixtures :relations
46       set_fixture_class :relations => OldRelation
47
48       fixtures :relation_members, :relation_tags
49       set_fixture_class :relation_members => OldRelationMember
50       set_fixture_class :relation_tags => OldRelationTag
51
52       fixtures :gpx_files, :gps_points, :gpx_file_tags
53       set_fixture_class :gpx_files => Trace
54       set_fixture_class :gps_points => Tracepoint
55       set_fixture_class :gpx_file_tags => Tracetag
56
57       fixtures :client_applications
58
59       fixtures :redactions
60
61       fixtures :notes, :note_comments
62     end
63
64     ##
65     # takes a block which is executed in the context of a different
66     # ActionController instance. this is used so that code can call methods
67     # on the node controller whilst testing the old_node controller.
68     def with_controller(new_controller)
69       controller_save = @controller
70       begin
71         @controller = new_controller
72         yield
73       ensure
74         @controller = controller_save
75       end
76     end
77
78     ##
79     # for some reason assert_equal a, b fails when the relations are
80     # actually equal, so this method manually checks the fields...
81     def assert_relations_are_equal(a, b)
82       assert_not_nil a, "first relation is not allowed to be nil"
83       assert_not_nil b, "second relation #{a.id} is not allowed to be nil"
84       assert_equal a.id, b.id, "relation IDs"
85       assert_equal a.changeset_id, b.changeset_id, "changeset ID on relation #{a.id}"
86       assert_equal a.visible, b.visible, "visible on relation #{a.id}, #{a.visible.inspect} != #{b.visible.inspect}"
87       assert_equal a.version, b.version, "version on relation #{a.id}"
88       assert_equal a.tags, b.tags, "tags on relation #{a.id}"
89       assert_equal a.members, b.members, "member references on relation #{a.id}"
90     end
91
92     ##
93     # for some reason assert_equal a, b fails when the ways are actually
94     # equal, so this method manually checks the fields...
95     def assert_ways_are_equal(a, b)
96       assert_not_nil a, "first way is not allowed to be nil"
97       assert_not_nil b, "second way #{a.id} is not allowed to be nil"
98       assert_equal a.id, b.id, "way IDs"
99       assert_equal a.changeset_id, b.changeset_id, "changeset ID on way #{a.id}"
100       assert_equal a.visible, b.visible, "visible on way #{a.id}, #{a.visible.inspect} != #{b.visible.inspect}"
101       assert_equal a.version, b.version, "version on way #{a.id}"
102       assert_equal a.tags, b.tags, "tags on way #{a.id}"
103       assert_equal a.nds, b.nds, "node references on way #{a.id}"
104     end
105
106     ##
107     # for some reason a==b is false, but there doesn't seem to be any
108     # difference between the nodes, so i'm checking all the attributes
109     # manually and blaming it on ActiveRecord
110     def assert_nodes_are_equal(a, b)
111       assert_equal a.id, b.id, "node IDs"
112       assert_equal a.latitude, b.latitude, "latitude on node #{a.id}"
113       assert_equal a.longitude, b.longitude, "longitude on node #{a.id}"
114       assert_equal a.changeset_id, b.changeset_id, "changeset ID on node #{a.id}"
115       assert_equal a.visible, b.visible, "visible on node #{a.id}"
116       assert_equal a.version, b.version, "version on node #{a.id}"
117       assert_equal a.tags, b.tags, "tags on node #{a.id}"
118     end
119
120     ##
121     # set request headers for HTTP basic authentication
122     def basic_authorization(user, pass)
123       @request.env["HTTP_AUTHORIZATION"] = format("Basic %s", Base64.encode64("#{user}:#{pass}"))
124     end
125
126     ##
127     # set request readers to ask for a particular error format
128     def error_format(format)
129       @request.env["HTTP_X_ERROR_FORMAT"] = format
130     end
131
132     ##
133     # set the raw body to be sent with a POST request
134     def content(c)
135       @request.env["RAW_POST_DATA"] = c.to_s
136     end
137
138     ##
139     # Used to check that the error header and the forbidden responses are given
140     # when the owner of the changset has their data not marked as public
141     def assert_require_public_data(msg = "Shouldn't be able to use API when the user's data is not public")
142       assert_response :forbidden, msg
143       assert_equal @response.headers["Error"], "You must make your edits public to upload new data", "Wrong error message"
144     end
145
146     ##
147     # Not sure this is the best response we could give
148     def assert_inactive_user(msg = "an inactive user shouldn't be able to access the API")
149       assert_response :unauthorized, msg
150       # assert_equal @response.headers['Error'], ""
151     end
152
153     ##
154     # Check for missing translations in an HTML response
155     def assert_no_missing_translations(msg = "")
156       assert_select "span[class=translation_missing]", false, "Missing translation #{msg}"
157     end
158
159     ##
160     # execute a block with a given set of HTTP responses stubbed
161     def with_http_stubs(stubs_file)
162       http_client_save = OSM.http_client
163
164       begin
165         stubs = YAML.load_file(File.expand_path("../http/#{stubs_file}.yml", __FILE__))
166
167         OSM.http_client = Faraday.new do |builder|
168           builder.adapter :test do |stub|
169             stubs.each do |url, body|
170               stub.get(url) { |_env| [200, {}, body] }
171             end
172           end
173         end
174
175         yield
176       ensure
177         OSM.http_client = http_client_save
178       end
179     end
180   end
181 end