mirror of
https://github.com/ezyang/htmlpurifier.git
synced 2025-07-31 19:30:21 +02:00
[3.1.0] Define *.vtest test hierarchy, and continue work on validator.
git-svn-id: http://htmlpurifier.org/svnroot/htmlpurifier/trunk@1625 48356398-32a2-884e-a903-53898d9a118a
This commit is contained in:
42
tests/HTMLPurifier/ConfigSchema/ValidatorTestCase.php
Normal file
42
tests/HTMLPurifier/ConfigSchema/ValidatorTestCase.php
Normal file
@@ -0,0 +1,42 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* Controller for validator test-cases.
|
||||
*/
|
||||
class HTMLPurifier_ConfigSchema_ValidatorTestCase extends UnitTestCase
|
||||
{
|
||||
|
||||
protected $_path, $_parser, $_builder;
|
||||
public $validator;
|
||||
|
||||
public function __construct($path) {
|
||||
$this->_path = $path;
|
||||
$this->_parser = new HTMLPurifier_StringHashParser();
|
||||
$this->_builder = new HTMLPurifier_ConfigSchema_InterchangeBuilder();
|
||||
parent::UnitTestCase($path);
|
||||
}
|
||||
|
||||
public function setup() {
|
||||
$this->validator = new HTMLPurifier_ConfigSchema_Validator();
|
||||
}
|
||||
|
||||
public function testValidator() {
|
||||
$hashes = $this->_parser->parseMultiFile($this->_path);
|
||||
$interchange = new HTMLPurifier_ConfigSchema_Interchange();
|
||||
$error = null;
|
||||
foreach ($hashes as $hash) {
|
||||
if (!isset($hash['ID'])) {
|
||||
if (isset($hash['ERROR'])) {
|
||||
$this->expectException(
|
||||
new HTMLPurifier_ConfigSchema_Exception($hash['ERROR'])
|
||||
);
|
||||
}
|
||||
continue;
|
||||
}
|
||||
$this->_builder->build($interchange, new HTMLPurifier_StringHash($hash));
|
||||
}
|
||||
$this->validator->validate($interchange);
|
||||
$this->pass();
|
||||
}
|
||||
|
||||
}
|
Reference in New Issue
Block a user