mirror of
https://github.com/ezyang/htmlpurifier.git
synced 2024-11-08 06:48:42 +00:00
753c830239
Signed-off-by: Edward Z. Yang <ezyang@cs.stanford.edu>
69 lines
2.4 KiB
PHP
69 lines
2.4 KiB
PHP
<?php
|
|
|
|
class HTMLPurifier_URIDefinitionTest extends HTMLPurifier_URIHarness
|
|
{
|
|
|
|
protected function createFilterMock($expect = true, $result = true, $post = false, $setup = true)
|
|
{
|
|
static $i = 0;
|
|
generate_mock_once('HTMLPurifier_URIFilter');
|
|
$mock = new HTMLPurifier_URIFilterMock();
|
|
if ($expect) $mock->expectOnce('filter');
|
|
else $mock->expectNever('filter');
|
|
$mock->returns('filter', $result);
|
|
$mock->returns('prepare', $setup);
|
|
$mock->name = $i++;
|
|
$mock->post = $post;
|
|
return $mock;
|
|
}
|
|
|
|
public function test_filter()
|
|
{
|
|
$def = new HTMLPurifier_URIDefinition();
|
|
$def->addFilter($this->createFilterMock(), $this->config);
|
|
$def->addFilter($this->createFilterMock(), $this->config);
|
|
$uri = $this->createURI('test');
|
|
$this->assertTrue($def->filter($uri, $this->config, $this->context));
|
|
}
|
|
|
|
public function test_filter_earlyAbortIfFail()
|
|
{
|
|
$def = new HTMLPurifier_URIDefinition();
|
|
$def->addFilter($this->createFilterMock(true, false), $this->config);
|
|
$def->addFilter($this->createFilterMock(false), $this->config); // never called
|
|
$uri = $this->createURI('test');
|
|
$this->assertFalse($def->filter($uri, $this->config, $this->context));
|
|
}
|
|
|
|
public function test_setupMemberVariables_collisionPrecedenceIsHostBaseScheme()
|
|
{
|
|
$this->config->set('URI.Host', $host = 'example.com');
|
|
$this->config->set('URI.Base', $base = 'http://sub.example.com/foo/bar.html');
|
|
$this->config->set('URI.DefaultScheme', 'ftp');
|
|
$def = new HTMLPurifier_URIDefinition();
|
|
$def->setup($this->config);
|
|
$this->assertIdentical($def->host, $host);
|
|
$this->assertIdentical($def->base, $this->createURI($base));
|
|
$this->assertIdentical($def->defaultScheme, 'http'); // not ftp!
|
|
}
|
|
|
|
public function test_setupMemberVariables_onlyScheme()
|
|
{
|
|
$this->config->set('URI.DefaultScheme', 'ftp');
|
|
$def = new HTMLPurifier_URIDefinition();
|
|
$def->setup($this->config);
|
|
$this->assertIdentical($def->defaultScheme, 'ftp');
|
|
}
|
|
|
|
public function test_setupMemberVariables_onlyBase()
|
|
{
|
|
$this->config->set('URI.Base', 'http://sub.example.com/foo/bar.html');
|
|
$def = new HTMLPurifier_URIDefinition();
|
|
$def->setup($this->config);
|
|
$this->assertIdentical($def->host, 'sub.example.com');
|
|
}
|
|
|
|
}
|
|
|
|
// vim: et sw=4 sts=4
|