X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=tests%2Fconfig%2FConfigJsonTest.php;h=4f50892582416bd39589f45b9b9ac5e9ac814ec9;hb=a5a9cf23acd1248585173aa32757d9720b5f2d62;hp=99c88820ca43abb66920d19fef1617d7d18e377a;hpb=5ff23f02b80ec6ddee28dee869171ee8e3656b7c;p=github%2Fshaarli%2FShaarli.git diff --git a/tests/config/ConfigJsonTest.php b/tests/config/ConfigJsonTest.php index 99c88820..4f508925 100644 --- a/tests/config/ConfigJsonTest.php +++ b/tests/config/ConfigJsonTest.php @@ -1,18 +1,17 @@ configIO = new ConfigJson(); } @@ -25,7 +24,7 @@ class ConfigJsonTest extends PHPUnit_Framework_TestCase $conf = $this->configIO->read('tests/utils/config/configJson.json.php'); $this->assertEquals('root', $conf['credentials']['login']); $this->assertEquals('lala', $conf['redirector']['url']); - $this->assertEquals('tests/utils/config/datastore.php', $conf['resource']['datastore']); + $this->assertEquals('sandbox/datastore.php', $conf['resource']['datastore']); $this->assertEquals('1', $conf['plugins']['WALLABAG_VERSION']); } @@ -39,12 +38,12 @@ class ConfigJsonTest extends PHPUnit_Framework_TestCase /** * Read a non existent config file -> empty array. - * - * @expectedException Exception - * @expectedExceptionMessage An error occured while parsing JSON file: error code #4 */ public function testReadInvalidJson() { + $this->expectException(\Exception::class); + $this->expectExceptionMessageRegExp(' /An error occurred while parsing JSON configuration file \\([\\w\\/\\.]+\\): error code #4/'); + $this->configIO->read('tests/utils/config/configInvalid.json.php'); } @@ -111,22 +110,22 @@ class ConfigJsonTest extends PHPUnit_Framework_TestCase /** * Write to invalid path. - * - * @expectedException IOException */ public function testWriteInvalidArray() { + $this->expectException(\Shaarli\Exceptions\IOException::class); + $conf = array('conf' => 'value'); @$this->configIO->write(array(), $conf); } /** * Write to invalid path. - * - * @expectedException IOException */ public function testWriteInvalidBlank() { + $this->expectException(\Shaarli\Exceptions\IOException::class); + $conf = array('conf' => 'value'); @$this->configIO->write('', $conf); }