wiki_content_test.rb
97 lines
| 3.4 KiB
| text/x-ruby
|
RubyLexer
|
r5693 | # Redmine - project management software | ||
# Copyright (C) 2006-2011 Jean-Philippe Lang | ||||
|
r320 | # | ||
# This program is free software; you can redistribute it and/or | ||||
# modify it under the terms of the GNU General Public License | ||||
# as published by the Free Software Foundation; either version 2 | ||||
# of the License, or (at your option) any later version. | ||||
|
r5693 | # | ||
|
r320 | # This program is distributed in the hope that it will be useful, | ||
# but WITHOUT ANY WARRANTY; without even the implied warranty of | ||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||||
# GNU General Public License for more details. | ||||
|
r5693 | # | ||
|
r320 | # You should have received a copy of the GNU General Public License | ||
# along with this program; if not, write to the Free Software | ||||
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. | ||||
|
r4395 | require File.expand_path('../../test_helper', __FILE__) | ||
|
r320 | |||
|
r2773 | class WikiContentTest < ActiveSupport::TestCase | ||
|
r9116 | fixtures :projects, :enabled_modules, | ||
:users, :members, :member_roles, :roles, | ||||
:wikis, :wiki_pages, :wiki_contents, :wiki_content_versions | ||||
|
r320 | |||
def setup | ||||
@wiki = Wiki.find(1) | ||||
@page = @wiki.pages.first | ||||
end | ||||
|
r5693 | |||
|
r320 | def test_create | ||
|
r5693 | page = WikiPage.new(:wiki => @wiki, :title => "Page") | ||
|
r476 | page.content = WikiContent.new(:text => "Content text", :author => User.find(1), :comments => "My comment") | ||
|
r320 | assert page.save | ||
page.reload | ||||
|
r5693 | |||
|
r320 | content = page.content | ||
assert_kind_of WikiContent, content | ||||
assert_equal 1, content.version | ||||
assert_equal 1, content.versions.length | ||||
assert_equal "Content text", content.text | ||||
|
r476 | assert_equal "My comment", content.comments | ||
|
r320 | assert_equal User.find(1), content.author | ||
assert_equal content.text, content.versions.last.text | ||||
end | ||||
|
r5693 | |||
|
r2650 | def test_create_should_send_email_notification | ||
Setting.notified_events = ['wiki_content_added'] | ||||
ActionMailer::Base.deliveries.clear | ||||
|
r5693 | page = WikiPage.new(:wiki => @wiki, :title => "A new page") | ||
|
r2650 | page.content = WikiContent.new(:text => "Content text", :author => User.find(1), :comments => "My comment") | ||
assert page.save | ||||
|
r5693 | |||
|
r2650 | assert_equal 1, ActionMailer::Base.deliveries.size | ||
end | ||||
|
r320 | |||
def test_update | ||||
content = @page.content | ||||
version_count = content.version | ||||
content.text = "My new content" | ||||
assert content.save | ||||
content.reload | ||||
assert_equal version_count+1, content.version | ||||
assert_equal version_count+1, content.versions.length | ||||
end | ||||
|
r5693 | |||
|
r2650 | def test_update_should_send_email_notification | ||
Setting.notified_events = ['wiki_content_updated'] | ||||
ActionMailer::Base.deliveries.clear | ||||
content = @page.content | ||||
content.text = "My new content" | ||||
assert content.save | ||||
|
r5693 | |||
|
r2650 | assert_equal 1, ActionMailer::Base.deliveries.size | ||
end | ||||
|
r5693 | |||
|
r320 | def test_fetch_history | ||
assert !@page.content.versions.empty? | ||||
@page.content.versions.each do |version| | ||||
assert_kind_of String, version.text | ||||
end | ||||
end | ||||
|
r5693 | |||
|
r3140 | def test_large_text_should_not_be_truncated_to_64k | ||
|
r5693 | page = WikiPage.new(:wiki => @wiki, :title => "Big page") | ||
|
r3140 | page.content = WikiContent.new(:text => "a" * 500.kilobyte, :author => User.find(1)) | ||
assert page.save | ||||
page.reload | ||||
assert_equal 500.kilobyte, page.content.text.size | ||||
end | ||||
|
r7852 | |||
def test_current_version | ||||
content = WikiContent.find(11) | ||||
assert_equal true, content.current_version? | ||||
assert_equal true, content.versions.first(:order => 'version DESC').current_version? | ||||
assert_equal false, content.versions.first(:order => 'version ASC').current_version? | ||||
end | ||||
|
r320 | end | ||