2008-05-20 01:19:00 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
class HTMLPurifier_LengthTest extends HTMLPurifier_Harness
|
|
|
|
{
|
|
|
|
|
|
|
|
function testConstruct() {
|
|
|
|
$l = new HTMLPurifier_Length('23', 'in');
|
2008-05-20 21:23:38 +00:00
|
|
|
$this->assertIdentical($l->getN(), '23');
|
|
|
|
$this->assertIdentical($l->getUnit(), 'in');
|
2008-05-20 01:19:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function testMake() {
|
|
|
|
$l = HTMLPurifier_Length::make('+23.4in');
|
2008-05-20 21:23:38 +00:00
|
|
|
$this->assertIdentical($l->getN(), '+23.4');
|
|
|
|
$this->assertIdentical($l->getUnit(), 'in');
|
2008-05-20 01:19:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function testToString() {
|
|
|
|
$l = new HTMLPurifier_Length('23', 'in');
|
|
|
|
$this->assertIdentical($l->toString(), '23in');
|
|
|
|
}
|
|
|
|
|
|
|
|
protected function assertValidate($string, $expect = true, $disable_negative = false) {
|
|
|
|
if ($expect === true) $expect = $string;
|
|
|
|
$l = HTMLPurifier_Length::make($string);
|
2008-05-20 21:23:38 +00:00
|
|
|
$result = $l->isValid($disable_negative);
|
2008-05-20 01:19:00 +00:00
|
|
|
if ($result === false) $this->assertIdentical($expect, false);
|
|
|
|
else $this->assertIdentical($l->toString(), $expect);
|
|
|
|
}
|
|
|
|
|
|
|
|
function testValidate() {
|
|
|
|
$this->assertValidate('0');
|
2008-05-20 21:23:38 +00:00
|
|
|
$this->assertValidate('+0', '0');
|
|
|
|
$this->assertValidate('-0', '0');
|
2008-05-20 01:19:00 +00:00
|
|
|
$this->assertValidate('0px');
|
|
|
|
$this->assertValidate('4.5px');
|
|
|
|
$this->assertValidate('-4.5px');
|
|
|
|
$this->assertValidate('3ex');
|
|
|
|
$this->assertValidate('3em');
|
|
|
|
$this->assertValidate('3in');
|
|
|
|
$this->assertValidate('3cm');
|
|
|
|
$this->assertValidate('3mm');
|
|
|
|
$this->assertValidate('3pt');
|
|
|
|
$this->assertValidate('3pc');
|
|
|
|
$this->assertValidate('3PX', '3px');
|
|
|
|
$this->assertValidate('3', false);
|
|
|
|
$this->assertValidate('3miles', false);
|
|
|
|
$this->assertValidate('-3mm', false, true); // no-negatives
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|