File: test_signature.py

package info (click to toggle)
python-pygit2 1.18.1-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 2,720 kB
  • sloc: ansic: 12,584; python: 9,337; sh: 205; makefile: 26
file content (105 lines) | stat: -rw-r--r-- 3,979 bytes parent folder | download | duplicates (2)
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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
# Copyright 2010-2025 The pygit2 contributors
#
# This file is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License, version 2,
# as published by the Free Software Foundation.
#
# In addition to the permissions in the GNU General Public License,
# the authors give you unlimited permission to link the compiled
# version of this file into combinations with other programs,
# and to distribute those combinations without any restriction
# coming from the use of this file.  (The General Public License
# restrictions do apply in other respects; for example, they cover
# modification of the file, and distribution when not linked into
# a combined executable.)
#
# This file is distributed in the hope that it will be useful, but
# WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
# General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; see the file COPYING.  If not, write to
# the Free Software Foundation, 51 Franklin Street, Fifth Floor,
# Boston, MA 02110-1301, USA.

import re
import time

import pytest

import pygit2


def __assert(signature, encoding):
    encoding = encoding or 'utf-8'
    assert signature._encoding == encoding
    assert signature.name == signature.raw_name.decode(encoding)
    assert signature.name.encode(encoding) == signature.raw_name
    assert signature.email == signature.raw_email.decode(encoding)
    assert signature.email.encode(encoding) == signature.raw_email


@pytest.mark.parametrize('encoding', [None, 'utf-8', 'iso-8859-1'])
def test_encoding(encoding):
    signature = pygit2.Signature('Foo Ibáñez', 'foo@example.com', encoding=encoding)
    __assert(signature, encoding)
    assert abs(signature.time - time.time()) < 5
    assert str(signature) == 'Foo Ibáñez <foo@example.com>'


def test_default_encoding():
    signature = pygit2.Signature('Foo Ibáñez', 'foo@example.com', 1322174594, 60)
    __assert(signature, 'utf-8')


def test_ascii():
    with pytest.raises(UnicodeEncodeError):
        pygit2.Signature('Foo Ibáñez', 'foo@example.com', encoding='ascii')


@pytest.mark.parametrize('encoding', [None, 'utf-8', 'iso-8859-1'])
def test_repr(encoding):
    signature = pygit2.Signature(
        'Foo Ibáñez', 'foo@bar.com', 1322174594, 60, encoding=encoding
    )
    expected = f"pygit2.Signature('Foo Ibáñez', 'foo@bar.com', 1322174594, 60, {repr(encoding)})"
    assert repr(signature) == expected
    assert signature == eval(expected)


def test_repr_from_commit(barerepo):
    repo = barerepo
    signature = pygit2.Signature('Foo Ibáñez', 'foo@example.com', encoding=None)
    tree = '967fce8df97cc71722d3c2a5930ef3e6f1d27b12'
    parents = ['5fe808e8953c12735680c257f56600cb0de44b10']
    sha = repo.create_commit(None, signature, signature, 'New commit.', tree, parents)
    commit = repo[sha]

    assert repr(signature) == repr(commit.author)
    assert repr(signature) == repr(commit.committer)


def test_incorrect_encoding():
    gbk_bytes = 'Café'.encode('GBK')

    # deliberately specifying a mismatching encoding (mojibake)
    signature = pygit2.Signature(gbk_bytes, 'foo@example.com', 999, 0, encoding='utf-8')

    # repr() and str() may display junk, but they must not crash
    assert re.match(
        r"pygit2.Signature\('Caf.+', 'foo@example.com', 999, 0, 'utf-8'\)",
        repr(signature),
    )
    assert re.match(r'Caf.+ <foo@example.com>', str(signature))

    # deliberately specifying an unsupported encoding
    signature = pygit2.Signature(
        gbk_bytes, 'foo@example.com', 999, 0, encoding='this-encoding-does-not-exist'
    )

    # repr() and str() may display junk, but they must not crash
    assert "pygit2.Signature('(error)', '(error)', 999, 0, '(error)')" == repr(
        signature
    )
    assert '(error) <(error)>' == str(signature)