]> git.openstreetmap.org Git - rails.git/blob - test/functional/site_controller_test.rb
Improve presentation of homepage
[rails.git] / test / functional / site_controller_test.rb
1 require File.dirname(__FILE__) + '/../test_helper'
2
3 class SiteControllerTest < ActionController::TestCase
4   fixtures :users
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 => "export" }
40     )
41     assert_recognizes(
42       { :controller => "site", :action => "export", :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 => :post },
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   end
62
63   ## Lets check that we can get all the pages without any errors  
64   # Get the index
65   def test_index
66     get :index
67     assert_response :success
68     assert_template 'index'
69     assert_site_partials
70   end
71   
72   # Get the edit page
73   def test_edit
74     get :edit
75     # Should be redirected
76     assert_redirected_to :controller => :user, :action => 'login', :referer => "/edit"
77   end
78   
79   # Get the export page
80   def test_export
81     get :export
82     assert_response :success
83     assert_template 'index'
84     assert_site_partials
85   end
86   
87   # Offline page
88   def test_offline
89     get :offline
90     assert_response :success
91     assert_template 'offline'
92     assert_site_partials 0
93   end
94   
95   def assert_site_partials(count = 1)
96     assert_template :partial => '_search', :count => count
97     assert_template :partial => '_key', :count => count
98     assert_template :partial => '_sidebar', :count => count
99   end
100
101   # test the right editor gets used when the user hasn't set a preference
102   def test_edit_without_preference
103     @request.cookies["_osm_username"] = users(:public_user).display_name
104
105     get(:edit, nil, { 'user' => users(:public_user).id })
106     assert_response :success
107     assert_template :partial => "_#{DEFAULT_EDITOR}", :count => 1
108   end
109
110   # and when they have...
111   def test_edit_with_preference
112     @request.cookies["_osm_username"] = users(:public_user).display_name
113
114     user = users(:public_user)
115     user.preferred_editor = "potlatch"
116     user.save!
117
118     get(:edit, nil, { 'user' => user.id })
119     assert_response :success
120     assert_template :partial => "_potlatch", :count => 1
121
122     user = users(:public_user)
123     user.preferred_editor = "remote"
124     user.save!
125
126     get(:edit, nil, { 'user' => user.id })
127     assert_response :success
128     assert_template "index"
129   end    
130 end