File: utils.py

package info (click to toggle)
usagestats 0.5-1
  • links: PTS
  • area: main
  • in suites: stretch
  • size: 172 kB
  • ctags: 73
  • sloc: python: 555; sh: 60; makefile: 17
file content (78 lines) | stat: -rw-r--r-- 1,809 bytes parent folder | download | duplicates (4)
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
import contextlib
import sys
import re


if sys.version_info < (3,):
    from itertools import izip_longest as zip_longest
else:
    from itertools import zip_longest


class FakeStream(object):
    def __init__(self):
        self.written = []

    def write(self, s):
        if isinstance(s, bytes):
            self.written.append(s)
        else:
            self.written.append(s.encode('utf-8'))

    def getvalue(self):
        value = b''.join(self.written)
        self.written = [value]
        return value


@contextlib.contextmanager
def capture_stream(stream):
    lines = []
    old = getattr(sys, stream)
    sio = FakeStream()
    setattr(sys, stream, sio)
    try:
        yield lines
    finally:
        setattr(sys, stream, old)
        lines.extend(sio.getvalue().split(b'\n'))
        if lines and not lines[-1]:
            del lines[-1]


@contextlib.contextmanager
def capture_stdout():
    with capture_stream('stdout') as lines:
        yield lines


@contextlib.contextmanager
def capture_stderr():
    with capture_stream('stderr') as lines:
        yield lines


def _fail(msg):
    raise AssertionError(msg)


def regex_compare(actual, expected, fail=_fail):
    if isinstance(actual, bytes):
        actual = actual.splitlines()
        if actual and not actual[-1]:
            actual = actual[:-1]
    elif not isinstance(actual, (list, tuple)):
        raise TypeError

    try:
        for a, e in zip_longest(actual, expected):
            if e is None:
                fail("Unexpected line %r" % a)
            elif a is None:
                fail("Missing line: expected %r" % a)
            else:
                if not re.search(e, a):
                    fail("%r != %r" % (a, e))
    except Exception:
        print("Tested output: %r" % (actual,))
        raise