RouteLoaderTest.php 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. <?php use Laravel\Routing\Loader;
  2. class RouteLoaderTest extends PHPUnit_Framework_TestCase {
  3. public function test_loader_can_load_base_routes()
  4. {
  5. $loader = $this->getLoader();
  6. $routes = $loader->load('/');
  7. $this->assertEquals(count($routes), 2);
  8. $this->assertTrue(array_key_exists('GET /', $routes));
  9. $this->assertTrue(array_key_exists('GET /root', $routes));
  10. }
  11. public function test_loader_can_load_single_nested_routes()
  12. {
  13. $loader = $this->getLoader();
  14. $routes = $loader->load('user');
  15. $this->assertEquals(count($routes), 4);
  16. $this->assertTrue(array_key_exists('GET /user', $routes));
  17. $this->assertTrue(array_key_exists('GET /user/profile', $routes));
  18. }
  19. public function test_loader_can_load_multi_nested_routes()
  20. {
  21. $loader = $this->getLoader();
  22. $routes = $loader->load('admin/panel');
  23. $this->assertEquals(count($routes), 4);
  24. $this->assertTrue(array_key_exists('GET /admin/panel/show', $routes));
  25. $this->assertTrue(array_key_exists('GET /admin/panel/update', $routes));
  26. }
  27. public function test_everything_loads_all_routes()
  28. {
  29. $loader = $this->getLoader();
  30. $routes = $loader->everything();
  31. $this->assertEquals(count($routes), 6);
  32. }
  33. private function getLoader()
  34. {
  35. return new Loader(FIXTURE_PATH.'RouteLoader/', FIXTURE_PATH.'RouteLoader/routes/');
  36. }
  37. }