mirror of
https://github.com/wiosna-dev/common-library.git
synced 2026-03-12 09:31:51 +01:00
BaseTestCase & BaseTypeTestCase - add traits to use in other test cases (e.g. in Symfony's kernel-related test case)
This commit is contained in:
@@ -8,14 +8,8 @@
|
|||||||
|
|
||||||
namespace Meritoo\Common\Test\Base;
|
namespace Meritoo\Common\Test\Base;
|
||||||
|
|
||||||
use DateTime;
|
use Meritoo\Common\Traits\Test\Base\BaseTestCaseTrait;
|
||||||
use Generator;
|
|
||||||
use Meritoo\Common\Exception\Type\UnknownOopVisibilityTypeException;
|
|
||||||
use Meritoo\Common\Type\OopVisibilityType;
|
|
||||||
use Meritoo\Common\Utilities\Miscellaneous;
|
|
||||||
use PHPUnit\Framework\TestCase;
|
use PHPUnit\Framework\TestCase;
|
||||||
use ReflectionClass;
|
|
||||||
use ReflectionMethod;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Base test case with common methods and data providers
|
* Base test case with common methods and data providers
|
||||||
@@ -25,214 +19,5 @@ use ReflectionMethod;
|
|||||||
*/
|
*/
|
||||||
abstract class BaseTestCase extends TestCase
|
abstract class BaseTestCase extends TestCase
|
||||||
{
|
{
|
||||||
/**
|
use BaseTestCaseTrait;
|
||||||
* Path of directory with data used by test cases
|
|
||||||
*
|
|
||||||
* @var string
|
|
||||||
*/
|
|
||||||
private static $testsDataDirPath = '.data/tests';
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Provides an empty value
|
|
||||||
*
|
|
||||||
* @return Generator
|
|
||||||
*/
|
|
||||||
public function provideEmptyValue()
|
|
||||||
{
|
|
||||||
yield[''];
|
|
||||||
yield[' '];
|
|
||||||
yield[null];
|
|
||||||
yield[0];
|
|
||||||
yield[false];
|
|
||||||
yield[[]];
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Provides boolean value
|
|
||||||
*
|
|
||||||
* @return Generator
|
|
||||||
*/
|
|
||||||
public function provideBooleanValue()
|
|
||||||
{
|
|
||||||
yield[false];
|
|
||||||
yield[true];
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Provides instance of DateTime class
|
|
||||||
*
|
|
||||||
* @return Generator
|
|
||||||
*/
|
|
||||||
public function provideDateTimeInstance()
|
|
||||||
{
|
|
||||||
yield[new DateTime()];
|
|
||||||
yield[new DateTime('yesterday')];
|
|
||||||
yield[new DateTime('now')];
|
|
||||||
yield[new DateTime('tomorrow')];
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Provides relative / compound format of DateTime
|
|
||||||
*
|
|
||||||
* @return Generator
|
|
||||||
*/
|
|
||||||
public function provideDateTimeRelativeFormat()
|
|
||||||
{
|
|
||||||
yield['now'];
|
|
||||||
yield['yesterday'];
|
|
||||||
yield['tomorrow'];
|
|
||||||
yield['back of 10'];
|
|
||||||
yield['front of 10'];
|
|
||||||
yield['last day of February'];
|
|
||||||
yield['first day of next month'];
|
|
||||||
yield['last day of previous month'];
|
|
||||||
yield['last day of next month'];
|
|
||||||
yield['Y-m-d'];
|
|
||||||
yield['Y-m-d 10:00'];
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Provides path of not existing file, e.g. "lorem/ipsum.jpg"
|
|
||||||
*
|
|
||||||
* @return Generator
|
|
||||||
*/
|
|
||||||
public function provideNotExistingFilePath()
|
|
||||||
{
|
|
||||||
yield['lets-test.doc'];
|
|
||||||
yield['lorem/ipsum.jpg'];
|
|
||||||
yield['surprise/me/one/more/time.txt'];
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Returns path of file used by tests.
|
|
||||||
* It should be placed in /.data/tests directory of this project.
|
|
||||||
*
|
|
||||||
* @param string $fileName Name of file
|
|
||||||
* @param string $directoryPath (optional) Path of directory containing the file
|
|
||||||
* @return string
|
|
||||||
*/
|
|
||||||
public function getFilePathForTesting($fileName, $directoryPath = '')
|
|
||||||
{
|
|
||||||
$rootPath = Miscellaneous::getProjectRootPath();
|
|
||||||
|
|
||||||
$paths = [
|
|
||||||
$rootPath,
|
|
||||||
self::$testsDataDirPath,
|
|
||||||
$directoryPath,
|
|
||||||
$fileName,
|
|
||||||
];
|
|
||||||
|
|
||||||
return Miscellaneous::concatenatePaths($paths);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Verifies visibility and arguments of method
|
|
||||||
*
|
|
||||||
* @param string $classNamespace Namespace of class that contains method to verify
|
|
||||||
* @param string|ReflectionMethod $method Name of method or just the method to verify
|
|
||||||
* @param string $visibilityType Expected visibility of verified method. One of
|
|
||||||
* OopVisibilityType class constants.
|
|
||||||
* @param int $argumentsCount (optional) Expected count/amount of arguments of the
|
|
||||||
* verified method
|
|
||||||
* @param int $requiredArgumentsCount (optional) Expected count/amount of required arguments
|
|
||||||
* of the verified method
|
|
||||||
* @throws UnknownOopVisibilityTypeException
|
|
||||||
*
|
|
||||||
* Attention. 2nd argument, the $method, may be:
|
|
||||||
* - string - name of the method
|
|
||||||
* - instance of ReflectionMethod - just the method (provided by ReflectionClass::getMethod() method)
|
|
||||||
*/
|
|
||||||
protected static function assertMethodVisibilityAndArguments(
|
|
||||||
$classNamespace,
|
|
||||||
$method,
|
|
||||||
$visibilityType,
|
|
||||||
$argumentsCount = 0,
|
|
||||||
$requiredArgumentsCount = 0
|
|
||||||
) {
|
|
||||||
/*
|
|
||||||
* Type of visibility is correct?
|
|
||||||
*/
|
|
||||||
if (!(new OopVisibilityType())->isCorrectType($visibilityType)) {
|
|
||||||
throw new UnknownOopVisibilityTypeException($visibilityType);
|
|
||||||
}
|
|
||||||
|
|
||||||
$reflection = new ReflectionClass($classNamespace);
|
|
||||||
|
|
||||||
/*
|
|
||||||
* Name of method provided only?
|
|
||||||
* Let's find instance of the method (based on reflection)
|
|
||||||
*/
|
|
||||||
if (!$method instanceof ReflectionMethod) {
|
|
||||||
$method = $reflection->getMethod($method);
|
|
||||||
}
|
|
||||||
|
|
||||||
switch ($visibilityType) {
|
|
||||||
case OopVisibilityType::IS_PUBLIC:
|
|
||||||
static::assertTrue($method->isPublic());
|
|
||||||
break;
|
|
||||||
|
|
||||||
case OopVisibilityType::IS_PROTECTED:
|
|
||||||
static::assertTrue($method->isProtected());
|
|
||||||
break;
|
|
||||||
|
|
||||||
case OopVisibilityType::IS_PRIVATE:
|
|
||||||
static::assertTrue($method->isPrivate());
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
|
|
||||||
static::assertEquals($argumentsCount, $method->getNumberOfParameters());
|
|
||||||
static::assertEquals($requiredArgumentsCount, $method->getNumberOfRequiredParameters());
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Verifies visibility and arguments of class constructor
|
|
||||||
*
|
|
||||||
* @param string $classNamespace Namespace of class that contains constructor to verify
|
|
||||||
* @param string $visibilityType Expected visibility of verified method. One of OopVisibilityType class
|
|
||||||
* constants.
|
|
||||||
* @param int $argumentsCount (optional) Expected count/amount of arguments of the verified method
|
|
||||||
* @param int $requiredArgumentsCount (optional) Expected count/amount of required arguments of the verified
|
|
||||||
* method
|
|
||||||
* @throws UnknownOopVisibilityTypeException
|
|
||||||
*/
|
|
||||||
protected static function assertConstructorVisibilityAndArguments(
|
|
||||||
$classNamespace,
|
|
||||||
$visibilityType,
|
|
||||||
$argumentsCount = 0,
|
|
||||||
$requiredArgumentsCount = 0
|
|
||||||
) {
|
|
||||||
/*
|
|
||||||
* Let's grab the constructor
|
|
||||||
*/
|
|
||||||
$reflection = new ReflectionClass($classNamespace);
|
|
||||||
$method = $reflection->getConstructor();
|
|
||||||
|
|
||||||
return static::assertMethodVisibilityAndArguments($classNamespace, $method, $visibilityType, $argumentsCount, $requiredArgumentsCount);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Asserts that class with given namespace has no constructor
|
|
||||||
*
|
|
||||||
* @param string $classNamespace Namespace of class that contains constructor to verify
|
|
||||||
*/
|
|
||||||
protected static function assertHasNoConstructor($classNamespace)
|
|
||||||
{
|
|
||||||
/*
|
|
||||||
* Let's grab the constructor
|
|
||||||
*/
|
|
||||||
$reflection = new ReflectionClass($classNamespace);
|
|
||||||
$constructor = $reflection->getConstructor();
|
|
||||||
|
|
||||||
static::assertNull($constructor);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Sets path of directory with data used by test cases
|
|
||||||
*
|
|
||||||
* @param string $testsDataDirPath Path of directory with data used by test cases
|
|
||||||
*/
|
|
||||||
protected static function setTestsDataDirPath($testsDataDirPath)
|
|
||||||
{
|
|
||||||
static::$testsDataDirPath = $testsDataDirPath;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -8,8 +8,7 @@
|
|||||||
|
|
||||||
namespace Meritoo\Common\Test\Base;
|
namespace Meritoo\Common\Test\Base;
|
||||||
|
|
||||||
use Generator;
|
use Meritoo\Common\Traits\Test\Base\BaseTypeTestCaseTrait;
|
||||||
use Meritoo\Common\Type\Base\BaseType;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Base test case for the type of something
|
* Base test case for the type of something
|
||||||
@@ -19,48 +18,5 @@ use Meritoo\Common\Type\Base\BaseType;
|
|||||||
*/
|
*/
|
||||||
abstract class BaseTypeTestCase extends BaseTestCase
|
abstract class BaseTypeTestCase extends BaseTestCase
|
||||||
{
|
{
|
||||||
/**
|
use BaseTypeTestCaseTrait;
|
||||||
* Verifies availability of all types
|
|
||||||
*/
|
|
||||||
public function testAvailabilityOfAllTypes()
|
|
||||||
{
|
|
||||||
$available = $this->getTestedTypeInstance()->getAll();
|
|
||||||
$all = $this->getAllExpectedTypes();
|
|
||||||
|
|
||||||
static::assertEquals($all, $available);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Verifies whether given type is correct or not
|
|
||||||
*
|
|
||||||
* @param string $type Type to verify
|
|
||||||
* @param bool $expected Information if given type is correct or not
|
|
||||||
*
|
|
||||||
* @dataProvider provideTypeToVerify
|
|
||||||
*/
|
|
||||||
public function testIfGivenTypeIsCorrect($type, $expected)
|
|
||||||
{
|
|
||||||
static::assertEquals($expected, $this->getTestedTypeInstance()->isCorrectType($type));
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Provides type to verify and information if it's correct
|
|
||||||
*
|
|
||||||
* @return Generator
|
|
||||||
*/
|
|
||||||
abstract public function provideTypeToVerify();
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Returns instance of the tested type
|
|
||||||
*
|
|
||||||
* @return BaseType
|
|
||||||
*/
|
|
||||||
abstract protected function getTestedTypeInstance();
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Returns all expected types of the tested type
|
|
||||||
*
|
|
||||||
* @return array
|
|
||||||
*/
|
|
||||||
abstract protected function getAllExpectedTypes();
|
|
||||||
}
|
}
|
||||||
|
|||||||
238
src/Traits/Test/Base/BaseTestCaseTrait.php
Normal file
238
src/Traits/Test/Base/BaseTestCaseTrait.php
Normal file
@@ -0,0 +1,238 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
/**
|
||||||
|
* (c) Meritoo.pl, http://www.meritoo.pl
|
||||||
|
* For the full copyright and license information, please view the LICENSE
|
||||||
|
* file that was distributed with this source code.
|
||||||
|
*/
|
||||||
|
|
||||||
|
namespace Meritoo\Common\Traits\Test\Base;
|
||||||
|
|
||||||
|
use DateTime;
|
||||||
|
use Generator;
|
||||||
|
use Meritoo\Common\Exception\Type\UnknownOopVisibilityTypeException;
|
||||||
|
use Meritoo\Common\Type\OopVisibilityType;
|
||||||
|
use Meritoo\Common\Utilities\Miscellaneous;
|
||||||
|
use ReflectionClass;
|
||||||
|
use ReflectionMethod;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* BaseTestCaseTrait
|
||||||
|
* Created on 2017-11-02
|
||||||
|
*
|
||||||
|
* @author Krzysztof Niziol <krzysztof.niziol@meritoo.pl>
|
||||||
|
* @copyright Meritoo.pl
|
||||||
|
*/
|
||||||
|
trait BaseTestCaseTrait
|
||||||
|
{
|
||||||
|
/**
|
||||||
|
* Path of directory with data used by test cases
|
||||||
|
*
|
||||||
|
* @var string
|
||||||
|
*/
|
||||||
|
private static $testsDataDirPath = '.data/tests';
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Provides an empty value
|
||||||
|
*
|
||||||
|
* @return Generator
|
||||||
|
*/
|
||||||
|
public function provideEmptyValue()
|
||||||
|
{
|
||||||
|
yield[''];
|
||||||
|
yield[' '];
|
||||||
|
yield[null];
|
||||||
|
yield[0];
|
||||||
|
yield[false];
|
||||||
|
yield[[]];
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Provides boolean value
|
||||||
|
*
|
||||||
|
* @return Generator
|
||||||
|
*/
|
||||||
|
public function provideBooleanValue()
|
||||||
|
{
|
||||||
|
yield[false];
|
||||||
|
yield[true];
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Provides instance of DateTime class
|
||||||
|
*
|
||||||
|
* @return Generator
|
||||||
|
*/
|
||||||
|
public function provideDateTimeInstance()
|
||||||
|
{
|
||||||
|
yield[new DateTime()];
|
||||||
|
yield[new DateTime('yesterday')];
|
||||||
|
yield[new DateTime('now')];
|
||||||
|
yield[new DateTime('tomorrow')];
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Provides relative / compound format of DateTime
|
||||||
|
*
|
||||||
|
* @return Generator
|
||||||
|
*/
|
||||||
|
public function provideDateTimeRelativeFormat()
|
||||||
|
{
|
||||||
|
yield['now'];
|
||||||
|
yield['yesterday'];
|
||||||
|
yield['tomorrow'];
|
||||||
|
yield['back of 10'];
|
||||||
|
yield['front of 10'];
|
||||||
|
yield['last day of February'];
|
||||||
|
yield['first day of next month'];
|
||||||
|
yield['last day of previous month'];
|
||||||
|
yield['last day of next month'];
|
||||||
|
yield['Y-m-d'];
|
||||||
|
yield['Y-m-d 10:00'];
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Provides path of not existing file, e.g. "lorem/ipsum.jpg"
|
||||||
|
*
|
||||||
|
* @return Generator
|
||||||
|
*/
|
||||||
|
public function provideNotExistingFilePath()
|
||||||
|
{
|
||||||
|
yield['lets-test.doc'];
|
||||||
|
yield['lorem/ipsum.jpg'];
|
||||||
|
yield['surprise/me/one/more/time.txt'];
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Returns path of file used by tests.
|
||||||
|
* It should be placed in /.data/tests directory of this project.
|
||||||
|
*
|
||||||
|
* @param string $fileName Name of file
|
||||||
|
* @param string $directoryPath (optional) Path of directory containing the file
|
||||||
|
* @return string
|
||||||
|
*/
|
||||||
|
public function getFilePathForTesting($fileName, $directoryPath = '')
|
||||||
|
{
|
||||||
|
$rootPath = Miscellaneous::getProjectRootPath();
|
||||||
|
|
||||||
|
$paths = [
|
||||||
|
$rootPath,
|
||||||
|
self::$testsDataDirPath,
|
||||||
|
$directoryPath,
|
||||||
|
$fileName,
|
||||||
|
];
|
||||||
|
|
||||||
|
return Miscellaneous::concatenatePaths($paths);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Verifies visibility and arguments of method
|
||||||
|
*
|
||||||
|
* @param string $classNamespace Namespace of class that contains method to verify
|
||||||
|
* @param string|ReflectionMethod $method Name of method or just the method to verify
|
||||||
|
* @param string $visibilityType Expected visibility of verified method. One of
|
||||||
|
* OopVisibilityType class constants.
|
||||||
|
* @param int $argumentsCount (optional) Expected count/amount of arguments of the
|
||||||
|
* verified method
|
||||||
|
* @param int $requiredArgumentsCount (optional) Expected count/amount of required arguments
|
||||||
|
* of the verified method
|
||||||
|
* @throws UnknownOopVisibilityTypeException
|
||||||
|
*
|
||||||
|
* Attention. 2nd argument, the $method, may be:
|
||||||
|
* - string - name of the method
|
||||||
|
* - instance of ReflectionMethod - just the method (provided by ReflectionClass::getMethod() method)
|
||||||
|
*/
|
||||||
|
protected static function assertMethodVisibilityAndArguments(
|
||||||
|
$classNamespace,
|
||||||
|
$method,
|
||||||
|
$visibilityType,
|
||||||
|
$argumentsCount = 0,
|
||||||
|
$requiredArgumentsCount = 0
|
||||||
|
) {
|
||||||
|
/*
|
||||||
|
* Type of visibility is correct?
|
||||||
|
*/
|
||||||
|
if (!(new OopVisibilityType())->isCorrectType($visibilityType)) {
|
||||||
|
throw new UnknownOopVisibilityTypeException($visibilityType);
|
||||||
|
}
|
||||||
|
|
||||||
|
$reflection = new ReflectionClass($classNamespace);
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Name of method provided only?
|
||||||
|
* Let's find instance of the method (based on reflection)
|
||||||
|
*/
|
||||||
|
if (!$method instanceof ReflectionMethod) {
|
||||||
|
$method = $reflection->getMethod($method);
|
||||||
|
}
|
||||||
|
|
||||||
|
switch ($visibilityType) {
|
||||||
|
case OopVisibilityType::IS_PUBLIC:
|
||||||
|
static::assertTrue($method->isPublic());
|
||||||
|
break;
|
||||||
|
|
||||||
|
case OopVisibilityType::IS_PROTECTED:
|
||||||
|
static::assertTrue($method->isProtected());
|
||||||
|
break;
|
||||||
|
|
||||||
|
case OopVisibilityType::IS_PRIVATE:
|
||||||
|
static::assertTrue($method->isPrivate());
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
|
static::assertEquals($argumentsCount, $method->getNumberOfParameters());
|
||||||
|
static::assertEquals($requiredArgumentsCount, $method->getNumberOfRequiredParameters());
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Verifies visibility and arguments of class constructor
|
||||||
|
*
|
||||||
|
* @param string $classNamespace Namespace of class that contains constructor to verify
|
||||||
|
* @param string $visibilityType Expected visibility of verified method. One of OopVisibilityType class
|
||||||
|
* constants.
|
||||||
|
* @param int $argumentsCount (optional) Expected count/amount of arguments of the verified method
|
||||||
|
* @param int $requiredArgumentsCount (optional) Expected count/amount of required arguments of the verified
|
||||||
|
* method
|
||||||
|
* @throws UnknownOopVisibilityTypeException
|
||||||
|
*/
|
||||||
|
protected static function assertConstructorVisibilityAndArguments(
|
||||||
|
$classNamespace,
|
||||||
|
$visibilityType,
|
||||||
|
$argumentsCount = 0,
|
||||||
|
$requiredArgumentsCount = 0
|
||||||
|
) {
|
||||||
|
/*
|
||||||
|
* Let's grab the constructor
|
||||||
|
*/
|
||||||
|
$reflection = new ReflectionClass($classNamespace);
|
||||||
|
$method = $reflection->getConstructor();
|
||||||
|
|
||||||
|
static::assertMethodVisibilityAndArguments($classNamespace, $method, $visibilityType, $argumentsCount, $requiredArgumentsCount);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Asserts that class with given namespace has no constructor
|
||||||
|
*
|
||||||
|
* @param string $classNamespace Namespace of class that contains constructor to verify
|
||||||
|
*/
|
||||||
|
protected static function assertHasNoConstructor($classNamespace)
|
||||||
|
{
|
||||||
|
/*
|
||||||
|
* Let's grab the constructor
|
||||||
|
*/
|
||||||
|
$reflection = new ReflectionClass($classNamespace);
|
||||||
|
$constructor = $reflection->getConstructor();
|
||||||
|
|
||||||
|
static::assertNull($constructor);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Sets path of directory with data used by test cases
|
||||||
|
*
|
||||||
|
* @param string $testsDataDirPath Path of directory with data used by test cases
|
||||||
|
*/
|
||||||
|
protected static function setTestsDataDirPath($testsDataDirPath)
|
||||||
|
{
|
||||||
|
static::$testsDataDirPath = $testsDataDirPath;
|
||||||
|
}
|
||||||
|
}
|
||||||
66
src/Traits/Test/Base/BaseTypeTestCaseTrait.php
Normal file
66
src/Traits/Test/Base/BaseTypeTestCaseTrait.php
Normal file
@@ -0,0 +1,66 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
/**
|
||||||
|
* (c) Meritoo.pl, http://www.meritoo.pl
|
||||||
|
* For the full copyright and license information, please view the LICENSE
|
||||||
|
* file that was distributed with this source code.
|
||||||
|
*/
|
||||||
|
|
||||||
|
namespace Meritoo\Common\Traits\Test\Base;
|
||||||
|
|
||||||
|
use Generator;
|
||||||
|
use Meritoo\Common\Type\Base\BaseType;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Trait for the base test case for the type of something
|
||||||
|
*
|
||||||
|
* @author Krzysztof Niziol <krzysztof.niziol@meritoo.pl>
|
||||||
|
* @copyright Meritoo.pl
|
||||||
|
*/
|
||||||
|
trait BaseTypeTestCaseTrait
|
||||||
|
{
|
||||||
|
/**
|
||||||
|
* Verifies availability of all types
|
||||||
|
*/
|
||||||
|
public function testAvailabilityOfAllTypes()
|
||||||
|
{
|
||||||
|
$available = $this->getTestedTypeInstance()->getAll();
|
||||||
|
$all = $this->getAllExpectedTypes();
|
||||||
|
|
||||||
|
static::assertEquals($all, $available);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Verifies whether given type is correct or not
|
||||||
|
*
|
||||||
|
* @param string $type Type to verify
|
||||||
|
* @param bool $expected Information if given type is correct or not
|
||||||
|
*
|
||||||
|
* @dataProvider provideTypeToVerify
|
||||||
|
*/
|
||||||
|
public function testIfGivenTypeIsCorrect($type, $expected)
|
||||||
|
{
|
||||||
|
static::assertEquals($expected, $this->getTestedTypeInstance()->isCorrectType($type));
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Provides type to verify and information if it's correct
|
||||||
|
*
|
||||||
|
* @return Generator
|
||||||
|
*/
|
||||||
|
abstract public function provideTypeToVerify();
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Returns instance of the tested type
|
||||||
|
*
|
||||||
|
* @return BaseType
|
||||||
|
*/
|
||||||
|
abstract protected function getTestedTypeInstance();
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Returns all expected types of the tested type
|
||||||
|
*
|
||||||
|
* @return array
|
||||||
|
*/
|
||||||
|
abstract protected function getAllExpectedTypes();
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user