tao-test/app/taoDelivery/test/unit/model/execution/rds/RdsDeliveryExecutionTest.php

97 lines
3.1 KiB
PHP

<?php
/**
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; under version 2
* of the License (non-upgradable).
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*
* Copyright (c) 2013-2017 (original work) Open Assessment Technologies SA (under the project TAO-PRODUCT);
*/
namespace oat\taoDelivery\test\unit\model\execution\rds;
use DateTime;
use oat\generis\test\TestCase;
use oat\taoDelivery\model\execution\rds\RdsDeliveryExecution;
use oat\taoDelivery\model\execution\rds\RdsDeliveryExecutionService;
class RdsDeliveryExecutionTest extends TestCase
{
private $classUnderTest;
protected function setUp(): void
{
$serviceMock = $this->prophesize(RdsDeliveryExecutionService::class);
$this->classUnderTest = new RdsDeliveryExecution($serviceMock->reveal());
}
/**
* @param string $variableName
* @param callable $validator
*
* @dataProvider variableProvider
*/
public function testGetters($variableName, $validator)
{
$getterMethod = 'get' . ucfirst($variableName);
$this->assertTrue(method_exists($this->classUnderTest, $getterMethod));
$this->assertTrue($validator($this->classUnderTest->$getterMethod()));
}
/**
* @param $variableName
* @param $validator
* @param $value
*
* @dataProvider variableProvider
*/
public function testSetters($variableName, $validator, $value)
{
$getterMethod = 'get' . ucfirst($variableName);
$setterMethod = 'set' . ucfirst($variableName);
$this->assertTrue(method_exists($this->classUnderTest, $setterMethod));
$this->classUnderTest->$setterMethod($value);
$this->assertTrue($validator($this->classUnderTest->$getterMethod()));
}
/**
* DataProvider for the variables of class under test
*
* @return array
*/
public function variableProvider()
{
return [
['identifier', function ($value) {
return $value === null || is_string($value);
}, 'test'],
['label', function ($value) {
return $value === null || is_string($value);
}, 'test'],
['userIdentifier', function ($value) {
return $value === null || is_string($value);
}, 'test'],
['startTime', function ($value) {
return $value === null || is_int($value);
}, new DateTime()],
['finishTime', function ($value) {
return $value === null || is_int($value);
}, new DateTime()],
];
}
}