]> git.openstreetmap.org Git - rails.git/blob - test/test_helper.rb
Tidy up user preferences controller
[rails.git] / test / test_helper.rb
1 ENV["RAILS_ENV"] = "test"
2 require File.expand_path('../../config/environment', __FILE__)
3 require 'rails/test_help'
4 load 'composite_primary_keys/fixtures.rb'
5
6 class ActiveSupport::TestCase
7   # Load standard fixtures needed to test API methods
8   def self.api_fixtures
9     #print "setting up the api_fixtures"
10     fixtures :users, :user_roles, :changesets, :changeset_tags
11
12     fixtures :current_nodes, :nodes
13     set_fixture_class :current_nodes => 'Node'
14     set_fixture_class :nodes => 'OldNode'
15
16     fixtures  :current_node_tags,:node_tags
17     set_fixture_class :current_node_tags => 'NodeTag'
18     set_fixture_class :node_tags => 'OldNodeTag'
19
20     fixtures :current_ways
21     set_fixture_class :current_ways => 'Way'
22
23     fixtures :current_way_nodes, :current_way_tags
24     set_fixture_class :current_way_nodes => 'WayNode'
25     set_fixture_class :current_way_tags => 'WayTag'
26
27     fixtures :ways
28     set_fixture_class :ways => 'OldWay'
29
30     fixtures :way_nodes, :way_tags
31     set_fixture_class :way_nodes => 'OldWayNode'
32     set_fixture_class :way_tags => 'OldWayTag'
33
34     fixtures :current_relations
35     set_fixture_class :current_relations => 'Relation'
36
37     fixtures :current_relation_members, :current_relation_tags
38     set_fixture_class :current_relation_members => 'RelationMember'
39     set_fixture_class :current_relation_tags => 'RelationTag'
40
41     fixtures :relations
42     set_fixture_class :relations => 'OldRelation'
43
44     fixtures :relation_members, :relation_tags
45     set_fixture_class :relation_members => 'OldRelationMember'
46     set_fixture_class :relation_tags => 'OldRelationTag'
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   # for some reason assert_equal a, b fails when the ways are actually
74   # equal, so this method manually checks the fields...
75   def assert_ways_are_equal(a, b)
76     assert_not_nil a, "first way is not allowed to be nil"
77     assert_not_nil b, "second way #{a.id} is not allowed to be nil"
78     assert_equal a.id, b.id, "way IDs"
79     assert_equal a.changeset_id, b.changeset_id, "changeset ID on way #{a.id}"
80     assert_equal a.visible, b.visible, "visible on way #{a.id}, #{a.visible.inspect} != #{b.visible.inspect}"
81     assert_equal a.version, b.version, "version on way #{a.id}"
82     assert_equal a.tags, b.tags, "tags on way #{a.id}"
83     assert_equal a.nds, b.nds, "node references on way #{a.id}"
84   end
85
86   ##
87   # for some reason a==b is false, but there doesn't seem to be any 
88   # difference between the nodes, so i'm checking all the attributes 
89   # manually and blaming it on ActiveRecord
90   def assert_nodes_are_equal(a, b)
91     assert_equal a.id, b.id, "node IDs"
92     assert_equal a.latitude, b.latitude, "latitude on node #{a.id}"
93     assert_equal a.longitude, b.longitude, "longitude on node #{a.id}"
94     assert_equal a.changeset_id, b.changeset_id, "changeset ID on node #{a.id}"
95     assert_equal a.visible, b.visible, "visible on node #{a.id}"
96     assert_equal a.version, b.version, "version on node #{a.id}"
97     assert_equal a.tags, b.tags, "tags on node #{a.id}"
98   end
99
100   def basic_authorization(user, pass)
101     @request.env["HTTP_AUTHORIZATION"] = "Basic %s" % Base64.encode64("#{user}:#{pass}")
102   end
103
104   def error_format(format)
105     @request.env["HTTP_X_ERROR_FORMAT"] = format
106   end
107
108   def content(c)
109     @request.env["RAW_POST_DATA"] = c.to_s
110   end
111   
112   # Used to check that the error header and the forbidden responses are given
113   # when the owner of the changset has their data not marked as public
114   def assert_require_public_data(msg = "Shouldn't be able to use API when the user's data is not public")
115     assert_response :forbidden, msg
116     assert_equal @response.headers['Error'], "You must make your edits public to upload new data", "Wrong error message"
117   end
118   
119   # Not sure this is the best response we could give
120   def assert_inactive_user(msg = "an inactive user shouldn't be able to access the API")
121     assert_response :unauthorized, msg
122     #assert_equal @response.headers['Error'], ""
123   end
124   
125   def assert_no_missing_translations(msg="")
126     assert_select "span[class=translation_missing]", false, "Missing translation #{msg}"
127   end
128
129   # Set things up for OpenID testing
130   def openid_setup
131     begin
132       # Test if the ROTS (Ruby OpenID Test Server) is already running
133       rots_response = Net::HTTP.get_response(URI.parse("http://localhost:1123/"))
134     rescue
135       # It isn't, so start a new instance.
136       rots = IO.popen("#{Rails.root}/vendor/gems/rots-0.2.1/bin/rots --silent")
137
138       # Wait for up to 30 seconds for the server to start and respond before continuing
139       for i in (1 .. 30)
140         begin
141           sleep 1
142           rots_response = Net::HTTP.get_response(URI.parse("http://localhost:1123/"))
143           # If the rescue block doesn't fire, ROTS is up and running and we can continue
144           break
145         rescue
146           # If the connection failed, do nothing and repeat the loop
147         end
148       end
149
150       # Arrange to kill the process when we exit - note that we need
151       # to kill it really har due to a bug in ROTS
152       Kernel.at_exit do
153         Process.kill("KILL", rots.pid)
154       end
155     end
156   end
157
158   def openid_request(openid_request_uri)
159     openid_response = Net::HTTP.get_response(URI.parse(openid_request_uri))
160     openid_response_uri = URI(openid_response['Location'])
161     openid_response_qs = Rack::Utils.parse_query(openid_response_uri.query)
162
163     return openid_response_qs
164   end
165
166   
167   # Add more helper methods to be used by all tests here...
168 end