szurubooru/tests/Dao/GlobalParamDaoTest.php

65 lines
1.7 KiB
PHP
Raw Normal View History

2014-09-24 23:24:51 +02:00
<?php
namespace Szurubooru\Tests\Dao;
class GlobalParamDaoTest extends \Szurubooru\Tests\AbstractDatabaseTestCase
{
public function testSettingValues()
{
$expected = new \Szurubooru\Entities\GlobalParam();
$expected->setKey('key');
$expected->setValue('test');
$globalParamDao = $this->getGlobalParamDao();
$globalParamDao->save($expected);
$actual = $globalParamDao->findByKey($expected->getKey());
$this->assertEntitiesEqual($actual, $expected);
}
public function testInsertingSameKeyTwice()
{
$param1 = new \Szurubooru\Entities\GlobalParam();
$param1->setKey('key');
$param1->setValue('value1');
$param2 = new \Szurubooru\Entities\GlobalParam();
$param2->setKey('key');
$param2->setValue('value2');
$globalParamDao = $this->getGlobalParamDao();
$globalParamDao->save($param1);
$globalParamDao->save($param2);
$this->assertEquals([$param2], array_values($globalParamDao->findAll()));
}
public function testUpdatingValues()
{
$expected = new \Szurubooru\Entities\GlobalParam();
$expected->setKey('key');
$expected->setValue('test');
$globalParamDao = $this->getGlobalParamDao();
$globalParamDao->save($expected);
$expected->setKey('key2');
$expected->setValue('test2');
$globalParamDao->save($expected);
$actual = $globalParamDao->findByKey($expected->getKey());
$this->assertEntitiesEqual($actual, $expected);
}
public function testRetrievingUnknownKeys()
{
$globalParamDao = $this->getGlobalParamDao();
$actual = $globalParamDao->findByKey('hey i dont exist');
$this->assertNull($actual);
}
private function getGlobalParamDao()
{
return new \Szurubooru\Dao\GlobalParamDao($this->databaseConnection);
}
}