@@ -1,16 +1,16 | |||
|
1 | 1 | # Redmine - project management software |
|
2 |
# Copyright (C) 2006-201 |
|
|
2 | # Copyright (C) 2006-2011 Jean-Philippe Lang | |
|
3 | 3 | # |
|
4 | 4 | # This program is free software; you can redistribute it and/or |
|
5 | 5 | # modify it under the terms of the GNU General Public License |
|
6 | 6 | # as published by the Free Software Foundation; either version 2 |
|
7 | 7 | # of the License, or (at your option) any later version. |
|
8 |
# |
|
|
8 | # | |
|
9 | 9 | # This program is distributed in the hope that it will be useful, |
|
10 | 10 | # but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
11 | 11 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
12 | 12 | # GNU General Public License for more details. |
|
13 |
# |
|
|
13 | # | |
|
14 | 14 | # You should have received a copy of the GNU General Public License |
|
15 | 15 | # along with this program; if not, write to the Free Software |
|
16 | 16 | # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. |
@@ -19,56 +19,56 require File.expand_path('../../../../test_helper', __FILE__) | |||
|
19 | 19 | |
|
20 | 20 | class ThemesTest < ActionController::IntegrationTest |
|
21 | 21 | fixtures :all |
|
22 | ||
|
22 | ||
|
23 | 23 | def setup |
|
24 | 24 | @theme = Redmine::Themes.themes.last |
|
25 | 25 | Setting.ui_theme = @theme.id |
|
26 | 26 | end |
|
27 | ||
|
27 | ||
|
28 | 28 | def teardown |
|
29 | 29 | Setting.ui_theme = '' |
|
30 | 30 | end |
|
31 | ||
|
31 | ||
|
32 | 32 | def test_application_css |
|
33 | 33 | get '/' |
|
34 | ||
|
34 | ||
|
35 | 35 | assert_response :success |
|
36 | 36 | assert_tag :tag => 'link', |
|
37 | 37 | :attributes => {:href => %r{^/themes/#{@theme.dir}/stylesheets/application.css}} |
|
38 | 38 | end |
|
39 | ||
|
39 | ||
|
40 | 40 | def test_without_theme_js |
|
41 | 41 | get '/' |
|
42 | ||
|
42 | ||
|
43 | 43 | assert_response :success |
|
44 | 44 | assert_no_tag :tag => 'script', |
|
45 | 45 | :attributes => {:src => %r{^/themes/#{@theme.dir}/javascripts/theme.js}} |
|
46 | 46 | end |
|
47 | ||
|
47 | ||
|
48 | 48 | def test_with_theme_js |
|
49 | 49 | # Simulates a theme.js |
|
50 | 50 | @theme.javascripts << 'theme' |
|
51 | 51 | get '/' |
|
52 | ||
|
52 | ||
|
53 | 53 | assert_response :success |
|
54 | 54 | assert_tag :tag => 'script', |
|
55 | 55 | :attributes => {:src => %r{^/themes/#{@theme.dir}/javascripts/theme.js}} |
|
56 | ||
|
56 | ||
|
57 | 57 | ensure |
|
58 | 58 | @theme.javascripts.delete 'theme' |
|
59 | 59 | end |
|
60 | ||
|
60 | ||
|
61 | 61 | def test_with_sub_uri |
|
62 | 62 | Redmine::Utils.relative_url_root = '/foo' |
|
63 | 63 | @theme.javascripts << 'theme' |
|
64 | 64 | get '/' |
|
65 | ||
|
65 | ||
|
66 | 66 | assert_response :success |
|
67 | 67 | assert_tag :tag => 'link', |
|
68 | 68 | :attributes => {:href => %r{^/foo/themes/#{@theme.dir}/stylesheets/application.css}} |
|
69 | 69 | assert_tag :tag => 'script', |
|
70 | 70 | :attributes => {:src => %r{^/foo/themes/#{@theme.dir}/javascripts/theme.js}} |
|
71 | ||
|
71 | ||
|
72 | 72 | ensure |
|
73 | 73 | Redmine::Utils.relative_url_root = '' |
|
74 | 74 | end |
General Comments 0
You need to be logged in to leave comments.
Login now