44 lines
849 B
PHP
44 lines
849 B
PHP
<?php
|
|
|
|
namespace SMW\Tests\Exception;
|
|
|
|
use SMW\Exception\JSONFileParseException;
|
|
use SMW\Tests\PHPUnitCompat;
|
|
|
|
/**
|
|
* @covers \SMW\Exception\JSONFileParseException
|
|
* @group semantic-mediawiki
|
|
*
|
|
* @license GPL-2.0-or-later
|
|
* @since 3.2
|
|
*
|
|
* @author mwjames
|
|
*/
|
|
class JSONFileParseExceptionTest extends \PHPUnit\Framework\TestCase {
|
|
|
|
use PHPUnitCompat;
|
|
|
|
public function testCanConstruct() {
|
|
$instance = new JSONFileParseException(
|
|
\SMW_PHPUNIT_DIR . '/Fixtures/Exception/invalid.trailing.comma.json'
|
|
);
|
|
|
|
$this->assertContains(
|
|
"Expected: 'STRING' - It appears you have an extra trailing comma",
|
|
$instance->getMessage()
|
|
);
|
|
}
|
|
|
|
public function testCanConstruct_FileNotReadable() {
|
|
$instance = new JSONFileParseException(
|
|
'Foo'
|
|
);
|
|
|
|
$this->assertContains(
|
|
"Foo is not readable!",
|
|
$instance->getMessage()
|
|
);
|
|
}
|
|
|
|
}
|