summaryrefslogtreecommitdiff
path: root/tests/offsets/test_offsets.py
blob: 84a852dcb9720e4e55ff559608ff7d5d895bfa44 (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
import io
import os
import tempfile
import difflib
import contextlib
import subprocess
import unittest


@contextlib.contextmanager
def temp_filename(*args, **kwargs):
    fd, name = tempfile.mkstemp(*args, **kwargs)
    try:
        os.close(fd)
        yield name
    finally:
        os.unlink(name)


class TestOffsets(unittest.TestCase):

    def test_main(self):
        exe = ".exe" if os.name == "nt" else ""
        gitestoffsets = os.path.join(os.environ["builddir"], "gitestoffsets" + exe)

        env = os.environ.copy()
        env["GI_TYPELIB_PATH"] = os.pathsep.join(
            [os.environ["builddir"], os.environ["top_builddir"]])

        with temp_filename(suffix=".compiled") as compiled_name, \
                temp_filename(suffix=".introspected") as introspected_name:

            subprocess.check_call(
                [gitestoffsets, compiled_name, introspected_name], env=env)

            with io.open(compiled_name, encoding="utf-8") as compiled, \
                    io.open(introspected_name, encoding="utf-8") as introspected:

                result = difflib.unified_diff(
                    compiled.readlines(), introspected.readlines(),
                    fromfile=compiled_name, tofile=introspected_name)
                result = "".join(result)
                if result:
                    raise AssertionError(result)


if __name__ == '__main__':
    unittest.main()