UrlTest.php 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. <?php use Laravel\URL, Laravel\Config;
  2. class UrlTest extends PHPUnit_Framework_TestCase {
  3. public function test_simple_url()
  4. {
  5. $this->assertEquals(URL::to(''), 'http://localhost/index.php/');
  6. $this->assertEquals(URL::to('something'), 'http://localhost/index.php/something');
  7. }
  8. public function test_simple_url_without_index()
  9. {
  10. Config::set('application.index', '');
  11. $this->assertEquals(Url::to(''), 'http://localhost/');
  12. $this->assertEquals(Url::to('something'), 'http://localhost/something');
  13. Config::set('application.index', 'index.php');
  14. }
  15. public function test_asset_url()
  16. {
  17. $this->assertEquals(URL::to_asset('img/test.jpg'), 'http://localhost/img/test.jpg');
  18. Config::set('application.index', '');
  19. $this->assertEquals(URL::to_asset('img/test.jpg'), 'http://localhost/img/test.jpg');
  20. Config::set('application.index', 'index.php');
  21. }
  22. public function test_secure_url()
  23. {
  24. $this->assertEquals(URL::to_secure('something'), 'https://localhost/index.php/something');
  25. Config::set('application.ssl', false);
  26. $this->assertEquals(URL::to_secure('something'), 'http://localhost/index.php/something');
  27. Config::set('application.ssl', true);
  28. }
  29. public function test_slug()
  30. {
  31. $this->assertEquals(URL::slug('My favorite blog!!'), 'my-favorite-blog');
  32. $this->assertEquals(URL::slug('My favorite blog!!', '_'), 'my_favorite_blog');
  33. }
  34. }