Add support for normalization test suite.

- Handle rdfn:Urgna2012EvalTest and rdfn:Urdna2015EvalTest.
- Use nquads input format for normalization tests.
- Support normalization test suite format with various tweaks.
  Compacting the data would eliminate most of these changes but can't
  rely on compact to work in the code that tests compact! So hard coded
  fixes are used.
  - Support 'entries' and 'sequence' for tests.
  - Support 'include' as filename without a .jsonld extension.
  - Support 'type' and '@type' as aliases.
  - Support 'id' and '@id' as aliases.
  - Support 'action' and 'input' as aliases.
  - Support 'result' and 'expect' as aliases.
  - No longer strip '#t' prefix from '#tNNN' ids.
  - Default to positive test if nothing specified.
- Add normalization test to travis-ci config.
- Fix container infrastructure flag from 'root' to 'sudo'.
- Update README with new testing info.
This commit is contained in:
David I. Lehn 2015-10-13 13:34:12 -04:00
parent 57b3279718
commit c63a5961fb
3 changed files with 133 additions and 29 deletions

View File

@ -1,15 +1,17 @@
language: php
php:
- 5.6
- 5.5
- 5.4
- 5.3
root: false
- 5.4
- 5.5
- 5.6
sudo: false
# download test suite and run tests... submodule? meta testing project with
# all of the reference implementations?
script:
- git clone https://github.com/json-ld/json-ld.org.git spec
- phpunit test.php -d spec/test-suite
- git clone https://github.com/json-ld/json-ld.org.git _json-ld.org
- phpunit test.php -d ./_json-ld.org/test-suite
- git clone https://github.com/json-ld/normalization.git _normalization
- phpunit test.php -d ./_normalization/tests
notifications:
email:
on_success: change

View File

@ -171,14 +171,16 @@ This library includes a sample testing utility which may be used to verify
that changes to the processor maintain the correct output.
To run the sample tests you will need to get the test suite files by cloning
the [json-ld.org repository][json-ld.org] hosted on GitHub:
the `json-ld.org` and `normalization` repositories hosted on GitHub:
https://github.com/json-ld/json-ld.org
- https://github.com/json-ld/json-ld.org
- https://github.com/json-ld/normalization
Then run the PHPUnit test.php application and point it at the directory
containing the tests.
Then run the PHPUnit test.php application and point it at the directories
containing the tests:
phpunit test.php -d {PATH_TO_JSON_LD_ORG/test-suite}
phpunit test.php -d {PATH_TO_NORMALIZATION/tests}
[Digital Bazaar]: http://digitalbazaar.com/
[JSON-LD]: http://json-ld.org/
@ -187,4 +189,3 @@ containing the tests.
[PHP]: http://php.net
[RDFa]: http://www.w3.org/TR/rdfa-core/
[RFC7159]: http://tools.ietf.org/html/rfc7159
[json-ld.org]: https://github.com/json-ld/json-ld.org

137
test.php
View File

@ -130,6 +130,42 @@ class JsonLdTestCase extends PHPUnit_Framework_TestCase {
$test->run('jsonld_normalize', array($input, $options));
}
/**
* Tests URGNA2012 normalization.
*
* @param JsonLdTest $test the test to run.
*
* @group normalize
* @dataProvider urgna2012Provider
*/
public function testUrgna2012($test) {
$this->test = $test;
$input = $test->readProperty('action');
$options = $test->createOptions(array(
'algorithm' => 'URGNA2012',
'inputFormat' => 'application/nquads',
'format' => 'application/nquads'));
$test->run('jsonld_normalize', array($input, $options));
}
/**
* Tests URDNA2015 normalization.
*
* @param JsonLdTest $test the test to run.
*
* @group normalize
* @dataProvider urdna2015Provider
*/
public function testUrdna2015($test) {
$this->test = $test;
$input = $test->readProperty('action');
$options = $test->createOptions(array(
'algorithm' => 'URDNA2015',
'inputFormat' => 'application/nquads',
'format' => 'application/nquads'));
$test->run('jsonld_normalize', array($input, $options));
}
public function expandProvider() {
return new JsonLdTestIterator('jld:ExpandTest');
}
@ -157,6 +193,14 @@ class JsonLdTestCase extends PHPUnit_Framework_TestCase {
public function frameProvider() {
return new JsonLdTestIterator('jld:FrameTest');
}
public function urgna2012Provider() {
return new JsonLdTestIterator('rdfn:Urgna2012EvalTest');
}
public function urdna2015Provider() {
return new JsonLdTestIterator('rdfn:Urdna2015EvalTest');
}
}
class JsonLdManifest {
@ -167,8 +211,14 @@ class JsonLdManifest {
}
public function load(&$tests) {
$sequence = JsonLdProcessor::getValues($this->data, 'sequence');
foreach($sequence as $entry) {
$entries = array_merge(
JsonLdProcessor::getValues($this->data, 'sequence'),
JsonLdProcessor::getValues($this->data, 'entries'));
$includes = JsonLdProcessor::getValues($this->data, 'include');
foreach($includes as $include) {
array_push($entries, $include . '.jsonld');
}
foreach($entries as $entry) {
if(is_string($entry)) {
$filename = join(
DIRECTORY_SEPARATOR, array($this->dirname, $entry));
@ -177,14 +227,17 @@ class JsonLdManifest {
$filename = $this->filename;
}
if(JsonLdProcessor::hasValue($entry, '@type', 'mf:Manifest')) {
if(JsonLdProcessor::hasValue($entry, '@type', 'mf:Manifest') ||
JsonLdProcessor::hasValue($entry, 'type', 'mf:Manifest')) {
// entry is another manifest
$manifest = new JsonLdManifest($entry, $filename);
$manifest->load($tests);
} else {
// assume entry is a test
$test = new JsonLdTest($this, $entry, $filename);
$types = JsonLdProcessor::getValues($test->data, '@type');
$types = array_merge(
JsonLdProcessor::getValues($test->data, '@type'),
JsonLdProcessor::getValues($test->data, 'type'));
foreach($types as $type) {
if(!isset($tests[$type])) {
$tests[$type] = array();
@ -202,19 +255,56 @@ class JsonLdTest {
$this->data = $data;
$this->filename = $filename;
$this->dirname = dirname($filename);
$this->isPositive = JsonLdProcessor::hasValue(
$data, '@type', 'jld:PositiveEvaluationTest');
$this->isNegative = JsonLdProcessor::hasValue(
$data, '@type', 'jld:NegativeEvaluationTest');
$this->isPositive =
JsonLdProcessor::hasValue(
$data, '@type', 'jld:PositiveEvaluationTest') ||
JsonLdProcessor::hasValue(
$data, 'type', 'jld:PositiveEvaluationTest');
$this->isNegative =
JsonLdProcessor::hasValue(
$data, '@type', 'jld:NegativeEvaluationTest') ||
JsonLdProcessor::hasValue(
$data, 'type', 'jld:NegativeEvaluationTest');
// generate test name
$this->name = $manifest->data->name . ' ' . substr($data->{'@id'}, 2) .
' - ' . $this->data->name;
if(isset($manifest->data->name)) {
$manifestLabel = $manifest->data->name;
} else if(isset($manifest->data->label)) {
$manifestLabel = $manifest->data->label;
} else {
$manifestLabel = 'UNNAMED';
}
if(isset($this->data->id)) {
$testId = $this->data->id;
} else {
$testId = $this->data->{'@id'};
}
if(isset($this->data->name)) {
$testLabel = $this->data->name;
} else if(isset($this->data->label)) {
$testLabel = $this->data->label;
} else {
$testLabel = 'UNNAMED';
}
$this->name = $manifestLabel . ' ' . $testId . ' - ' . $testLabel;
// expand @id and input base
$data->{'@id'} = ($manifest->data->baseIri .
basename($manifest->filename) . $data->{'@id'});
$this->base = $manifest->data->baseIri . $data->input;
if(isset($manifest->data->baseIri)) {
$data->{'@id'} = ($manifest->data->baseIri .
basename($manifest->filename) . $data->{'@id'});
$this->base = $manifest->data->baseIri . $data->input;
}
}
private function _getResultProperty() {
if(isset($this->data->expect)) {
return 'expect';
} else if(isset($this->data->result)) {
return 'result';
} else {
throw new Exception('No test result property found.');
}
}
public function run($fn, $params) {
@ -222,7 +312,7 @@ class JsonLdTest {
if($this->isNegative) {
$this->expected = $this->data->expect;
} else {
$this->expected = $this->readProperty('expect');
$this->expected = $this->readProperty($this->_getResultProperty());
}
try {
@ -232,11 +322,14 @@ class JsonLdTest {
}
PHPUnit_Framework_TestCase::assertEquals($this->expected, $this->actual);
} catch(Exception $e) {
if($this->isPositive) {
// assume positive test
if($this->isNegative) {
$this->actual = $this->getJsonLdErrorCode($e);
PHPUnit_Framework_TestCase::assertEquals(
$this->expected, $this->actual);
} else {
throw $e;
}
$this->actual = $this->getJsonLdErrorCode($e);
PHPUnit_Framework_TestCase::assertEquals($this->expected, $this->actual);
}
}
@ -541,8 +634,16 @@ class EarlReport extends PHPUnit_Util_Printer
PHPUnit_Framework_AssertionFailedError $e, $time) {
$this->addAssertion($test->test, false);
if($test->result->shouldStop()) {
if(isset($test->test->name)) {
$name = $test->test->name;
} else if(isset($test->test->label)) {
$name = $test->test->label;
} else {
$name = 'UNNAMED';
}
// FIXME
printf("\n\nFAILED\n");
printf("Test: %s\n", $test->test->name);
printf("Test: %s\n", $name);
printf("Purpose: %s\n", $test->test->data->purpose);
printf("EXPECTED: %s\n", Util::jsonldEncode($test->test->expected));
printf("ACTUAL: %s\n", Util::jsonldEncode($test->test->actual));