comparison .svn/pristine/b7/b789966309eb822c678528d8a6d3affdf01146bc.svn-base @ 1298:4f746d8966dd redmine_2.3_integration

Merge from redmine-2.3 branch to create new branch redmine-2.3-integration
author Chris Cannam
date Fri, 14 Jun 2013 09:28:30 +0100
parents 622f24f53b42
children
comparison
equal deleted inserted replaced
1297:0a574315af3e 1298:4f746d8966dd
1 # encoding: utf-8
2 #
3 # Redmine - project management software
4 # Copyright (C) 2006-2013 Jean-Philippe Lang
5 #
6 # This program is free software; you can redistribute it and/or
7 # modify it under the terms of the GNU General Public License
8 # as published by the Free Software Foundation; either version 2
9 # of the License, or (at your option) any later version.
10 #
11 # This program is distributed in the hope that it will be useful,
12 # but WITHOUT ANY WARRANTY; without even the implied warranty of
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 # GNU General Public License for more details.
15 #
16 # You should have received a copy of the GNU General Public License
17 # along with this program; if not, write to the Free Software
18 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
19
20 require File.expand_path('../../test_helper', __FILE__)
21
22 class WikiTest < ActiveSupport::TestCase
23 fixtures :projects, :wikis, :wiki_pages, :wiki_contents, :wiki_content_versions
24
25 def test_create
26 wiki = Wiki.new(:project => Project.find(2))
27 assert !wiki.save
28 assert_equal 1, wiki.errors.count
29
30 wiki.start_page = "Start page"
31 assert wiki.save
32 end
33
34 def test_update
35 @wiki = Wiki.find(1)
36 @wiki.start_page = "Another start page"
37 assert @wiki.save
38 @wiki.reload
39 assert_equal "Another start page", @wiki.start_page
40 end
41
42 def test_find_page_should_not_be_case_sensitive
43 wiki = Wiki.find(1)
44 page = WikiPage.find(2)
45
46 assert_equal page, wiki.find_page('Another_page')
47 assert_equal page, wiki.find_page('Another page')
48 assert_equal page, wiki.find_page('ANOTHER page')
49 end
50
51 def test_find_page_with_cyrillic_characters
52 wiki = Wiki.find(1)
53 page = WikiPage.find(10)
54 assert_equal page, wiki.find_page('Этика_менеджмента')
55 end
56
57 def test_find_page_with_backslashes
58 wiki = Wiki.find(1)
59 page = WikiPage.create!(:wiki => wiki, :title => '2009\\02\\09')
60 assert_equal page, wiki.find_page('2009\\02\\09')
61 end
62
63 def test_find_page_without_redirect
64 wiki = Wiki.find(1)
65 page = wiki.find_page('Another_page')
66 assert_not_nil page
67 assert_equal 'Another_page', page.title
68 assert_equal false, wiki.page_found_with_redirect?
69 end
70
71 def test_find_page_with_redirect
72 wiki = Wiki.find(1)
73 WikiRedirect.create!(:wiki => wiki, :title => 'Old_title', :redirects_to => 'Another_page')
74 page = wiki.find_page('Old_title')
75 assert_not_nil page
76 assert_equal 'Another_page', page.title
77 assert_equal true, wiki.page_found_with_redirect?
78 end
79
80 def test_titleize
81 ja_test = "\xe3\x83\x86\xe3\x82\xb9\xe3\x83\x88"
82 ja_test.force_encoding('UTF-8') if ja_test.respond_to?(:force_encoding)
83 assert_equal 'Page_title_with_CAPITALES', Wiki.titleize('page title with CAPITALES')
84 assert_equal ja_test, Wiki.titleize(ja_test)
85 end
86
87 context "#sidebar" do
88 setup do
89 @wiki = Wiki.find(1)
90 end
91
92 should "return nil if undefined" do
93 assert_nil @wiki.sidebar
94 end
95
96 should "return a WikiPage if defined" do
97 page = @wiki.pages.new(:title => 'Sidebar')
98 page.content = WikiContent.new(:text => 'Side bar content for test_show_with_sidebar')
99 page.save!
100
101 assert_kind_of WikiPage, @wiki.sidebar
102 assert_equal 'Sidebar', @wiki.sidebar.title
103 end
104 end
105 end