]> git.openstreetmap.org Git - rails.git/blob - test/test_helper.rb
68b4a5018ffe5c2ee47d40d1832c39589501afdd
[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 require "webmock/minitest"
8 load "composite_primary_keys/fixtures.rb"
9
10 module ActiveSupport
11   class TestCase
12     include FactoryGirl::Syntax::Methods
13
14     # Load standard fixtures needed to test API methods
15     def self.api_fixtures
16       # print "setting up the api_fixtures"
17       fixtures :users, :user_roles
18       fixtures :changesets
19
20       fixtures :current_nodes, :nodes
21       set_fixture_class :current_nodes => Node
22       set_fixture_class :nodes => OldNode
23
24       fixtures :current_ways
25       set_fixture_class :current_ways => Way
26
27       fixtures :current_way_nodes
28       set_fixture_class :current_way_nodes => WayNode
29
30       fixtures :ways
31       set_fixture_class :ways => OldWay
32
33       fixtures :way_nodes
34       set_fixture_class :way_nodes => OldWayNode
35
36       fixtures :current_relations
37       set_fixture_class :current_relations => Relation
38
39       fixtures :current_relation_members
40       set_fixture_class :current_relation_members => RelationMember
41
42       fixtures :relations
43       set_fixture_class :relations => OldRelation
44
45       fixtures :relation_members
46       set_fixture_class :relation_members => OldRelationMember
47
48       fixtures :gpx_files, :gps_points, :gpx_file_tags
49       set_fixture_class :gpx_files => Trace
50       set_fixture_class :gps_points => Tracepoint
51       set_fixture_class :gpx_file_tags => Tracetag
52
53       fixtures :client_applications
54
55       fixtures :redactions
56     end
57
58     ##
59     # takes a block which is executed in the context of a different
60     # ActionController instance. this is used so that code can call methods
61     # on the node controller whilst testing the old_node controller.
62     def with_controller(new_controller)
63       controller_save = @controller
64       begin
65         @controller = new_controller
66         yield
67       ensure
68         @controller = controller_save
69       end
70     end
71
72     ##
73     # work round minitest insanity that causes it to tell you
74     # to use assert_nil to test for nil, which is fine if you're
75     # comparing to a nil constant but not if you're comparing
76     # an expression that might be nil sometimes
77     def assert_equal_allowing_nil(exp, act, msg = nil)
78       if exp.nil?
79         assert_nil act, msg
80       else
81         assert_equal exp, act, msg
82       end
83     end
84
85     ##
86     # for some reason assert_equal a, b fails when the relations are
87     # actually equal, so this method manually checks the fields...
88     def assert_relations_are_equal(a, b)
89       assert_not_nil a, "first relation is not allowed to be nil"
90       assert_not_nil b, "second relation #{a.id} is not allowed to be nil"
91       assert_equal a.id, b.id, "relation IDs"
92       assert_equal a.changeset_id, b.changeset_id, "changeset ID on relation #{a.id}"
93       assert_equal a.visible, b.visible, "visible on relation #{a.id}, #{a.visible.inspect} != #{b.visible.inspect}"
94       assert_equal a.version, b.version, "version on relation #{a.id}"
95       assert_equal a.tags, b.tags, "tags on relation #{a.id}"
96       assert_equal a.members, b.members, "member references on relation #{a.id}"
97     end
98
99     ##
100     # for some reason assert_equal a, b fails when the ways are actually
101     # equal, so this method manually checks the fields...
102     def assert_ways_are_equal(a, b)
103       assert_not_nil a, "first way is not allowed to be nil"
104       assert_not_nil b, "second way #{a.id} is not allowed to be nil"
105       assert_equal a.id, b.id, "way IDs"
106       assert_equal a.changeset_id, b.changeset_id, "changeset ID on way #{a.id}"
107       assert_equal a.visible, b.visible, "visible on way #{a.id}, #{a.visible.inspect} != #{b.visible.inspect}"
108       assert_equal a.version, b.version, "version on way #{a.id}"
109       assert_equal a.tags, b.tags, "tags on way #{a.id}"
110       assert_equal a.nds, b.nds, "node references on way #{a.id}"
111     end
112
113     ##
114     # for some reason a==b is false, but there doesn't seem to be any
115     # difference between the nodes, so i'm checking all the attributes
116     # manually and blaming it on ActiveRecord
117     def assert_nodes_are_equal(a, b)
118       assert_equal a.id, b.id, "node IDs"
119       assert_equal a.latitude, b.latitude, "latitude on node #{a.id}"
120       assert_equal a.longitude, b.longitude, "longitude on node #{a.id}"
121       assert_equal a.changeset_id, b.changeset_id, "changeset ID on node #{a.id}"
122       assert_equal a.visible, b.visible, "visible on node #{a.id}"
123       assert_equal a.version, b.version, "version on node #{a.id}"
124       assert_equal a.tags, b.tags, "tags on node #{a.id}"
125     end
126
127     ##
128     # set request headers for HTTP basic authentication
129     def basic_authorization(user, pass)
130       @request.env["HTTP_AUTHORIZATION"] = format("Basic %s", Base64.encode64("#{user}:#{pass}"))
131     end
132
133     ##
134     # set request readers to ask for a particular error format
135     def error_format(format)
136       @request.env["HTTP_X_ERROR_FORMAT"] = format
137     end
138
139     ##
140     # set the raw body to be sent with a POST request
141     def content(c)
142       @request.env["RAW_POST_DATA"] = c.to_s
143     end
144
145     ##
146     # Used to check that the error header and the forbidden responses are given
147     # when the owner of the changset has their data not marked as public
148     def assert_require_public_data(msg = "Shouldn't be able to use API when the user's data is not public")
149       assert_response :forbidden, msg
150       assert_equal @response.headers["Error"], "You must make your edits public to upload new data", "Wrong error message"
151     end
152
153     ##
154     # Not sure this is the best response we could give
155     def assert_inactive_user(msg = "an inactive user shouldn't be able to access the API")
156       assert_response :unauthorized, msg
157       # assert_equal @response.headers['Error'], ""
158     end
159
160     ##
161     # Check for missing translations in an HTML response
162     def assert_no_missing_translations(msg = "")
163       assert_select "span[class=translation_missing]", false, "Missing translation #{msg}"
164     end
165
166     ##
167     # execute a block with a given set of HTTP responses stubbed
168     def with_http_stubs(stubs_file)
169       stubs = YAML.load_file(File.expand_path("../http/#{stubs_file}.yml", __FILE__))
170       stubs.each do |url, response|
171         stub_request(:get, Regexp.new(Regexp.quote(url))).to_return(:status => response["code"], :body => response["body"])
172       end
173
174       yield
175     end
176
177     def stub_gravatar_request(email, status = 200, body = nil)
178       hash = Digest::MD5.hexdigest(email.downcase)
179       url = "https://www.gravatar.com/avatar/#{hash}?d=404"
180       stub_request(:get, url).and_return(:status => status, :body => body)
181     end
182
183     def stub_hostip_requests
184       # Controller tests and integration tests use different IPs
185       stub_request(:get, "http://api.hostip.info/country.php?ip=0.0.0.0")
186       stub_request(:get, "http://api.hostip.info/country.php?ip=127.0.0.1")
187     end
188
189     def email_text_parts(message)
190       text_parts = []
191       message.parts.each do |part|
192         if part.content_type.start_with?("text/")
193           text_parts.push(part)
194         elsif part.multipart?
195           text_parts.concat(email_text_parts(part))
196         end
197       end
198       text_parts
199     end
200   end
201 end