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