RouteFinderTest.php 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. <?php
  2. class RouteFinderTest extends PHPUnit_Framework_TestCase {
  3. public static function setUpBeforeClass()
  4. {
  5. $routes = array();
  6. $routes['GET /home'] = array('GET /home' => array('name' => 'home', 'do' => function() {}));
  7. $routes['GET /user'] = array('GET /user' => array('name' => 'user', 'do' => function() {}));
  8. System\Route\Finder::$routes = $routes;
  9. }
  10. public function testRouteFinderReturnsNullWhenRouteIsNotFound()
  11. {
  12. $this->assertNull(System\Route\Finder::find('doesnt-exist'));
  13. }
  14. public function testRouteFinderReturnsRouteWhenFoundInSingleRoutesFile()
  15. {
  16. $this->assertArrayHasKey('GET /home', System\Route\Finder::find('home'));
  17. $this->assertArrayHasKey('GET /user', System\Route\Finder::find('user'));
  18. }
  19. public function testRouteFinderLoadsRoutesFromRouteDirectoryToFindRoutes()
  20. {
  21. System\Route\Finder::$routes = null;
  22. $this->setupRoutesDirectory();
  23. $this->assertArrayHasKey('GET /user', System\Route\Finder::find('user'));
  24. Utils::rrmdir(APP_PATH.'routes');
  25. }
  26. private function setupRoutesDirectory()
  27. {
  28. mkdir(APP_PATH.'routes', 0777);
  29. file_put_contents(APP_PATH.'routes/user.php', "<?php return array('GET /user' => array('name' => 'user', 'do' => function() {return '/user';})); ?>", LOCK_EX);
  30. }
  31. }