mirror of
https://github.com/PrivateBin/PrivateBin.git
synced 2024-10-01 01:26:10 -04:00
phpunit compatibility
This commit is contained in:
parent
168ce1d85c
commit
9c81d85bb7
@ -43,7 +43,7 @@ class DatabaseTest extends TestCase
|
|||||||
$this->assertNotEquals($salt, '');
|
$this->assertNotEquals($salt, '');
|
||||||
ServerSalt::setStore($this->_model);
|
ServerSalt::setStore($this->_model);
|
||||||
ServerSalt::get();
|
ServerSalt::get();
|
||||||
$this->assertFileNotExists($file, 'legacy ServerSalt got removed');
|
$this->assertFileDoesNotExist($file, 'legacy ServerSalt got removed');
|
||||||
$this->assertEquals($salt, ServerSalt::get(), 'ServerSalt got preserved & migrated');
|
$this->assertEquals($salt, ServerSalt::get(), 'ServerSalt got preserved & migrated');
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -184,10 +184,6 @@ class ModelTest extends TestCase
|
|||||||
$paste->store();
|
$paste->store();
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* @expectedException Exception
|
|
||||||
* @expectedExceptionCode 76
|
|
||||||
*/
|
|
||||||
public function testStoreFail()
|
public function testStoreFail()
|
||||||
{
|
{
|
||||||
$path = $this->_path . DIRECTORY_SEPARATOR . 'model-store-test.sq3';
|
$path = $this->_path . DIRECTORY_SEPARATOR . 'model-store-test.sq3';
|
||||||
@ -224,13 +220,11 @@ class ModelTest extends TestCase
|
|||||||
|
|
||||||
$paste = $model->getPaste();
|
$paste = $model->getPaste();
|
||||||
$paste->setData($pasteData);
|
$paste->setData($pasteData);
|
||||||
|
$this->expectException(Exception::class);
|
||||||
|
$this->expectExceptionCode(76);
|
||||||
$paste->store();
|
$paste->store();
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* @expectedException Exception
|
|
||||||
* @expectedExceptionCode 70
|
|
||||||
*/
|
|
||||||
public function testCommentStoreFail()
|
public function testCommentStoreFail()
|
||||||
{
|
{
|
||||||
$path = $this->_path . DIRECTORY_SEPARATOR . 'model-test.sq3';
|
$path = $this->_path . DIRECTORY_SEPARATOR . 'model-test.sq3';
|
||||||
@ -272,13 +266,11 @@ class ModelTest extends TestCase
|
|||||||
|
|
||||||
$comment = $paste->getComment(Helper::getPasteId());
|
$comment = $paste->getComment(Helper::getPasteId());
|
||||||
$comment->setData($commentData);
|
$comment->setData($commentData);
|
||||||
|
$this->expectException(Exception::class);
|
||||||
|
$this->expectExceptionCode(70);
|
||||||
$comment->store();
|
$comment->store();
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* @expectedException Exception
|
|
||||||
* @expectedExceptionCode 69
|
|
||||||
*/
|
|
||||||
public function testCommentDuplicate()
|
public function testCommentDuplicate()
|
||||||
{
|
{
|
||||||
$pasteData = Helper::getPastePost();
|
$pasteData = Helper::getPastePost();
|
||||||
|
Loading…
Reference in New Issue
Block a user