assertEquals('http://localhost/index.php/user/profile', URL::to('user/profile')); $this->assertEquals('https://localhost/index.php/user/profile', URL::to('user/profile', true)); Config::set('application.index', ''); $this->assertEquals('http://localhost/user/profile', URL::to('user/profile')); $this->assertEquals('https://localhost/user/profile', URL::to('user/profile', true)); Config::set('application.ssl', false); $this->assertEquals('http://localhost/user/profile', URL::to('user/profile', true)); } /** * Test the URL::to_action method. * * @group laravel */ public function testToActionMethodGeneratesURLToControllerAction() { Route::get('foo/bar/(:any?)', 'foo@baz'); $this->assertEquals('http://localhost/index.php/x/y', URL::to_action('x@y')); $this->assertEquals('http://localhost/index.php/x/y/Taylor', URL::to_action('x@y', array('Taylor'))); $this->assertEquals('http://localhost/index.php/foo/bar', URL::to_action('foo@baz')); $this->assertEquals('http://localhost/index.php/foo/bar/Taylor', URL::to_action('foo@baz', array('Taylor'))); } /** * Test the URL::to_asset method. * * @group laravel */ public function testToAssetGeneratesURLWithoutFrontControllerInURL() { $this->assertEquals('http://localhost/image.jpg', URL::to_asset('image.jpg')); $this->assertEquals('https://localhost/image.jpg', URL::to_asset('image.jpg', true)); Config::set('application.index', ''); $this->assertEquals('http://localhost/image.jpg', URL::to_asset('image.jpg')); $this->assertEquals('https://localhost/image.jpg', URL::to_asset('image.jpg', true)); Request::foundation()->server->add(array('HTTPS' => 'on')); $this->assertEquals('https://localhost/image.jpg', URL::to_asset('image.jpg')); Request::foundation()->server->add(array('HTTPS' => 'off')); } /** * Test the URL::to_route method. * * @group laravel */ public function testToRouteMethodGeneratesURLsToRoutes() { Route::get('url/test', array('as' => 'url-test')); Route::get('url/test/(:any)/(:any?)', array('as' => 'url-test-2')); Route::get('url/secure/(:any)/(:any?)', array('as' => 'url-test-3', 'https' => true)); $this->assertEquals('http://localhost/index.php/url/test', URL::to_route('url-test')); $this->assertEquals('http://localhost/index.php/url/test/taylor', URL::to_route('url-test-2', array('taylor'))); $this->assertEquals('https://localhost/index.php/url/secure/taylor', URL::to_route('url-test-3', array('taylor'))); $this->assertEquals('http://localhost/index.php/url/test/taylor/otwell', URL::to_route('url-test-2', array('taylor', 'otwell'))); } /** * Test language based URL generation. * * @group laravel */ public function testUrlsGeneratedWithLanguages() { Config::set('application.languages', array('sp', 'fr')); Config::set('application.language', 'sp'); $this->assertEquals('http://localhost/index.php/sp/foo', URL::to('foo')); $this->assertEquals('http://localhost/foo.jpg', URL::to_asset('foo.jpg')); Config::set('application.index', ''); $this->assertEquals('http://localhost/sp/foo', URL::to('foo')); Config::set('application.index', 'index.php'); Config::set('application.language', 'en'); $this->assertEquals('http://localhost/index.php/foo', URL::to('foo')); Config::set('application.languages', array()); } }