2ff58fcbd5
* lang/python/pyme/__init__.py: Avoid leaking low-level 'gpgme', make sure the main module looks nice and tidy, appease pyflakes. * lang/python/pyme/errors.py: Appease pyflakes. * lang/python/pyme/util.py: Avoid leaking low-level 'gpgme' into the module namespace. * lang/python/pyme/version.py.in: Likewise. * lang/python/tests/t-keylist.py: Drop superfluous imports. * lang/python/tests/t-sig-notation.py: Likewise. * lang/python/tests/t-sign.py: Likewise. * lang/python/tests/t-signers.py: Likewise. Signed-off-by: Justus Winter <justus@g10code.com>
68 lines
2.2 KiB
Python
Executable File
68 lines
2.2 KiB
Python
Executable File
#!/usr/bin/env python3
|
|
|
|
# Copyright (C) 2016 g10 Code GmbH
|
|
#
|
|
# This file is part of GPGME.
|
|
#
|
|
# GPGME is free software; you can redistribute it and/or modify it
|
|
# under the terms of the GNU General Public License as published by
|
|
# the Free Software Foundation; either version 2 of the License, or
|
|
# (at your option) any later version.
|
|
#
|
|
# GPGME 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 Lesser General
|
|
# Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU Lesser General Public
|
|
# License along with this program; if not, see <http://www.gnu.org/licenses/>.
|
|
|
|
import os
|
|
from pyme import core, constants
|
|
import support
|
|
|
|
expected_notations = {
|
|
"laughing@me": ("Just Squeeze Me", constants.SIG_NOTATION_HUMAN_READABLE),
|
|
"preferred-email-encoding@pgp.com": ("pgpmime",
|
|
constants.SIG_NOTATION_HUMAN_READABLE
|
|
| constants.SIG_NOTATION_CRITICAL),
|
|
None: ("http://www.gnu.org/policy/", 0),
|
|
}
|
|
|
|
def check_result(result):
|
|
assert len(result.signatures) == 1, "Unexpected number of signatures"
|
|
sig = result.signatures[0]
|
|
assert len(sig.notations) == len(expected_notations)
|
|
|
|
for r in sig.notations:
|
|
assert not 'name_len' in dir(r)
|
|
assert not 'value_len' in dir(r)
|
|
assert r.name in expected_notations
|
|
value, flags = expected_notations.pop(r.name)
|
|
|
|
assert r.value == value, \
|
|
"Expected {!r}, got {!r}".format(value, r.value)
|
|
assert r.human_readable \
|
|
== bool(flags&constants.SIG_NOTATION_HUMAN_READABLE)
|
|
assert r.critical \
|
|
== bool(flags&constants.SIG_NOTATION_CRITICAL)
|
|
|
|
assert len(expected_notations) == 0
|
|
|
|
support.init_gpgme(constants.PROTOCOL_OpenPGP)
|
|
|
|
source = core.Data("Hallo Leute\n")
|
|
signed = core.Data()
|
|
|
|
c = core.Context()
|
|
for name, (value, flags) in expected_notations.items():
|
|
c.sig_notation_add(name, value, flags)
|
|
|
|
c.op_sign(source, signed, constants.SIG_MODE_NORMAL)
|
|
|
|
signed.seek(0, os.SEEK_SET)
|
|
sink = core.Data()
|
|
c.op_verify(signed, None, sink)
|
|
result = c.op_verify_result()
|
|
check_result(result)
|