summaryrefslogtreecommitdiff
path: root/tests/test_uris.py
blob: c223d3eaa01e9904ab7072c2f5041cc1fc2f3caa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import unittest

from gi.repository import GLib

class TestUris(unittest.TestCase):
    def testExtractUris(self):
        uri_list_text = "# urn:isbn:0-201-08372-8\n" + \
                        "http://www.huh.org/books/foo.html\n" + \
                        "http://www.huh.org/books/foo.pdf\n" + \
                        "ftp://ftp.foo.org/books/foo.txt\n"
        uri_list = GLib.uri_list_extract_uris(uri_list_text)
        assert uri_list[0] == "http://www.huh.org/books/foo.html"
        assert uri_list[1] == "http://www.huh.org/books/foo.pdf"
        assert uri_list[2] == "ftp://ftp.foo.org/books/foo.txt"