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