105 lines
2.5 KiB
PHP
105 lines
2.5 KiB
PHP
<?php
|
|
namespace Szurubooru\Tests\Dao;
|
|
|
|
final class PostDaoTest extends \Szurubooru\Tests\AbstractDatabaseTest
|
|
{
|
|
public function testSaving()
|
|
{
|
|
$postDao = new \Szurubooru\Dao\PostDao($this->config);
|
|
|
|
$post = new \Szurubooru\Entities\Post();
|
|
$post->name = 'test2';
|
|
|
|
$postDao->save($post);
|
|
$post->name .= '3';
|
|
$postDao->save($post);
|
|
|
|
$otherPost = new \Szurubooru\Entities\Post();
|
|
$otherPost->name = 'yo';
|
|
$postDao->save($otherPost);
|
|
|
|
$this->assertEquals('test23', $post->name);
|
|
$this->assertEquals('yo', $otherPost->name);
|
|
}
|
|
|
|
public function testGettingAll()
|
|
{
|
|
$postDao = new \Szurubooru\Dao\PostDao($this->config);
|
|
|
|
$post1 = new \Szurubooru\Entities\Post();
|
|
$post1->name = 'test2';
|
|
$post2 = new \Szurubooru\Entities\Post();
|
|
$post2->name = 'test2';
|
|
|
|
$postDao->save($post1);
|
|
$postDao->save($post2);
|
|
|
|
$actual = $postDao->getAll();
|
|
$expected = [
|
|
$post1->id => $post1,
|
|
$post2->id => $post2,
|
|
];
|
|
|
|
$this->assertEquals($expected, $actual);
|
|
}
|
|
|
|
public function testGettingById()
|
|
{
|
|
$postDao = new \Szurubooru\Dao\PostDao($this->config);
|
|
|
|
$post1 = new \Szurubooru\Entities\Post();
|
|
$post1->name = 'test2';
|
|
$post2 = new \Szurubooru\Entities\Post();
|
|
$post2->name = 'test2';
|
|
|
|
$postDao->save($post1);
|
|
$postDao->save($post2);
|
|
|
|
$actualPost1 = $postDao->getById($post1->id);
|
|
$actualPost2 = $postDao->getById($post2->id);
|
|
$this->assertEquals($post1, $actualPost1);
|
|
$this->assertEquals($post2, $actualPost2);
|
|
}
|
|
|
|
public function testDeletingAll()
|
|
{
|
|
$postDao = new \Szurubooru\Dao\PostDao($this->config);
|
|
|
|
$post1 = new \Szurubooru\Entities\Post();
|
|
$post1->name = 'test2';
|
|
$post2 = new \Szurubooru\Entities\Post();
|
|
$post2->name = 'test2';
|
|
|
|
$postDao->save($post1);
|
|
$postDao->save($post2);
|
|
|
|
$postDao->deleteAll();
|
|
|
|
$actualPost1 = $postDao->getById($post1->id);
|
|
$actualPost2 = $postDao->getById($post2->id);
|
|
$this->assertEquals(null, $actualPost1);
|
|
$this->assertEquals(null, $actualPost2);
|
|
$this->assertEquals(0, count($postDao->getAll()));
|
|
}
|
|
|
|
public function testDeletingById()
|
|
{
|
|
$postDao = new \Szurubooru\Dao\PostDao($this->config);
|
|
|
|
$post1 = new \Szurubooru\Entities\Post();
|
|
$post1->name = 'test2';
|
|
$post2 = new \Szurubooru\Entities\Post();
|
|
$post2->name = 'test2';
|
|
|
|
$postDao->save($post1);
|
|
$postDao->save($post2);
|
|
|
|
$postDao->deleteById($post1->id);
|
|
|
|
$actualPost1 = $postDao->getById($post1->id);
|
|
$actualPost2 = $postDao->getById($post2->id);
|
|
$this->assertEquals(null, $actualPost1);
|
|
$this->assertEquals($actualPost2, $actualPost2);
|
|
$this->assertEquals(1, count($postDao->getAll()));
|
|
}
|
|
}
|