mirror of
				https://github.com/invoiceninja/invoiceninja.git
				synced 2025-10-31 04:27:29 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			59 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			59 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| /**
 | |
|  * Invoice Ninja (https://invoiceninja.com).
 | |
|  *
 | |
|  * @link https://github.com/invoiceninja/invoiceninja source repository
 | |
|  *
 | |
|  * @copyright Copyright (c) 2021. Invoice Ninja LLC (https://invoiceninja.com)
 | |
|  *
 | |
|  * @license https://opensource.org/licenses/AAL
 | |
|  */
 | |
| namespace Tests\Unit;
 | |
| 
 | |
| use Tests\TestCase;
 | |
| 
 | |
| /**
 | |
|  * @test
 | |
|  */
 | |
| class UrlTest extends TestCase
 | |
| {
 | |
| 
 | |
|    	public function setUp() :void
 | |
|     {
 | |
|         parent::setUp();
 | |
|     }
 | |
| 
 | |
|     public function testNoScheme()
 | |
|     {
 | |
|     	$url = 'google.com';
 | |
| 
 | |
|     	$this->assertEquals("https://google.com", $this->addScheme($url));
 | |
|     }
 | |
| 
 | |
|     public function testNoSchemeAndTrailingSlash()
 | |
|     {
 | |
|     	$url = 'google.com/';
 | |
| 
 | |
|     	$this->assertEquals("https://google.com", $this->addScheme($url));
 | |
|     }
 | |
| 
 | |
| 
 | |
|     public function testNoSchemeAndTrailingSlashAndHttp()
 | |
|     {
 | |
|     	$url = 'http://google.com/';
 | |
| 
 | |
|     	$this->assertEquals("https://google.com", $this->addScheme($url));
 | |
|     }
 | |
| 
 | |
| 	private function addScheme($url, $scheme = 'https://')
 | |
| 	{
 | |
| 
 | |
| 	  $url = str_replace("http://", "", $url);
 | |
| 
 | |
| 	  $url =  parse_url($url, PHP_URL_SCHEME) === null ? $scheme . $url : $url;
 | |
| 
 | |
| 	  return rtrim($url, '/');
 | |
| 
 | |
| 	}
 | |
| 
 | |
| } |