UriTest.php 758 B

1234567891011121314151617181920212223242526272829303132
  1. <?php
  2. class UriTest extends PHPUnit_Framework_TestCase {
  3. /**
  4. * @dataProvider uri_provider
  5. */
  6. public function test_get_method_returns_correct_uri($uri, $expectation)
  7. {
  8. $uri = new Laravel\URI(array('REQUEST_URI' => $uri));
  9. $this->assertEquals($uri->get(), $expectation);
  10. }
  11. public function uri_provider()
  12. {
  13. return array(
  14. array('/index.php/', '/'),
  15. array('/index.php//', '/'),
  16. array('', '/'),
  17. array('/', '/'),
  18. array('/index.php/user', 'user'),
  19. array('/index.php/user/something', 'user/something'),
  20. array('/user', 'user'),
  21. array('/user/something', 'user/something'),
  22. array('http://localhost/index.php/user', 'user'),
  23. array('http://localhost/user', 'user'),
  24. array('http://localhost/index.php/', '/'),
  25. );
  26. }
  27. }