Blame lang/python/tests/t-wait.py

Packit d7e8d0
#!/usr/bin/env python
Packit d7e8d0
Packit d7e8d0
# Copyright (C) 2016 g10 Code GmbH
Packit d7e8d0
#
Packit d7e8d0
# This file is part of GPGME.
Packit d7e8d0
#
Packit d7e8d0
# GPGME is free software; you can redistribute it and/or modify it
Packit d7e8d0
# under the terms of the GNU General Public License as published by
Packit d7e8d0
# the Free Software Foundation; either version 2 of the License, or
Packit d7e8d0
# (at your option) any later version.
Packit d7e8d0
#
Packit d7e8d0
# GPGME is distributed in the hope that it will be useful, but WITHOUT
Packit d7e8d0
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
Packit d7e8d0
# or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General
Packit d7e8d0
# Public License for more details.
Packit d7e8d0
#
Packit d7e8d0
# You should have received a copy of the GNU Lesser General Public
Packit Service 30b792
# License along with this program; if not, see <https://www.gnu.org/licenses/>.
Packit d7e8d0
Packit d7e8d0
from __future__ import absolute_import, print_function, unicode_literals
Packit d7e8d0
Packit d7e8d0
import time
Packit d7e8d0
import gpg
Packit d7e8d0
import support
Packit Service 30b792
_ = support  # to appease pyflakes.
Packit Service 30b792
Packit Service 30b792
del absolute_import, print_function, unicode_literals
Packit d7e8d0
Packit d7e8d0
c = gpg.Context()
Packit d7e8d0
c.set_armor(True)
Packit d7e8d0
Packit d7e8d0
# Checking a message without a signature.
Packit d7e8d0
sig = gpg.Data("foo\n")
Packit d7e8d0
text = gpg.Data()
Packit d7e8d0
c.op_verify_start(sig, None, text)
Packit d7e8d0
Packit d7e8d0
try:
Packit d7e8d0
    while True:
Packit d7e8d0
        err = c.wait(False)
Packit d7e8d0
        if err:
Packit d7e8d0
            break
Packit d7e8d0
        time.sleep(0.1)
Packit d7e8d0
except Exception as e:
Packit d7e8d0
    assert e.getcode() == gpg.errors.NO_DATA
Packit d7e8d0
else:
Packit d7e8d0
    assert False, "Expected an error, got none"