To check out this repository please hg clone the following URL, or open the URL using EasyMercurial or your preferred Mercurial client.
root / .svn / pristine / 0c / 0c52d5a82094593c338acef265e5dd3106b35b1d.svn-base @ 1298:4f746d8966dd
History | View | Annotate | Download (2.26 KB)
| 1 |
# Redmine - project management software |
|---|---|
| 2 |
# Copyright (C) 2006-2012 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 |
:workflows |
| 31 |
|
| 32 |
def test_set_localization |
| 33 |
Setting.default_language = 'en' |
| 34 |
|
| 35 |
# a french user |
| 36 |
get 'projects', { }, 'HTTP_ACCEPT_LANGUAGE' => 'fr,fr-fr;q=0.8,en-us;q=0.5,en;q=0.3'
|
| 37 |
assert_response :success |
| 38 |
assert_tag :tag => 'h2', :content => 'Projets' |
| 39 |
assert_equal :fr, current_language |
| 40 |
|
| 41 |
# then an italien user |
| 42 |
get 'projects', { }, 'HTTP_ACCEPT_LANGUAGE' => 'it;q=0.8,en-us;q=0.5,en;q=0.3'
|
| 43 |
assert_response :success |
| 44 |
assert_tag :tag => 'h2', :content => 'Progetti' |
| 45 |
assert_equal :it, current_language |
| 46 |
|
| 47 |
# not a supported language: default language should be used |
| 48 |
get 'projects', { }, 'HTTP_ACCEPT_LANGUAGE' => 'zz'
|
| 49 |
assert_response :success |
| 50 |
assert_tag :tag => 'h2', :content => 'Projects' |
| 51 |
end |
| 52 |
|
| 53 |
def test_token_based_access_should_not_start_session |
| 54 |
# issue of a private project |
| 55 |
get 'issues/4.atom' |
| 56 |
assert_response 302 |
| 57 |
|
| 58 |
rss_key = User.find(2).rss_key |
| 59 |
get "issues/4.atom?key=#{rss_key}"
|
| 60 |
assert_response 200 |
| 61 |
assert_nil session[:user_id] |
| 62 |
end |
| 63 |
|
| 64 |
def test_missing_template_should_respond_with_404 |
| 65 |
get '/login.png' |
| 66 |
assert_response 404 |
| 67 |
end |
| 68 |
end |