1 require File.dirname(__FILE__) + '/../test_helper'
2 require 'node_controller'
4 # Re-raise errors caught by the controller.
5 class NodeController; def rescue_action(e) raise e end; end
7 class NodeControllerTest < Test::Unit::TestCase
11 @controller = NodeController.new
12 @request = ActionController::TestRequest.new
13 @response = ActionController::TestResponse.new
17 # cannot read password from fixture as it is stored as MD5 digest
18 basic_authorization("test@openstreetmap.org", "test");
19 # create a node with random lat/lon
20 lat = rand(100)-50 + rand
21 lon = rand(100)-50 + rand
22 content("<osm><node lat='#{lat}' lon='#{lon}' /></osm>")
25 assert_response :success, "node upload did not return success status"
26 # read id of created node and search for it
27 nodeid = @response.body
28 checknode = Node.find(nodeid)
29 assert_not_nil checknode, "uploaded node not found in data base after upload"
31 assert_in_delta lat, checknode.latitude, 1E-8, "saved node does not match requested latitude"
32 assert_in_delta lon, checknode.longitude, 1E-8, "saved node does not match requested longitude"
33 assert_equal users(:normal_user).id, checknode.user_id, "saved node does not belong to user that created it"
34 assert_equal true, checknode.visible, "saved node is not visible"
38 # check that a visible node is returned properly
39 get :read, :id => current_nodes(:visible_node).id
40 assert_response :success
42 # check that an invisible node is not returned
43 get :read, :id => current_nodes(:invisible_node).id
46 # check chat a non-existent node is not returned
48 assert_response :not_found
51 # this tests deletion restrictions - basic deletion is tested in the unit
55 # first try to delete node without auth
56 delete :delete, :id => current_nodes(:visible_node).id
57 assert_response :unauthorized
60 basic_authorization("test@openstreetmap.org", "test");
63 delete :delete, :id => current_nodes(:visible_node).id
64 assert_response :success
66 # this won't work since the node is already deleted
67 delete :delete, :id => current_nodes(:invisible_node).id
70 # this won't work since the node never existed
71 delete :delete, :id => 0
72 assert_response :not_found
74 # this won't work since the node is in use
75 delete :delete, :id => current_nodes(:used_node_1).id
76 assert_response :precondition_failed
80 def basic_authorization(user, pass)
81 @request.env["HTTP_AUTHORIZATION"] = "Basic %s" % Base64.encode64("#{user}:#{pass}")
85 @request.env["RAW_POST_DATA"] = c