Вход Регистрация
Файл: htmlpurifier-4.3.0/tests/HTMLPurifier/URIFilter/MungeTest.php
Строк: 147
<?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 
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
Онлайн: 3
Реклама