]> git.mxchange.org Git - friendica.git/blobdiff - tests/src/App/RouterTest.php
Merge pull request #12606 from nupplaphil/bug/file_put
[friendica.git] / tests / src / App / RouterTest.php
index 5a573bda95b0852b222635b8f06d9fcdce06cffa..e0416dbb327a025931876fe3e20dc2bf18f780b5 100644 (file)
@@ -1,42 +1,89 @@
 <?php
+/**
+ * @copyright Copyright (C) 2010-2023, the Friendica project
+ *
+ * @license GNU AGPL version 3 or any later version
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Affero General Public License as
+ * published by the Free Software Foundation, either version 3 of the
+ * License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU Affero General Public License for more details.
+ *
+ * You should have received a copy of the GNU Affero General Public License
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
+ *
+ */
 
 namespace Friendica\Test\src\App;
 
-use Friendica\App\Router;
+use Dice\Dice;
+use Friendica\App\Arguments;
+use Friendica\Core\Cache\Capability\ICanCache;
+use Friendica\Core\Config\Capability\IManageConfigValues;
+use Friendica\Core\L10n;
+use Friendica\Core\Lock\Capability\ICanLock;
+use Mockery;
+use Mockery\MockInterface;
 use PHPUnit\Framework\TestCase;
 
 class RouterTest extends TestCase
 {
-       public function testGetModuleClass()
+       /** @var L10n|MockInterface */
+       private $l10n;
+       /**
+        * @var ICanCache
+        */
+       private $cache;
+       /**
+        * @var ICanLock
+        */
+       private $lock;
+       /**
+        * @var IManageConfigValues
+        */
+       private $config;
+       /**
+        * @var Dice
+        */
+       private $dice;
+       /**
+        * @var Arguments
+        */
+       private $arguments;
+
+       protected function setUp(): void
        {
-               $router = new Router();
+               parent::setUp();
+
+               self::markTestIncomplete('Router tests need refactoring!');
 
-               $routeCollector = $router->getRouteCollector();
-               $routeCollector->addRoute(['GET'], '/', 'IndexModuleClassName');
-               $routeCollector->addRoute(['GET'], '/test', 'TestModuleClassName');
-               $routeCollector->addRoute(['GET'], '/test/sub', 'TestSubModuleClassName');
-               $routeCollector->addRoute(['GET'], '/optional[/option]', 'OptionalModuleClassName');
-               $routeCollector->addRoute(['GET'], '/variable/{var}', 'VariableModuleClassName');
-               $routeCollector->addRoute(['GET'], '/optionalvariable[/{option}]', 'OptionalVariableModuleClassName');
-               $routeCollector->addRoute(['POST', 'PUT', 'PATCH', 'DELETE', 'HEAD'], '/unsupported', 'UnsupportedMethodModuleClassName');
+               /*
+               $this->l10n = Mockery::mock(L10n::class);
+               $this->l10n->shouldReceive('t')->andReturnUsing(function ($args) { return $args; });
 
-               $this->assertEquals('IndexModuleClassName', $router->getModuleClass('/'));
+               $this->cache = Mockery::mock(ICanCache::class);
+               $this->cache->shouldReceive('get')->andReturn(null);
+               $this->cache->shouldReceive('set')->andReturn(false);
 
-               $this->assertEquals('TestModuleClassName', $router->getModuleClass('/test'));
-               $this->assertNull($router->getModuleClass('/tes'));
+               $this->lock = Mockery::mock(ICanLock::class);
+               $this->lock->shouldReceive('acquire')->andReturn(true);
+               $this->lock->shouldReceive('isLocked')->andReturn(false);
 
-               $this->assertEquals('TestSubModuleClassName', $router->getModuleClass('/test/sub'));
+               $this->config = Mockery::mock(IManageConfigValues::class);
 
-               $this->assertEquals('OptionalModuleClassName', $router->getModuleClass('/optional'));
-               $this->assertEquals('OptionalModuleClassName', $router->getModuleClass('/optional/option'));
-               $this->assertNull($router->getModuleClass('/optional/opt'));
+               $this->dice = new Dice();
 
-               $this->assertEquals('VariableModuleClassName', $router->getModuleClass('/variable/123abc'));
-               $this->assertNull($router->getModuleClass('/variable'));
+               $this->arguments = Mockery::mock(Arguments::class);
+               */
+       }
 
-               $this->assertEquals('OptionalVariableModuleClassName', $router->getModuleClass('/optionalvariable'));
-               $this->assertEquals('OptionalVariableModuleClassName', $router->getModuleClass('/optionalvariable/123abc'));
+       public function test()
+       {
 
-               $this->assertNull($router->getModuleClass('/unsupported'));
        }
 }