]> git.openstreetmap.org Git - rails.git/blob - test/functional/site_controller_test.rb
Improve functional tests for user preferences
[rails.git] / test / functional / site_controller_test.rb
1 require File.dirname(__FILE__) + '/../test_helper'
2
3 class SiteControllerTest < ActionController::TestCase
4   api_fixtures
5
6   ##
7   # test all routes which lead to this controller
8   def test_routes
9     assert_routing(
10       { :path => "/", :method => :get },
11       { :controller => "site", :action => "index" }
12     )
13     assert_routing(
14       { :path => "/", :method => :post },
15       { :controller => "site", :action => "index" }
16     )
17     assert_recognizes(
18       { :controller => "site", :action => "index" },
19       { :path => "/index.html", :method => :get }
20     )
21     assert_routing(
22       { :path => "/edit", :method => :get },
23       { :controller => "site", :action => "edit" }
24     )
25     assert_recognizes(
26       { :controller => "site", :action => "edit", :format => "html" },
27       { :path => "/edit.html", :method => :get }
28     )
29     assert_routing(
30       { :path => "/copyright", :method => :get },
31       { :controller => "site", :action => "copyright" }
32     )
33     assert_routing(
34       { :path => "/copyright/locale", :method => :get },
35       { :controller => "site", :action => "copyright", :copyright_locale => "locale" }
36     )
37     assert_routing(
38       { :path => "/export", :method => :get },
39       { :controller => "site", :action => "index", :export => true }
40     )
41     assert_recognizes(
42       { :controller => "site", :action => "index", :export => true, :format => "html" },
43       { :path => "/export.html", :method => :get }
44     )
45     assert_routing(
46       { :path => "/offline", :method => :get },
47       { :controller => "site", :action => "offline" }
48     )
49     assert_routing(
50       { :path => "/key", :method => :get },
51       { :controller => "site", :action => "key" }
52     )
53     assert_routing(
54       { :path => "/go/shortcode", :method => :get },
55       { :controller => "site", :action => "permalink", :code => "shortcode" }
56     )
57     assert_routing(
58       { :path => "/preview/formatname", :method => :get },
59       { :controller => "site", :action => "preview", :format => "formatname" }
60     )
61     assert_routing(
62       { :path => "/id", :method => :get },
63       { :controller => "site", :action => "id" }
64     )
65   end
66
67   ## Lets check that we can get all the pages without any errors  
68   # Get the index
69   def test_index
70     get :index
71     assert_response :success
72     assert_template 'index'
73     assert_site_partials
74   end
75   
76   # Get the edit page
77   def test_edit
78     get :edit
79     # Should be redirected
80     assert_redirected_to :controller => :user, :action => 'login', :referer => "/edit"
81   end
82   
83   # Offline page
84   def test_offline
85     get :offline
86     assert_response :success
87     assert_template 'offline'
88     assert_site_partials 0
89   end
90   
91   def assert_site_partials(count = 1)
92     assert_template :partial => '_search', :count => count
93     assert_template :partial => '_sidebar', :count => count
94   end
95
96   # test the right editor gets used when the user hasn't set a preference
97   def test_edit_without_preference
98     @request.cookies["_osm_username"] = users(:public_user).display_name
99
100     get(:edit, nil, { 'user' => users(:public_user).id })
101     assert_response :success
102     assert_template :partial => "_#{DEFAULT_EDITOR}", :count => 1
103   end
104
105   # and when they have...
106   def test_edit_with_preference
107     @request.cookies["_osm_username"] = users(:public_user).display_name
108
109     user = users(:public_user)
110     user.preferred_editor = "potlatch"
111     user.save!
112
113     get(:edit, nil, { 'user' => user.id })
114     assert_response :success
115     assert_template :partial => "_potlatch", :count => 1
116
117     user = users(:public_user)
118     user.preferred_editor = "remote"
119     user.save!
120
121     get(:edit, nil, { 'user' => user.id })
122     assert_response :success
123     assert_template "index"
124   end
125
126   def test_edit_with_node
127     @request.cookies["_osm_username"] = users(:public_user).display_name
128
129     user = users(:public_user)
130     node = current_nodes(:visible_node)
131
132     get :edit, { :node => node.id }, { 'user' => user.id }
133     assert_equal 1.0, assigns(:lat)
134     assert_equal 1.0, assigns(:lon)
135   end
136
137   def test_edit_with_way
138     @request.cookies["_osm_username"] = users(:public_user).display_name
139
140     user = users(:public_user)
141     way  = current_ways(:visible_way)
142
143     get :edit, { :way => way.id }, { 'user' => user.id }
144     assert_equal 3.0, assigns(:lat)
145     assert_equal 3.0, assigns(:lon)
146   end
147
148   def test_edit_with_gpx
149     @request.cookies["_osm_username"] = users(:public_user).display_name
150
151     user = users(:public_user)
152     gpx  = gpx_files(:public_trace_file)
153
154     get :edit, { :gpx => gpx.id }, { 'user' => user.id }
155     assert_equal 1.0, assigns(:lat)
156     assert_equal 1.0, assigns(:lon)
157   end
158 end