RequestTest.php 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. <?php
  2. class RequestTest extends PHPUnit_Framework_TestCase {
  3. public function setUp()
  4. {
  5. $_SERVER = array();
  6. Laravel\Request::$uri = null;
  7. }
  8. /**
  9. * @expectedException Exception
  10. */
  11. public function test_exception_thrown_if_uri_cant_be_determined()
  12. {
  13. Laravel\Request::uri();
  14. }
  15. public function test_uri_method_returns_path_info_if_set()
  16. {
  17. $_SERVER['PATH_INFO'] = 'something';
  18. $this->assertEquals('something', Laravel\Request::uri());
  19. }
  20. /**
  21. * @dataProvider requestUriProvider
  22. */
  23. public function test_correct_uri_is_returned_when_request_uri_is_used($uri, $expectation)
  24. {
  25. $_SERVER['REQUEST_URI'] = $uri;
  26. $this->assertEquals($expectation, Laravel\Request::uri());
  27. }
  28. public function requestUriProvider()
  29. {
  30. return array(
  31. array('/index.php', '/'),
  32. array('/index.php/', '/'),
  33. array('http://localhost/user', 'user'),
  34. array('http://localhost/user/', 'user'),
  35. array('http://localhost/index.php', '/'),
  36. array('http://localhost/index.php/', '/'),
  37. array('http://localhost/index.php//', '/'),
  38. array('http://localhost/index.php/user', 'user'),
  39. array('http://localhost/index.php/user/', 'user'),
  40. array('http://localhost/index.php/user/profile', 'user/profile'),
  41. );
  42. }
  43. }