2006-08-16 17:25:25 +00:00
|
|
|
<?php
|
|
|
|
|
2007-02-14 20:38:51 +00:00
|
|
|
class HTMLPurifier_AttrDef_CSS_FontFamilyTest extends HTMLPurifier_AttrDefHarness
|
2006-08-16 17:25:25 +00:00
|
|
|
{
|
2008-12-06 07:28:20 +00:00
|
|
|
|
2006-08-16 17:25:25 +00:00
|
|
|
function test() {
|
2008-12-06 07:28:20 +00:00
|
|
|
|
2007-02-14 20:38:51 +00:00
|
|
|
$this->def = new HTMLPurifier_AttrDef_CSS_FontFamily();
|
2008-12-06 07:28:20 +00:00
|
|
|
|
2006-08-16 17:25:25 +00:00
|
|
|
$this->assertDef('Gill, Helvetica, sans-serif');
|
2010-05-21 15:53:52 +00:00
|
|
|
$this->assertDef('"Times New Roman", serif');
|
|
|
|
$this->assertDef('\'Times New Roman\'', '"Times New Roman"');
|
2006-08-16 17:25:25 +00:00
|
|
|
$this->assertDef('01234');
|
|
|
|
$this->assertDef(',', false);
|
2010-05-21 15:53:52 +00:00
|
|
|
$this->assertDef('Times New Roman, serif', '"Times New Roman", serif');
|
|
|
|
$this->assertDef($d = '"John\'s Font"');
|
2007-08-03 02:48:52 +00:00
|
|
|
$this->assertDef("John's Font", $d);
|
2010-05-21 15:53:52 +00:00
|
|
|
$this->assertDef($d = "\"\xE5\xAE\x8B\xE4\xBD\x93\"");
|
2007-08-03 02:48:52 +00:00
|
|
|
$this->assertDef("\xE5\xAE\x8B\xE4\xBD\x93", $d);
|
2010-05-21 15:53:52 +00:00
|
|
|
$this->assertDef("'\\','f'", "\"\\5C \", f");
|
|
|
|
$this->assertDef("'\\01'", "\"\"");
|
|
|
|
$this->assertDef("'\\20'", "\" \"");
|
|
|
|
$this->assertDef("\\0020", "\" \"");
|
2008-05-25 05:40:20 +00:00
|
|
|
$this->assertDef("'\\000045'", "E");
|
|
|
|
$this->assertDef("','", false);
|
2010-05-21 15:53:52 +00:00
|
|
|
$this->assertDef("',' foobar','", "\" foobar\"");
|
|
|
|
$this->assertDef("'\\27'", "\"'\"");
|
|
|
|
$this->assertDef('"\\22"', "\"\\22 \"");
|
|
|
|
$this->assertDef('"\\""', "\"\\22 \"");
|
|
|
|
$this->assertDef('"\'"', "\"'\"");
|
2008-05-25 05:40:20 +00:00
|
|
|
$this->assertDef("'\\000045a'", "Ea");
|
|
|
|
$this->assertDef("'\\00045 a'", "Ea");
|
2010-05-21 15:53:52 +00:00
|
|
|
$this->assertDef("'\\00045 a'", "\"E a\"");
|
2008-05-25 05:40:20 +00:00
|
|
|
$this->assertDef("'\\\nf'", "f");
|
2006-08-16 17:25:25 +00:00
|
|
|
}
|
2008-12-06 07:28:20 +00:00
|
|
|
|
2011-03-24 22:54:39 +00:00
|
|
|
function testAllowed() {
|
|
|
|
$this->config->set('CSS.AllowedFonts', array('serif', 'Times New Roman'));
|
|
|
|
|
|
|
|
$this->assertDef('serif');
|
|
|
|
$this->assertDef('sans-serif', false);
|
|
|
|
$this->assertDef('serif, sans-serif', 'serif');
|
|
|
|
$this->assertDef('Times New Roman', '"Times New Roman"');
|
|
|
|
$this->assertDef('"Times New Roman"');
|
|
|
|
$this->assertDef('foo', false);
|
|
|
|
}
|
|
|
|
|
2006-08-16 17:25:25 +00:00
|
|
|
}
|
|
|
|
|
2008-12-06 09:24:59 +00:00
|
|
|
// vim: et sw=4 sts=4
|