first commit
This commit is contained in:
@@ -0,0 +1,108 @@
|
||||
<?php
|
||||
|
||||
|
||||
|
||||
class HTMLPurifier_Strategy_RemoveForeignElementsTest extends HTMLPurifier_StrategyHarness
|
||||
|
||||
{
|
||||
|
||||
|
||||
|
||||
function setUp() {
|
||||
|
||||
parent::setUp();
|
||||
|
||||
$this->obj = new HTMLPurifier_Strategy_RemoveForeignElements();
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
||||
function testBlankInput() {
|
||||
|
||||
$this->assertResult('');
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
||||
function testPreserveRecognizedElements() {
|
||||
|
||||
$this->assertResult('This is <b>bold text</b>.');
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
||||
function testRemoveForeignElements() {
|
||||
|
||||
$this->assertResult(
|
||||
|
||||
'<asdf>Bling</asdf><d href="bang">Bong</d><foobar />',
|
||||
|
||||
'BlingBong'
|
||||
|
||||
);
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
||||
function testRemoveScriptAndContents() {
|
||||
|
||||
$this->assertResult(
|
||||
|
||||
'<script>alert();</script>',
|
||||
|
||||
''
|
||||
|
||||
);
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
||||
function testRemoveStyleAndContents() {
|
||||
|
||||
$this->assertResult(
|
||||
|
||||
'<style>.foo {blink;}</style>',
|
||||
|
||||
''
|
||||
|
||||
);
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
||||
function testRemoveOnlyScriptTagsLegacy() {
|
||||
|
||||
$this->config->set('Core.RemoveScriptContents', false);
|
||||
|
||||
$this->assertResult(
|
||||
|
||||
'<script>alert();</script>',
|
||||
|
||||
'alert();'
|
||||
|
||||
);
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
||||
function testRemoveOnlyScriptTags() {
|
||||
|
||||
$this->config->set('Core.HiddenElements', array());
|
||||
|
||||
$this->assertResult(
|
||||
|
||||
'<script>alert();</script>',
|
||||
|
||||
'alert();'
|
||||
|
||||
);
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user