2019-02-04 16:59:09 +03:00
|
|
|
<?php
|
|
|
|
|
|
|
|
use PHPUnit\Framework\TestCase;
|
|
|
|
|
|
|
|
class FormatImplementationTest extends TestCase
|
|
|
|
{
|
|
|
|
private $class;
|
|
|
|
private $obj;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @dataProvider dataFormatsProvider
|
|
|
|
*/
|
|
|
|
public function testClassName($path)
|
|
|
|
{
|
|
|
|
$this->setFormat($path);
|
|
|
|
$this->assertTrue($this->class === ucfirst($this->class), 'class name must start with uppercase character');
|
|
|
|
$this->assertEquals(0, substr_count($this->class, ' '), 'class name must not contain spaces');
|
|
|
|
$this->assertStringEndsWith('Format', $this->class, 'class name must end with "Format"');
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @dataProvider dataFormatsProvider
|
|
|
|
*/
|
|
|
|
public function testClassType($path)
|
|
|
|
{
|
|
|
|
$this->setFormat($path);
|
2023-09-25 22:18:48 +03:00
|
|
|
$this->assertInstanceOf(FormatAbstract::class, $this->obj);
|
2019-02-04 16:59:09 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
public function dataFormatsProvider()
|
|
|
|
{
|
|
|
|
$formats = [];
|
2024-01-25 18:06:24 +03:00
|
|
|
foreach (glob(__DIR__ . '/../formats/*.php') as $path) {
|
2019-02-04 16:59:09 +03:00
|
|
|
$formats[basename($path, '.php')] = [$path];
|
|
|
|
}
|
|
|
|
return $formats;
|
|
|
|
}
|
|
|
|
|
|
|
|
private function setFormat($path)
|
|
|
|
{
|
|
|
|
$this->class = basename($path, '.php');
|
|
|
|
$this->assertTrue(class_exists($this->class), 'class ' . $this->class . ' doesn\'t exist');
|
|
|
|
$this->obj = new $this->class();
|
|
|
|
}
|
|
|
|
}
|