File: test_io.py

package info (click to toggle)
ppa-dev-tools 0.6.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,096 kB
  • sloc: python: 5,069; makefile: 3
file content (34 lines) | stat: -rw-r--r-- 893 bytes parent folder | download
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
#!/usr/bin/env python3
# -*- Mode: Python; coding: utf-8; indent-tabs-mode: nil; tab-width: 4 -*-

# Author:  Bryce Harrington <bryce@canonical.com>
#
# Copyright (C) 2022 Bryce W. Harrington
#
# Released under GNU GPLv2 or later, read the file 'LICENSE.GPLv2+' for
# more information.

"""Tests for utilities used to read and write data externally."""

import os
import sys
import urllib

sys.path.insert(0, os.path.realpath(
    os.path.join(os.path.dirname(os.path.realpath(__file__)), "..")))

from ppa.io import open_url


def test_open_url(tmp_path):
    """Checks that the open_url() object reads from a valid URL.

    :param fixture tmp_path: Temp dir.
    """
    f = tmp_path / "open_url.txt"
    f.write_text("abcde")

    request = open_url(f"file://{f}")
    assert request
    assert isinstance(request, urllib.response.addinfourl)
    assert request.read().decode() == 'abcde'