mirror of
				https://github.com/BookStackApp/BookStack.git
				synced 2025-11-03 02:13:16 +03:00 
			
		
		
		
	- Was found that the test was not testing the actual situation anyway. - A work-around in the request creation, within testing, just happened to result in the desired outcome. For reference: https://github.com/laravel/framework/pull/32345
		
			
				
	
	
		
			22 lines
		
	
	
		
			643 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			643 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php namespace Tests\Unit;
 | 
						|
 | 
						|
use Tests\TestCase;
 | 
						|
 | 
						|
class UrlTest extends TestCase
 | 
						|
{
 | 
						|
 | 
						|
    public function test_url_helper_takes_custom_url_into_account()
 | 
						|
    {
 | 
						|
        $this->runWithEnv('APP_URL', 'http://example.com/bookstack', function() {
 | 
						|
            $this->assertEquals('http://example.com/bookstack/books', url('/books'));
 | 
						|
        });
 | 
						|
    }
 | 
						|
 | 
						|
    public function test_url_helper_sets_correct_scheme_even_when_request_scheme_is_different()
 | 
						|
    {
 | 
						|
        $this->runWithEnv('APP_URL', 'https://example.com/', function() {
 | 
						|
            $this->get('http://example.com/login')->assertSee('https://example.com/dist/styles.css');
 | 
						|
        });
 | 
						|
    }
 | 
						|
 | 
						|
} |