aboutsummaryrefslogtreecommitdiffstats
path: root/tests/unit/includes/PhotodriverTest.php
diff options
context:
space:
mode:
authorMario <mario@mariovavti.com>2019-02-18 10:02:46 +0100
committerMario <mario@mariovavti.com>2019-02-18 10:02:46 +0100
commitb5109d2a1ae6056ec845c66ad89ccb02b4de0a05 (patch)
treecc5fc990c3178af5c537a47891148a36baa77020 /tests/unit/includes/PhotodriverTest.php
parentf11c17063cfb2133bd3e90b4417e8ffddbe3c29b (diff)
parentb9df4c99cf9fcd1b16757309b4206ad084376aa2 (diff)
downloadvolse-hubzilla-b5109d2a1ae6056ec845c66ad89ccb02b4de0a05.tar.gz
volse-hubzilla-b5109d2a1ae6056ec845c66ad89ccb02b4de0a05.tar.bz2
volse-hubzilla-b5109d2a1ae6056ec845c66ad89ccb02b4de0a05.zip
Merge branch 'photo_driver_refactor' into 'dev'
Photo driver refactor See merge request hubzilla/core!1515
Diffstat (limited to 'tests/unit/includes/PhotodriverTest.php')
-rw-r--r--tests/unit/includes/PhotodriverTest.php39
1 files changed, 39 insertions, 0 deletions
diff --git a/tests/unit/includes/PhotodriverTest.php b/tests/unit/includes/PhotodriverTest.php
new file mode 100644
index 000000000..6f6ad0ffe
--- /dev/null
+++ b/tests/unit/includes/PhotodriverTest.php
@@ -0,0 +1,39 @@
+<?php
+
+namespace Zotlabs\Tests\Unit\includes;
+
+//use Zotlabs\Photo\PhotoGd;
+use Zotlabs\Tests\Unit\UnitTestCase;
+//use phpmock\phpunit\PHPMock;
+
+/**
+ * @brief Unit Test cases for include/photo/photo_driver.php file.
+ */
+class PhotodriverTest extends UnitTestCase {
+ //use PHPMock;
+
+ public function testPhotofactoryReturnsNullForUnsupportedType() {
+ // php-mock can not mock global functions which is called by a global function.
+ // If the calling function is in a namespace it would work.
+ //$logger = $this->getFunctionMock(__NAMESPACE__, 'logger');
+ //$logger->expects($this->once());
+
+ //$ph = \photo_factory('', 'image/bmp');
+ //$this->assertNull($ph);
+
+ $this->markTestIncomplete('Need to mock logger(), otherwise not unit testable.');
+ }
+
+ public function testPhotofactoryReturnsPhotogdIfConfigIgnore_imagickIsSet() {
+ // php-mock can not mock global functions which is called by a global function.
+ // If the calling function is in a namespace it would work.
+ //$gc = $this->getFunctionMock(__NAMESPACE__, 'get_config');
+ // simulate get_config('system', 'ignore_imagick') configured
+ //$gc->expects($this->once())->willReturn(1)
+
+ //$ph = \photo_factory(file_get_contents('images/hz-16.png'), 'image/png');
+ //$this->assertInstanceOf(PhotoGd::class, $ph);
+
+ $this->markTestIncomplete('Need to mock get_config(), otherwise not unit testable.');
+ }
+} \ No newline at end of file