comparison .svn/pristine/c3/c3434dc1252ecfbed9052875659c7477dd01f91d.svn-base @ 1295:622f24f53b42 redmine-2.3

Update to Redmine SVN revision 11972 on 2.3-stable branch
author Chris Cannam
date Fri, 14 Jun 2013 09:02:21 +0100
parents
children
comparison
equal deleted inserted replaced
1294:3e4c3460b6ca 1295:622f24f53b42
1 # Redmine - project management software
2 # Copyright (C) 2006-2013 Jean-Philippe Lang
3 #
4 # This program is free software; you can redistribute it and/or
5 # modify it under the terms of the GNU General Public License
6 # as published by the Free Software Foundation; either version 2
7 # of the License, or (at your option) any later version.
8 #
9 # This program is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 # GNU General Public License for more details.
13 #
14 # You should have received a copy of the GNU General Public License
15 # along with this program; if not, write to the Free Software
16 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
17
18 require File.expand_path('../../test_helper', __FILE__)
19
20 class ApplicationTest < ActionController::IntegrationTest
21 include Redmine::I18n
22
23 fixtures :projects, :trackers, :issue_statuses, :issues,
24 :enumerations, :users, :issue_categories,
25 :projects_trackers,
26 :roles,
27 :member_roles,
28 :members,
29 :enabled_modules
30
31 def test_set_localization
32 Setting.default_language = 'en'
33
34 # a french user
35 get 'projects', { }, 'HTTP_ACCEPT_LANGUAGE' => 'fr,fr-fr;q=0.8,en-us;q=0.5,en;q=0.3'
36 assert_response :success
37 assert_tag :tag => 'h2', :content => 'Projets'
38 assert_equal :fr, current_language
39
40 # then an italien user
41 get 'projects', { }, 'HTTP_ACCEPT_LANGUAGE' => 'it;q=0.8,en-us;q=0.5,en;q=0.3'
42 assert_response :success
43 assert_tag :tag => 'h2', :content => 'Progetti'
44 assert_equal :it, current_language
45
46 # not a supported language: default language should be used
47 get 'projects', { }, 'HTTP_ACCEPT_LANGUAGE' => 'zz'
48 assert_response :success
49 assert_tag :tag => 'h2', :content => 'Projects'
50 end
51
52 def test_token_based_access_should_not_start_session
53 # issue of a private project
54 get 'issues/4.atom'
55 assert_response 302
56
57 rss_key = User.find(2).rss_key
58 get "issues/4.atom?key=#{rss_key}"
59 assert_response 200
60 assert_nil session[:user_id]
61 end
62
63 def test_missing_template_should_respond_with_404
64 get '/login.png'
65 assert_response 404
66 end
67 end