To check out this repository please hg clone the following URL, or open the URL using EasyMercurial or your preferred Mercurial client.
root / test / integration / lib / redmine / themes_test.rb @ 442:753f1380d6bc
History | View | Annotate | Download (2.18 KB)
| 1 |
# Redmine - project management software
|
|---|---|
| 2 |
# Copyright (C) 2006-2010 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 ThemesTest < ActionController::IntegrationTest |
| 21 |
fixtures :all
|
| 22 |
|
| 23 |
def setup |
| 24 |
@theme = Redmine::Themes.themes.last |
| 25 |
Setting.ui_theme = @theme.id |
| 26 |
end
|
| 27 |
|
| 28 |
def teardown |
| 29 |
Setting.ui_theme = '' |
| 30 |
end
|
| 31 |
|
| 32 |
def test_application_css |
| 33 |
get '/'
|
| 34 |
|
| 35 |
assert_response :success
|
| 36 |
assert_tag :tag => 'link', |
| 37 |
:attributes => {:href => %r{^/themes/#{@theme.dir}/stylesheets/application.css}} |
| 38 |
end
|
| 39 |
|
| 40 |
def test_without_theme_js |
| 41 |
get '/'
|
| 42 |
|
| 43 |
assert_response :success
|
| 44 |
assert_no_tag :tag => 'script', |
| 45 |
:attributes => {:src => %r{^/themes/#{@theme.dir}/javascripts/theme.js}} |
| 46 |
end
|
| 47 |
|
| 48 |
def test_with_theme_js |
| 49 |
# Simulates a theme.js
|
| 50 |
@theme.javascripts << 'theme' |
| 51 |
get '/'
|
| 52 |
|
| 53 |
assert_response :success
|
| 54 |
assert_tag :tag => 'script', |
| 55 |
:attributes => {:src => %r{^/themes/#{@theme.dir}/javascripts/theme.js}} |
| 56 |
|
| 57 |
ensure
|
| 58 |
@theme.javascripts.delete 'theme' |
| 59 |
end
|
| 60 |
|
| 61 |
def test_with_sub_uri |
| 62 |
Redmine::Utils.relative_url_root = '/foo' |
| 63 |
@theme.javascripts << 'theme' |
| 64 |
get '/'
|
| 65 |
|
| 66 |
assert_response :success
|
| 67 |
assert_tag :tag => 'link', |
| 68 |
:attributes => {:href => %r{^/foo/themes/#{@theme.dir}/stylesheets/application.css}} |
| 69 |
assert_tag :tag => 'script', |
| 70 |
:attributes => {:src => %r{^/foo/themes/#{@theme.dir}/javascripts/theme.js}} |
| 71 |
|
| 72 |
ensure
|
| 73 |
Redmine::Utils.relative_url_root = '' |
| 74 |
end
|
| 75 |
end
|