1 require File.dirname(__FILE__) + '/../test_helper'
3 class SiteControllerTest < ActionController::TestCase
7 # test all routes which lead to this controller
10 { :path => "/", :method => :get },
11 { :controller => "site", :action => "index" }
14 { :path => "/", :method => :post },
15 { :controller => "site", :action => "index" }
18 { :controller => "site", :action => "index" },
19 { :path => "/index.html", :method => :get }
22 { :path => "/edit", :method => :get },
23 { :controller => "site", :action => "edit" }
26 { :controller => "site", :action => "edit", :format => "html" },
27 { :path => "/edit.html", :method => :get }
30 { :path => "/copyright", :method => :get },
31 { :controller => "site", :action => "copyright" }
34 { :path => "/copyright/locale", :method => :get },
35 { :controller => "site", :action => "copyright", :copyright_locale => "locale" }
38 { :path => "/export", :method => :get },
39 { :controller => "site", :action => "export" }
42 { :controller => "site", :action => "export", :format => "html" },
43 { :path => "/export.html", :method => :get }
46 { :path => "/offline", :method => :get },
47 { :controller => "site", :action => "offline" }
50 { :path => "/key", :method => :post },
51 { :controller => "site", :action => "key" }
54 { :path => "/go/shortcode", :method => :get },
55 { :controller => "site", :action => "permalink", :code => "shortcode" }
59 ## Lets check that we can get all the pages without any errors
63 assert_response :success
64 assert_template 'index'
71 # Should be redirected
72 assert_redirected_to :controller => :user, :action => 'login', :referer => "/edit"
78 assert_response :success
79 assert_template 'index'
86 assert_response :success
87 assert_template 'offline'
88 assert_site_partials 0
91 def assert_site_partials(count = 1)
92 assert_template :partial => '_search', :count => count
93 assert_template :partial => '_key', :count => count
94 assert_template :partial => '_sidebar', :count => count
97 # test the right editor gets used when the user hasn't set a preference
98 def test_edit_without_preference
99 @request.cookies["_osm_username"] = users(:public_user).display_name
101 get(:edit, nil, { 'user' => users(:public_user).id })
102 assert_response :success
103 assert_template :partial => "_#{DEFAULT_EDITOR}", :count => 1
106 # and when they have...
107 def test_edit_with_preference
108 @request.cookies["_osm_username"] = users(:public_user).display_name
110 user = users(:public_user)
111 user.preferred_editor = "potlatch"
114 get(:edit, nil, { 'user' => user.id })
115 assert_response :success
116 assert_template :partial => "_potlatch", :count => 1
118 user = users(:public_user)
119 user.preferred_editor = "remote"
122 get(:edit, nil, { 'user' => user.id })
123 assert_response :success
124 assert_template "index"