]> git.openstreetmap.org Git - rails.git/blob - test/test_helper.rb
JSON: move root_attributes to shared folder
[rails.git] / test / test_helper.rb
1 require "coveralls"
2 Coveralls.wear!("rails")
3
4 # Override the simplecov output message, since it is mostly unwanted noise
5 module SimpleCov
6   module Formatter
7     class HTMLFormatter
8       def output_message(_result); end
9     end
10   end
11 end
12
13 # Output both the local simplecov html and the coveralls report
14 SimpleCov.formatter = SimpleCov::Formatter::MultiFormatter.new(
15   [SimpleCov::Formatter::HTMLFormatter,
16    Coveralls::SimpleCov::Formatter]
17 )
18
19 ENV["RAILS_ENV"] = "test"
20 require_relative "../config/environment"
21 require "rails/test_help"
22 require "webmock/minitest"
23
24 WebMock.disable_net_connect!(:allow_localhost => true)
25
26 module ActiveSupport
27   class TestCase
28     include FactoryBot::Syntax::Methods
29     include ActiveJob::TestHelper
30
31     ##
32     # takes a block which is executed in the context of a different
33     # ActionController instance. this is used so that code can call methods
34     # on the node controller whilst testing the old_node controller.
35     def with_controller(new_controller)
36       controller_save = @controller
37       begin
38         @controller = new_controller
39         yield
40       ensure
41         @controller = controller_save
42       end
43     end
44
45     ##
46     # execute a block with missing translation exceptions suppressed
47     def without_i18n_exceptions
48       exception_handler = I18n.exception_handler
49       begin
50         I18n.exception_handler = nil
51         yield
52       ensure
53         I18n.exception_handler = exception_handler
54       end
55     end
56
57     ##
58     # work round minitest insanity that causes it to tell you
59     # to use assert_nil to test for nil, which is fine if you're
60     # comparing to a nil constant but not if you're comparing
61     # an expression that might be nil sometimes
62     def assert_equal_allowing_nil(exp, act, msg = nil)
63       if exp.nil?
64         assert_nil act, msg
65       else
66         assert_equal exp, act, msg
67       end
68     end
69
70     ##
71     # for some reason assert_equal a, b fails when the relations are
72     # actually equal, so this method manually checks the fields...
73     def assert_relations_are_equal(a, b)
74       assert_not_nil a, "first relation is not allowed to be nil"
75       assert_not_nil b, "second relation #{a.id} is not allowed to be nil"
76       assert_equal a.id, b.id, "relation IDs"
77       assert_equal a.changeset_id, b.changeset_id, "changeset ID on relation #{a.id}"
78       assert_equal a.visible, b.visible, "visible on relation #{a.id}, #{a.visible.inspect} != #{b.visible.inspect}"
79       assert_equal a.version, b.version, "version on relation #{a.id}"
80       assert_equal a.tags, b.tags, "tags on relation #{a.id}"
81       assert_equal a.members, b.members, "member references on relation #{a.id}"
82     end
83
84     ##
85     # for some reason assert_equal a, b fails when the ways are actually
86     # equal, so this method manually checks the fields...
87     def assert_ways_are_equal(a, b)
88       assert_not_nil a, "first way is not allowed to be nil"
89       assert_not_nil b, "second way #{a.id} is not allowed to be nil"
90       assert_equal a.id, b.id, "way IDs"
91       assert_equal a.changeset_id, b.changeset_id, "changeset ID on way #{a.id}"
92       assert_equal a.visible, b.visible, "visible on way #{a.id}, #{a.visible.inspect} != #{b.visible.inspect}"
93       assert_equal a.version, b.version, "version on way #{a.id}"
94       assert_equal a.tags, b.tags, "tags on way #{a.id}"
95       assert_equal a.nds, b.nds, "node references on way #{a.id}"
96     end
97
98     ##
99     # for some reason a==b is false, but there doesn't seem to be any
100     # difference between the nodes, so i'm checking all the attributes
101     # manually and blaming it on ActiveRecord
102     def assert_nodes_are_equal(a, b)
103       assert_equal a.id, b.id, "node IDs"
104       assert_equal a.latitude, b.latitude, "latitude on node #{a.id}"
105       assert_equal a.longitude, b.longitude, "longitude on node #{a.id}"
106       assert_equal a.changeset_id, b.changeset_id, "changeset ID on node #{a.id}"
107       assert_equal a.visible, b.visible, "visible on node #{a.id}"
108       assert_equal a.version, b.version, "version on node #{a.id}"
109       assert_equal a.tags, b.tags, "tags on node #{a.id}"
110     end
111
112     ##
113     # set request headers for HTTP basic authentication
114     def basic_authorization(user, pass)
115       @request.env["HTTP_AUTHORIZATION"] = format("Basic %{auth}", :auth => Base64.encode64("#{user}:#{pass}"))
116     end
117
118     ##
119     # set request header for HTTP Accept
120     def http_accept_format(format)
121       @request.env["HTTP_ACCEPT"] = format
122     end
123
124     ##
125     # set request readers to ask for a particular error format
126     def error_format(format)
127       @request.env["HTTP_X_ERROR_FORMAT"] = format
128     end
129
130     ##
131     # Used to check that the error header and the forbidden responses are given
132     # when the owner of the changset has their data not marked as public
133     def assert_require_public_data(msg = "Shouldn't be able to use API when the user's data is not public")
134       assert_response :forbidden, msg
135       assert_equal @response.headers["Error"], "You must make your edits public to upload new data", "Wrong error message"
136     end
137
138     ##
139     # Not sure this is the best response we could give
140     def assert_inactive_user(msg = "an inactive user shouldn't be able to access the API")
141       assert_response :unauthorized, msg
142       # assert_equal @response.headers['Error'], ""
143     end
144
145     ##
146     # Check for missing translations in an HTML response
147     def assert_no_missing_translations(msg = "")
148       assert_select "span[class=translation_missing]", false, "Missing translation #{msg}"
149     end
150
151     ##
152     # execute a block with a given set of HTTP responses stubbed
153     def with_http_stubs(stubs_file)
154       stubs = YAML.load_file(File.expand_path("../http/#{stubs_file}.yml", __FILE__))
155       stubs.each do |url, response|
156         stub_request(:get, Regexp.new(Regexp.quote(url))).to_return(:status => response["code"], :body => response["body"])
157       end
158
159       yield
160     end
161
162     def stub_gravatar_request(email, status = 200, body = nil)
163       hash = ::Digest::MD5.hexdigest(email.downcase)
164       url = "https://www.gravatar.com/avatar/#{hash}?d=404"
165       stub_request(:get, url).and_return(:status => status, :body => body)
166     end
167
168     def stub_hostip_requests
169       # Controller tests and integration tests use different IPs
170       stub_request(:get, "https://api.hostip.info/country.php?ip=0.0.0.0")
171       stub_request(:get, "https://api.hostip.info/country.php?ip=127.0.0.1")
172     end
173
174     def email_text_parts(message)
175       message.parts.each_with_object([]) do |part, text_parts|
176         if part.content_type.start_with?("text/")
177           text_parts.push(part)
178         elsif part.multipart?
179           text_parts.concat(email_text_parts(part))
180         end
181       end
182     end
183
184     def sign_in_as(user)
185       stub_hostip_requests
186       visit login_path
187       fill_in "username", :with => user.email
188       fill_in "password", :with => "test"
189       click_on "Login", :match => :first
190     end
191
192     def xml_for_node(node)
193       doc = OSM::API.new.get_xml_doc
194       doc.root << xml_node_for_node(node)
195       doc
196     end
197
198     def xml_node_for_node(node)
199       el = XML::Node.new "node"
200       el["id"] = node.id.to_s
201
202       OMHelper.add_metadata_to_xml_node(el, node, {}, {})
203
204       if node.visible?
205         el["lat"] = node.lat.to_s
206         el["lon"] = node.lon.to_s
207       end
208
209       OMHelper.add_tags_to_xml_node(el, node.node_tags)
210
211       el
212     end
213
214     def xml_for_way(way)
215       doc = OSM::API.new.get_xml_doc
216       doc.root << xml_node_for_way(way)
217       doc
218     end
219
220     def xml_node_for_way(way)
221       el = XML::Node.new "way"
222       el["id"] = way.id.to_s
223
224       OMHelper.add_metadata_to_xml_node(el, way, {}, {})
225
226       # make sure nodes are output in sequence_id order
227       ordered_nodes = []
228       way.way_nodes.each do |nd|
229         ordered_nodes[nd.sequence_id] = nd.node_id.to_s if nd.node&.visible?
230       end
231
232       ordered_nodes.each do |nd_id|
233         next unless nd_id && nd_id != "0"
234
235         node_el = XML::Node.new "nd"
236         node_el["ref"] = nd_id
237         el << node_el
238       end
239
240       OMHelper.add_tags_to_xml_node(el, way.way_tags)
241
242       el
243     end
244
245     def xml_for_relation(relation)
246       doc = OSM::API.new.get_xml_doc
247       doc.root << xml_node_for_relation(relation)
248       doc
249     end
250
251     def xml_node_for_relation(relation)
252       el = XML::Node.new "relation"
253       el["id"] = relation.id.to_s
254
255       OMHelper.add_metadata_to_xml_node(el, relation, {}, {})
256
257       relation.relation_members.each do |member|
258         member_el = XML::Node.new "member"
259         member_el["type"] = member.member_type.downcase
260         member_el["ref"] = member.member_id.to_s
261         member_el["role"] = member.member_role
262         el << member_el
263       end
264
265       OMHelper.add_tags_to_xml_node(el, relation.relation_tags)
266
267       el
268     end
269
270     class OMHelper
271       extend ObjectMetadata
272     end
273   end
274 end