1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-20 16:31:33 +02:00
invoiceninja/tests/Unit/UrlTest.php

56 lines
1.2 KiB
PHP
Raw Normal View History

2021-07-07 05:19:19 +02:00
<?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://www.elastic.co/licensing/elastic-license
2021-07-07 05:19:19 +02:00
*/
2021-07-07 05:19:19 +02:00
namespace Tests\Unit;
use Tests\TestCase;
/**
* @test
*/
class UrlTest extends TestCase
{
protected function setUp() :void
2021-07-07 05:19:19 +02:00
{
parent::setUp();
}
public function testNoScheme()
{
$url = 'google.com';
2021-07-07 05:19:19 +02:00
$this->assertEquals('https://google.com', $this->addScheme($url));
2021-07-07 05:19:19 +02:00
}
public function testNoSchemeAndTrailingSlash()
{
$url = 'google.com/';
2021-07-07 05:19:19 +02:00
$this->assertEquals('https://google.com', $this->addScheme($url));
2021-07-07 05:19:19 +02:00
}
public function testNoSchemeAndTrailingSlashAndHttp()
{
$url = 'http://google.com/';
2021-07-07 05:19:19 +02:00
$this->assertEquals('https://google.com', $this->addScheme($url));
2021-07-07 05:19:19 +02:00
}
private function addScheme($url, $scheme = 'https://')
{
$url = str_replace('http://', '', $url);
2021-07-07 05:19:19 +02:00
$url = parse_url($url, PHP_URL_SCHEME) === null ? $scheme.$url : $url;
2021-07-07 05:19:19 +02:00
return rtrim($url, '/');
}
}