2019-08-04 09:26:39 -04:00
|
|
|
<?php namespace Tests;
|
|
|
|
|
|
|
|
class UrlTest extends TestCase
|
|
|
|
{
|
|
|
|
|
|
|
|
public function test_request_url_takes_custom_url_into_account()
|
|
|
|
{
|
|
|
|
config()->set('app.url', 'http://example.com/bookstack');
|
|
|
|
$this->get('/');
|
|
|
|
$this->assertEquals('http://example.com/bookstack', request()->getUri());
|
|
|
|
|
|
|
|
config()->set('app.url', 'http://example.com/docs/content');
|
|
|
|
$this->get('/');
|
|
|
|
$this->assertEquals('http://example.com/docs/content', request()->getUri());
|
|
|
|
}
|
|
|
|
|
|
|
|
public function test_url_helper_takes_custom_url_into_account()
|
|
|
|
{
|
2019-09-14 09:12:39 -04:00
|
|
|
$this->runWithEnv('APP_URL', 'http://example.com/bookstack', function() {
|
|
|
|
$this->assertEquals('http://example.com/bookstack/books', url('/books'));
|
|
|
|
});
|
2019-08-04 09:26:39 -04:00
|
|
|
}
|
|
|
|
|
2019-09-01 07:07:51 -04:00
|
|
|
public function test_url_helper_sets_correct_scheme_even_when_request_scheme_is_different()
|
|
|
|
{
|
2019-09-14 09:12:39 -04:00
|
|
|
$this->runWithEnv('APP_URL', 'https://example.com/', function() {
|
|
|
|
$this->get('http://example.com/login')->assertSee('https://example.com/dist/styles.css');
|
|
|
|
});
|
2019-09-01 07:07:51 -04:00
|
|
|
}
|
|
|
|
|
2019-08-04 09:26:39 -04:00
|
|
|
}
|