aboutsummaryrefslogtreecommitdiffhomepage
path: root/tests/http/UrlUtils/GetUrlSchemeTest.php
blob: 2b97f7be649a4c120fb31c24f13ab19f70b7c3a1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<?php
/**
 * Unitary tests for get_url_scheme()
 */

namespace Shaarli\Http;

require_once 'application/http/UrlUtils.php';

class GetUrlSchemeTest extends \PHPUnit\Framework\TestCase
{
    /**
     * Get empty scheme string for empty UrlUtils
     */
    public function testGetUrlSchemeEmpty()
    {
        $this->assertEquals('', get_url_scheme(''));
    }

    /**
     * Get normal scheme of UrlUtils
     */
    public function testGetUrlScheme()
    {
        $this->assertEquals('http', get_url_scheme('http://domain.tld:3000'));
        $this->assertEquals('https', get_url_scheme('https://domain.tld:3000'));
        $this->assertEquals('http', get_url_scheme('domain.tld'));
        $this->assertEquals('ssh', get_url_scheme('ssh://domain.tld'));
        $this->assertEquals('ftp', get_url_scheme('ftp://domain.tld'));
        $this->assertEquals('git', get_url_scheme('git://domain.tld/push?pull=clone#checkout'));
    }
}