mirror of
https://github.com/DesignPatternsPHP/DesignPatternsPHP.git
synced 2025-06-25 10:43:44 +02:00
72 lines
1.8 KiB
PHP
72 lines
1.8 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace DesignPatterns\Behavioral\Strategy\Tests;
|
|
|
|
use DesignPatterns\Behavioral\Strategy\Context;
|
|
use DesignPatterns\Behavioral\Strategy\DateComparator;
|
|
use DesignPatterns\Behavioral\Strategy\IdComparator;
|
|
use PHPUnit\Framework\TestCase;
|
|
|
|
class StrategyTest extends TestCase
|
|
{
|
|
public function provideIntegers()
|
|
{
|
|
return [
|
|
[
|
|
[['id' => 2], ['id' => 1], ['id' => 3]],
|
|
['id' => 1],
|
|
],
|
|
[
|
|
[['id' => 3], ['id' => 2], ['id' => 1]],
|
|
['id' => 1],
|
|
],
|
|
];
|
|
}
|
|
|
|
public function provideDates()
|
|
{
|
|
return [
|
|
[
|
|
[['date' => '2014-03-03'], ['date' => '2015-03-02'], ['date' => '2013-03-01']],
|
|
['date' => '2013-03-01'],
|
|
],
|
|
[
|
|
[['date' => '2014-02-03'], ['date' => '2013-02-01'], ['date' => '2015-02-02']],
|
|
['date' => '2013-02-01'],
|
|
],
|
|
];
|
|
}
|
|
|
|
/**
|
|
* @dataProvider provideIntegers
|
|
*
|
|
* @param array $collection
|
|
* @param array $expected
|
|
*/
|
|
public function testIdComparator($collection, $expected)
|
|
{
|
|
$obj = new Context(new IdComparator());
|
|
$elements = $obj->executeStrategy($collection);
|
|
|
|
$firstElement = array_shift($elements);
|
|
$this->assertSame($expected, $firstElement);
|
|
}
|
|
|
|
/**
|
|
* @dataProvider provideDates
|
|
*
|
|
* @param array $collection
|
|
* @param array $expected
|
|
*/
|
|
public function testDateComparator($collection, $expected)
|
|
{
|
|
$obj = new Context(new DateComparator());
|
|
$elements = $obj->executeStrategy($collection);
|
|
|
|
$firstElement = array_shift($elements);
|
|
$this->assertSame($expected, $firstElement);
|
|
}
|
|
}
|