2 Coveralls.wear!("rails")
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"
11 include FactoryGirl::Syntax::Methods
13 # Load standard fixtures needed to test API methods
15 # print "setting up the api_fixtures"
16 fixtures :users, :user_roles
17 fixtures :changesets, :changeset_tags
19 fixtures :current_nodes, :nodes
20 set_fixture_class :current_nodes => Node
21 set_fixture_class :nodes => OldNode
23 fixtures :current_node_tags, :node_tags
24 set_fixture_class :current_node_tags => NodeTag
25 set_fixture_class :node_tags => OldNodeTag
27 fixtures :current_ways
28 set_fixture_class :current_ways => Way
30 fixtures :current_way_nodes, :current_way_tags
31 set_fixture_class :current_way_nodes => WayNode
32 set_fixture_class :current_way_tags => WayTag
35 set_fixture_class :ways => OldWay
37 fixtures :way_nodes, :way_tags
38 set_fixture_class :way_nodes => OldWayNode
39 set_fixture_class :way_tags => OldWayTag
41 fixtures :current_relations
42 set_fixture_class :current_relations => Relation
44 fixtures :current_relation_members, :current_relation_tags
45 set_fixture_class :current_relation_members => RelationMember
46 set_fixture_class :current_relation_tags => RelationTag
49 set_fixture_class :relations => OldRelation
51 fixtures :relation_members, :relation_tags
52 set_fixture_class :relation_members => OldRelationMember
53 set_fixture_class :relation_tags => OldRelationTag
55 fixtures :client_applications
61 # takes a block which is executed in the context of a different
62 # ActionController instance. this is used so that code can call methods
63 # on the node controller whilst testing the old_node controller.
64 def with_controller(new_controller)
65 controller_save = @controller
67 @controller = new_controller
70 @controller = controller_save
75 # for some reason assert_equal a, b fails when the relations are
76 # actually equal, so this method manually checks the fields...
77 def assert_relations_are_equal(a, b)
78 assert_not_nil a, "first relation is not allowed to be nil"
79 assert_not_nil b, "second relation #{a.id} is not allowed to be nil"
80 assert_equal a.id, b.id, "relation IDs"
81 assert_equal a.changeset_id, b.changeset_id, "changeset ID on relation #{a.id}"
82 assert_equal a.visible, b.visible, "visible on relation #{a.id}, #{a.visible.inspect} != #{b.visible.inspect}"
83 assert_equal a.version, b.version, "version on relation #{a.id}"
84 assert_equal a.tags, b.tags, "tags on relation #{a.id}"
85 assert_equal a.members, b.members, "member references on relation #{a.id}"
89 # for some reason assert_equal a, b fails when the ways are actually
90 # equal, so this method manually checks the fields...
91 def assert_ways_are_equal(a, b)
92 assert_not_nil a, "first way is not allowed to be nil"
93 assert_not_nil b, "second way #{a.id} is not allowed to be nil"
94 assert_equal a.id, b.id, "way IDs"
95 assert_equal a.changeset_id, b.changeset_id, "changeset ID on way #{a.id}"
96 assert_equal a.visible, b.visible, "visible on way #{a.id}, #{a.visible.inspect} != #{b.visible.inspect}"
97 assert_equal a.version, b.version, "version on way #{a.id}"
98 assert_equal a.tags, b.tags, "tags on way #{a.id}"
99 assert_equal a.nds, b.nds, "node references on way #{a.id}"
103 # for some reason a==b is false, but there doesn't seem to be any
104 # difference between the nodes, so i'm checking all the attributes
105 # manually and blaming it on ActiveRecord
106 def assert_nodes_are_equal(a, b)
107 assert_equal a.id, b.id, "node IDs"
108 assert_equal a.latitude, b.latitude, "latitude on node #{a.id}"
109 assert_equal a.longitude, b.longitude, "longitude on node #{a.id}"
110 assert_equal a.changeset_id, b.changeset_id, "changeset ID on node #{a.id}"
111 assert_equal a.visible, b.visible, "visible on node #{a.id}"
112 assert_equal a.version, b.version, "version on node #{a.id}"
113 assert_equal a.tags, b.tags, "tags on node #{a.id}"
117 # set request headers for HTTP basic authentication
118 def basic_authorization(user, pass)
119 @request.env["HTTP_AUTHORIZATION"] = format("Basic %s", Base64.encode64("#{user}:#{pass}"))
123 # set request readers to ask for a particular error format
124 def error_format(format)
125 @request.env["HTTP_X_ERROR_FORMAT"] = format
129 # set the raw body to be sent with a POST request
131 @request.env["RAW_POST_DATA"] = c.to_s
135 # Used to check that the error header and the forbidden responses are given
136 # when the owner of the changset has their data not marked as public
137 def assert_require_public_data(msg = "Shouldn't be able to use API when the user's data is not public")
138 assert_response :forbidden, msg
139 assert_equal @response.headers["Error"], "You must make your edits public to upload new data", "Wrong error message"
143 # Not sure this is the best response we could give
144 def assert_inactive_user(msg = "an inactive user shouldn't be able to access the API")
145 assert_response :unauthorized, msg
146 # assert_equal @response.headers['Error'], ""
150 # Check for missing translations in an HTML response
151 def assert_no_missing_translations(msg = "")
152 assert_select "span[class=translation_missing]", false, "Missing translation #{msg}"
156 # execute a block with a given set of HTTP responses stubbed
157 def with_http_stubs(stubs_file)
158 http_client_save = OSM.http_client
161 stubs = YAML.load_file(File.expand_path("../http/#{stubs_file}.yml", __FILE__))
163 OSM.http_client = Faraday.new do |builder|
164 builder.adapter :test do |stub|
165 stubs.each do |url, response|
166 stub.get(url) { |_env| [response["code"], {}, response["body"]] }
173 OSM.http_client = http_client_save