RouterTest.php 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125
  1. <?php
  2. class RoutingTest extends PHPUnit_Framework_TestCase {
  3. public static function setUpBeforeClass()
  4. {
  5. $routes = array();
  6. $routes['GET /'] = array('name' => 'root', 'do' => function() {});
  7. $routes['GET /home'] = array('name' => 'home', 'do' => function() {});
  8. $routes['POST /home'] = array('name' => 'post-home', 'do' => function() {});
  9. $routes['GET /user/(:num)'] = array('name' => 'user', 'do' => function() {});
  10. $routes['GET /user/(:any)/(:num)/edit'] = array('name' => 'edit', 'do' => function() {});
  11. $routes['GET /cart/(:num?)'] = array('name' => 'cart', 'do' => function() {});
  12. $routes['GET /download/(:num?)/(:any?)'] = array('name' => 'download', 'do' => function() {});
  13. System\Router::$routes = $routes;
  14. }
  15. public static function tearDownAfterClass()
  16. {
  17. System\Router::$routes = null;
  18. }
  19. public function tearDown()
  20. {
  21. Utils::rrmdir(APP_PATH.'routes');
  22. }
  23. public function testRouterReturnsNullWhenNotFound()
  24. {
  25. $this->assertNull(System\Router::route('GET', 'doesnt-exist'));
  26. }
  27. public function testRouterRoutesToRootWhenItIsRequest()
  28. {
  29. $this->assertEquals(System\Router::route('GET', '/')->callback['name'], 'root');
  30. }
  31. public function testRouterRoutesToProperRouteWhenSegmentsArePresent()
  32. {
  33. $this->assertEquals(System\Router::route('GET', 'home')->callback['name'], 'home');
  34. $this->assertEquals(System\Router::route('GET', 'user/1')->callback['name'], 'user');
  35. $this->assertEquals(System\Router::route('GET', 'user/taylor/25/edit')->callback['name'], 'edit');
  36. $this->assertEquals(System\Router::route('POST', 'home')->callback['name'], 'post-home');
  37. }
  38. public function testRouterGivesRouteProperSegmentsWhenTheyArePresent()
  39. {
  40. $this->assertEquals(System\Router::route('GET', 'user/1')->parameters[0], 1);
  41. $this->assertEquals(count(System\Router::route('GET', 'user/1')->parameters), 1);
  42. $this->assertEquals(System\Router::route('GET', 'user/taylor/25/edit')->parameters[0], 'taylor');
  43. $this->assertEquals(System\Router::route('GET', 'user/taylor/25/edit')->parameters[1], 25);
  44. $this->assertEquals(count(System\Router::route('GET', 'user/taylor/25/edit')->parameters), 2);
  45. }
  46. public function testRouterRoutesToProperRouteWhenUsingOptionalSegments()
  47. {
  48. $this->assertEquals(System\Router::route('GET', 'cart')->callback['name'], 'cart');
  49. $this->assertEquals(System\Router::route('GET', 'cart/1')->callback['name'], 'cart');
  50. $this->assertEquals(System\Router::route('GET', 'download')->callback['name'], 'download');
  51. $this->assertEquals(System\Router::route('GET', 'download/1')->callback['name'], 'download');
  52. $this->assertEquals(System\Router::route('GET', 'download/1/a')->callback['name'], 'download');
  53. }
  54. public function testRouterGivesRouteProperOptionalSegmentsWhenTheyArePresent()
  55. {
  56. $this->assertTrue(is_array(System\Router::route('GET', 'cart')->parameters));
  57. $this->assertEquals(count(System\Router::route('GET', 'cart')->parameters), 0);
  58. $this->assertEquals(System\Router::route('GET', 'cart/1')->parameters[0], 1);
  59. $this->assertEquals(count(System\Router::route('GET', 'download')->parameters), 0);
  60. $this->assertEquals(System\Router::route('GET', 'download/1')->parameters[0], 1);
  61. $this->assertEquals(count(System\Router::route('GET', 'download/1')->parameters), 1);
  62. $this->assertEquals(System\Router::route('GET', 'download/1/a')->parameters[0], 1);
  63. $this->assertEquals(System\Router::route('GET', 'download/1/a')->parameters[1], 'a');
  64. $this->assertEquals(count(System\Router::route('GET', 'download/1/a')->parameters), 2);
  65. }
  66. public function testRouterReturnsNullWhenRouteNotFound()
  67. {
  68. $this->assertNull(System\Router::route('GET', 'user/taylor/taylor/edit'));
  69. $this->assertNull(System\Router::route('GET', 'user/taylor'));
  70. $this->assertNull(System\Router::route('GET', 'user/12-3'));
  71. $this->assertNull(System\Router::route('GET', 'cart/a'));
  72. $this->assertNull(System\Router::route('GET', 'cart/12-3'));
  73. $this->assertNull(System\Router::route('GET', 'download/a'));
  74. $this->assertNull(System\Router::route('GET', 'download/1a'));
  75. $this->assertNull(System\Router::route('POST', 'user/taylor/25/edit'));
  76. }
  77. public function testRouteLoaderShouldReturnSingleRoutesFileWhenNoFolderIsPresent()
  78. {
  79. $routes = System\Router::load('test');
  80. // Only the Laravel default route should be returned.
  81. $this->assertArrayHasKey('GET /', $routes);
  82. }
  83. public function testRouteLoaderLoadsRouteFilesInRouteDirectoryByURI()
  84. {
  85. $this->setupRoutesDirectory();
  86. $this->assertArrayHasKey('GET /user', System\Router::load('user'));
  87. $this->assertArrayHasKey('GET /cart/edit', System\Router::load('cart'));
  88. $this->assertArrayHasKey('GET /cart/edit', System\Router::load('cart/edit'));
  89. }
  90. public function testRouteLoaderLoadsBaseRoutesFileForEveryRequest()
  91. {
  92. $this->setupRoutesDirectory();
  93. $this->assertArrayHasKey('GET /', System\Router::load('user'));
  94. }
  95. private function setupRoutesDirectory()
  96. {
  97. mkdir(APP_PATH.'routes', 0777);
  98. file_put_contents(APP_PATH.'routes/user.php', "<?php return array('GET /user' => function() {return '/user';}); ?>", LOCK_EX);
  99. file_put_contents(APP_PATH.'routes/cart.php', "<?php return array('GET /cart/edit' => function() {return '/cart/edit';}); ?>", LOCK_EX);
  100. }
  101. }