Add basic tests for the Null Formatter
This commit is contained in:
parent
8ee8ef02fe
commit
61b9939be3
43
test/unit/lib/redmine/wiki_formatting/null_formatter_test.rb
Normal file
43
test/unit/lib/redmine/wiki_formatting/null_formatter_test.rb
Normal file
@ -0,0 +1,43 @@
|
|||||||
|
#-- copyright
|
||||||
|
# ChiliProject is a project management system.
|
||||||
|
#
|
||||||
|
# Copyright (C) 2010-2011 the ChiliProject Team
|
||||||
|
#
|
||||||
|
# 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.
|
||||||
|
#
|
||||||
|
# See doc/COPYRIGHT.rdoc for more details.
|
||||||
|
#++
|
||||||
|
|
||||||
|
require File.expand_path('../../../../../test_helper', __FILE__)
|
||||||
|
|
||||||
|
class Redmine::WikiFormatting::NullFormatterTest < HelperTestCase
|
||||||
|
|
||||||
|
def setup
|
||||||
|
@formatter = Redmine::WikiFormatting::NullFormatter::Formatter
|
||||||
|
end
|
||||||
|
|
||||||
|
def test_plain_text
|
||||||
|
assert_html_output("This is some input" => "This is some input")
|
||||||
|
end
|
||||||
|
|
||||||
|
def test_escaping
|
||||||
|
assert_html_output(
|
||||||
|
'this is a <script>' => 'this is a <script>'
|
||||||
|
)
|
||||||
|
end
|
||||||
|
|
||||||
|
private
|
||||||
|
|
||||||
|
def assert_html_output(to_test, expect_paragraph = true)
|
||||||
|
to_test.each do |text, expected|
|
||||||
|
assert_equal(( expect_paragraph ? "<p>#{expected}</p>" : expected ), @formatter.new(text).to_html, "Formatting the following text failed:\n===\n#{text}\n===\n")
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
def to_html(text)
|
||||||
|
@formatter.new(text).to_html
|
||||||
|
end
|
||||||
|
end
|
Loading…
x
Reference in New Issue
Block a user