mirror of
https://github.com/BookStackApp/BookStack.git
synced 2024-10-01 01:36:00 -04:00
4b0c4e621a
Also changed up how base URL setting was being done by manipulating incoming request URLs instead of altering then on generation.
25 lines
778 B
PHP
25 lines
778 B
PHP
<?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()
|
|
{
|
|
putenv('APP_URL=http://example.com/bookstack');
|
|
$this->refreshApplication();
|
|
$this->assertEquals('http://example.com/bookstack/books', url('/books'));
|
|
putenv('APP_URL=');
|
|
}
|
|
|
|
} |