aboutsummaryrefslogtreecommitdiff
path: root/WordPress/src/androidTest/java/URITest.java
blob: f0d2c73f68f97536fd21bf70166d92896b705538 (plain)
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
import android.test.InstrumentationTestCase;

import java.net.URI;
import java.net.URISyntaxException;

public class URITest extends InstrumentationTestCase {
    public void testGetHost1() {
        URI uri = null;
        try {
            uri = new URI("https://wordpress.com");
        } catch (URISyntaxException e) {}
        assertNotNull(uri);

        assertEquals("wordpress.com", uri.getHost());
    }

    public void testGetHost2() {
        URI uri = null;
        try {
            uri = new URI("http://a.com#.b.com/test");
        } catch (URISyntaxException e) {}
        assertNotNull(uri);

        assertEquals("a.com", uri.getHost());
    }

    public void testGetHost3() {
        URI uri = null;
        try {
            uri = new URI("https://a.com");
        } catch (URISyntaxException e) {}
        assertNotNull(uri);

        assertEquals("a.com", uri.getHost());
    }

    public void testGetHost4() {
        URI uri = null;
        try {
            uri = new URI("https://a.com/test#test");
        } catch (URISyntaxException e) {}
        assertNotNull(uri);

        assertEquals("a.com", uri.getHost());
    }

    public void testGetHost5() {
        URI uri = null;
        try {
            uri = new URI("a.com");
        } catch (URISyntaxException e) {}
        assertNotNull(uri);

        assertNull(uri.getHost());
    }
}