2007-01-22 07:43:50 -06:00
|
|
|
#!/usr/bin/env ruby
|
|
|
|
|
|
|
|
require File.dirname(__FILE__) + '/../../test_helper'
|
|
|
|
require 'chunks/nowiki'
|
|
|
|
|
|
|
|
class NoWikiTest < Test::Unit::TestCase
|
|
|
|
include ChunkMatch
|
|
|
|
|
|
|
|
def test_simple_nowiki
|
|
|
|
match(NoWiki, 'This sentence contains <nowiki>[[raw text]]</nowiki>. Do not touch!',
|
|
|
|
:plain_text => '[[raw text]]'
|
|
|
|
)
|
|
|
|
end
|
|
|
|
|
2007-09-23 00:03:58 -05:00
|
|
|
def test_sanitized_nowiki
|
|
|
|
match(NoWiki, 'This sentence contains <nowiki><span>a & b</span> <script>alert("XSS!");</script></nowiki>. Do not touch!',
|
|
|
|
:plain_text => '<span>a & b</span> <script>alert("XSS!");</script>'
|
|
|
|
)
|
|
|
|
end
|
|
|
|
|
2007-01-22 07:43:50 -06:00
|
|
|
end
|