From 11a39af35cfa63ed6cc2d982f7116a7dbc3d0912 Mon Sep 17 00:00:00 2001 From: fulmeek <36341513+fulmeek@users.noreply.github.com> Date: Mon, 4 Feb 2019 14:59:09 +0100 Subject: [PATCH] [FormatImplementationTest] Add unit tests for format implementations (#1008) --- tests/FormatImplementationTest.php | 44 ++++++++++++++++++++++++++++++ 1 file changed, 44 insertions(+) create mode 100644 tests/FormatImplementationTest.php diff --git a/tests/FormatImplementationTest.php b/tests/FormatImplementationTest.php new file mode 100644 index 00000000..f2df6350 --- /dev/null +++ b/tests/FormatImplementationTest.php @@ -0,0 +1,44 @@ +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); + $this->assertInstanceOf(FormatInterface::class, $this->obj); + } + + //////////////////////////////////////////////////////////////////////////// + + public function dataFormatsProvider() { + $formats = array(); + foreach (glob(PATH_LIB_FORMATS . '*.php') as $path) { + $formats[basename($path, '.php')] = array($path); + } + return $formats; + } + + private function setFormat($path) { + require_once $path; + $this->class = basename($path, '.php'); + $this->assertTrue(class_exists($this->class), 'class ' . $this->class . ' doesn\'t exist'); + $this->obj = new $this->class(); + } +}