aboutsummaryrefslogtreecommitdiffstats
path: root/lib/htmlpurifier/tests/HTMLPurifier/URIFilter/MungeTest.php
diff options
context:
space:
mode:
Diffstat (limited to 'lib/htmlpurifier/tests/HTMLPurifier/URIFilter/MungeTest.php')
-rw-r--r--lib/htmlpurifier/tests/HTMLPurifier/URIFilter/MungeTest.php145
1 files changed, 0 insertions, 145 deletions
diff --git a/lib/htmlpurifier/tests/HTMLPurifier/URIFilter/MungeTest.php b/lib/htmlpurifier/tests/HTMLPurifier/URIFilter/MungeTest.php
deleted file mode 100644
index 1acf11ea7..000000000
--- a/lib/htmlpurifier/tests/HTMLPurifier/URIFilter/MungeTest.php
+++ /dev/null
@@ -1,145 +0,0 @@
-<?php
-
-class HTMLPurifier_URIFilter_MungeTest extends HTMLPurifier_URIFilterHarness
-{
-
- function setUp() {
- parent::setUp();
- $this->filter = new HTMLPurifier_URIFilter_Munge();
- }
-
- protected function setMunge($uri = 'http://www.google.com/url?q=%s') {
- $this->config->set('URI.Munge', $uri);
- }
-
- protected function setSecureMunge($key = 'secret') {
- $this->setMunge('/redirect.php?url=%s&checksum=%t');
- $this->config->set('URI.MungeSecretKey', $key);
- }
-
- function testMunge() {
- $this->setMunge();
- $this->assertFiltering(
- 'http://www.example.com/',
- 'http://www.google.com/url?q=http%3A%2F%2Fwww.example.com%2F'
- );
- }
-
- function testMungeReplaceTagName() {
- $this->setMunge('/r?tagname=%n&url=%s');
- $token = new HTMLPurifier_Token_Start('a');
- $this->context->register('CurrentToken', $token);
- $this->assertFiltering('http://google.com', '/r?tagname=a&url=http%3A%2F%2Fgoogle.com');
- }
-
- function testMungeReplaceAttribute() {
- $this->setMunge('/r?attr=%m&url=%s');
- $attr = 'href';
- $this->context->register('CurrentAttr', $attr);
- $this->assertFiltering('http://google.com', '/r?attr=href&url=http%3A%2F%2Fgoogle.com');
- }
-
- function testMungeReplaceResource() {
- $this->setMunge('/r?embeds=%r&url=%s');
- $embeds = false;
- $this->context->register('EmbeddedURI', $embeds);
- $this->assertFiltering('http://google.com', '/r?embeds=&url=http%3A%2F%2Fgoogle.com');
- }
-
- function testMungeReplaceCSSProperty() {
- $this->setMunge('/r?property=%p&url=%s');
- $property = 'background';
- $this->context->register('CurrentCSSProperty', $property);
- $this->assertFiltering('http://google.com', '/r?property=background&url=http%3A%2F%2Fgoogle.com');
- }
-
- function testIgnoreEmbedded() {
- $this->setMunge();
- $embeds = true;
- $this->context->register('EmbeddedURI', $embeds);
- $this->assertFiltering('http://example.com');
- }
-
- function testProcessEmbedded() {
- $this->setMunge();
- $this->config->set('URI.MungeResources', true);
- $embeds = true;
- $this->context->register('EmbeddedURI', $embeds);
- $this->assertFiltering('http://www.example.com/', 'http://www.google.com/url?q=http%3A%2F%2Fwww.example.com%2F');
- }
-
- function testPreserveRelative() {
- $this->setMunge();
- $this->assertFiltering('index.html');
- }
-
- function testMungeIgnoreUnknownSchemes() {
- $this->setMunge();
- $this->assertFiltering('javascript:foobar();', true);
- }
-
- function testSecureMungePreserve() {
- $this->setSecureMunge();
- $this->assertFiltering('/local');
- }
-
- function testSecureMungePreserveEmbedded() {
- $this->setSecureMunge();
- $embedded = true;
- $this->context->register('EmbeddedURI', $embedded);
- $this->assertFiltering('http://google.com');
- }
-
- function testSecureMungeStandard() {
- $this->setSecureMunge();
- $this->assertFiltering('http://google.com', '/redirect.php?url=http%3A%2F%2Fgoogle.com&checksum=0072e2f817fd2844825def74e54443debecf0892');
- }
-
- function testSecureMungeIgnoreUnknownSchemes() {
- // This should be integration tested as well to be false
- $this->setSecureMunge();
- $this->assertFiltering('javascript:', true);
- }
-
- function testSecureMungeIgnoreUnbrowsableSchemes() {
- $this->setSecureMunge();
- $this->assertFiltering('news:', true);
- }
-
- function testSecureMungeToDirectory() {
- $this->setSecureMunge();
- $this->setMunge('/links/%s/%t');
- $this->assertFiltering('http://google.com', '/links/http%3A%2F%2Fgoogle.com/0072e2f817fd2844825def74e54443debecf0892');
- }
-
- function testMungeIgnoreSameDomain() {
- $this->setMunge('http://example.com/%s');
- $this->assertFiltering('http://example.com/foobar');
- }
-
- function testMungeIgnoreSameDomainInsecureToSecure() {
- $this->setMunge('http://example.com/%s');
- $this->assertFiltering('https://example.com/foobar');
- }
-
- function testMungeIgnoreSameDomainSecureToSecure() {
- $this->config->set('URI.Base', 'https://example.com');
- $this->setMunge('http://example.com/%s');
- $this->assertFiltering('https://example.com/foobar');
- }
-
- function testMungeSameDomainSecureToInsecure() {
- $this->config->set('URI.Base', 'https://example.com');
- $this->setMunge('/%s');
- $this->assertFiltering('http://example.com/foobar', '/http%3A%2F%2Fexample.com%2Ffoobar');
- }
-
- function testMungeIgnoresSourceHost() {
- $this->config->set('URI.Host', 'foo.example.com');
- $this->setMunge('http://example.com/%s');
- $this->assertFiltering('http://foo.example.com/bar');
- }
-
-}
-
-// vim: et sw=4 sts=4