mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-14 16:59:55 +09:00
git-svn-id: http://xe-core.googlecode.com/svn/branches/1.5.0@10579 201d5d3c-b55e-5fd7-737f-ddc643e51545
34 lines
1 KiB
PHP
34 lines
1 KiB
PHP
<?php
|
|
|
|
class HTMLPurifier_AttrDef_SwitchTest extends HTMLPurifier_AttrDefHarness
|
|
{
|
|
|
|
protected $with, $without;
|
|
|
|
function setUp() {
|
|
parent::setUp();
|
|
generate_mock_once('HTMLPurifier_AttrDef');
|
|
$this->with = new HTMLPurifier_AttrDefMock();
|
|
$this->without = new HTMLPurifier_AttrDefMock();
|
|
$this->def = new HTMLPurifier_AttrDef_Switch('tag', $this->with, $this->without);
|
|
}
|
|
|
|
function testWith() {
|
|
$token = new HTMLPurifier_Token_Start('tag');
|
|
$this->context->register('CurrentToken', $token);
|
|
$this->with->expectOnce('validate');
|
|
$this->with->setReturnValue('validate', 'foo');
|
|
$this->assertDef('bar', 'foo');
|
|
}
|
|
|
|
function testWithout() {
|
|
$token = new HTMLPurifier_Token_Start('other-tag');
|
|
$this->context->register('CurrentToken', $token);
|
|
$this->without->expectOnce('validate');
|
|
$this->without->setReturnValue('validate', 'foo');
|
|
$this->assertDef('bar', 'foo');
|
|
}
|
|
|
|
}
|
|
|
|
// vim: et sw=4 sts=4
|