2016-09-14 08:51:49 +00:00
|
|
|
#!/usr/bin/env python
|
2016-05-12 15:44:54 +00:00
|
|
|
|
|
|
|
# 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/>.
|
|
|
|
|
2016-09-14 09:39:00 +00:00
|
|
|
from __future__ import absolute_import, print_function, unicode_literals
|
|
|
|
del absolute_import, print_function, unicode_literals
|
|
|
|
|
2016-05-27 12:04:28 +00:00
|
|
|
import io
|
2016-05-12 15:44:54 +00:00
|
|
|
import os
|
2016-05-25 10:47:28 +00:00
|
|
|
import tempfile
|
2016-10-31 13:42:26 +00:00
|
|
|
import gpg
|
2016-05-12 15:44:54 +00:00
|
|
|
|
2016-10-31 13:42:26 +00:00
|
|
|
data = gpg.Data('Hello world!')
|
2016-05-12 15:44:54 +00:00
|
|
|
assert data.read() == b'Hello world!'
|
|
|
|
assert data.read() == b''
|
|
|
|
|
|
|
|
data.seek(0, os.SEEK_SET)
|
|
|
|
assert data.read() == b'Hello world!'
|
|
|
|
assert data.read() == b''
|
|
|
|
|
2016-10-31 13:42:26 +00:00
|
|
|
data = gpg.Data(b'Hello world!')
|
2016-05-12 15:44:54 +00:00
|
|
|
assert data.read() == b'Hello world!'
|
|
|
|
|
2016-10-31 13:42:26 +00:00
|
|
|
data = gpg.Data(b'Hello world!', copy=False)
|
2016-05-25 10:47:28 +00:00
|
|
|
assert data.read() == b'Hello world!'
|
|
|
|
|
2016-10-31 13:42:26 +00:00
|
|
|
data = gpg.Data()
|
2016-05-12 15:44:54 +00:00
|
|
|
data.write('Hello world!')
|
|
|
|
data.seek(0, os.SEEK_SET)
|
|
|
|
assert data.read() == b'Hello world!'
|
|
|
|
|
2016-10-31 13:42:26 +00:00
|
|
|
data = gpg.Data()
|
2016-05-12 15:44:54 +00:00
|
|
|
data.write(b'Hello world!')
|
|
|
|
data.seek(0, os.SEEK_SET)
|
|
|
|
assert data.read() == b'Hello world!'
|
|
|
|
|
|
|
|
binjunk = bytes(range(256))
|
2016-10-31 13:42:26 +00:00
|
|
|
data = gpg.Data()
|
2016-05-12 15:44:54 +00:00
|
|
|
data.write(binjunk)
|
|
|
|
data.seek(0, os.SEEK_SET)
|
|
|
|
assert data.read() == binjunk
|
2016-05-25 10:47:28 +00:00
|
|
|
|
2016-10-31 13:42:26 +00:00
|
|
|
data = gpg.Data()
|
2016-05-27 13:58:23 +00:00
|
|
|
data.set_file_name("foobar")
|
|
|
|
assert data.get_file_name() == "foobar"
|
|
|
|
|
2016-05-25 10:47:28 +00:00
|
|
|
# Test reading from an existing file.
|
|
|
|
with tempfile.NamedTemporaryFile() as tmp:
|
|
|
|
tmp.write(binjunk)
|
|
|
|
tmp.flush()
|
|
|
|
tmp.seek(0)
|
|
|
|
|
|
|
|
# Open using name.
|
2016-10-31 13:42:26 +00:00
|
|
|
data = gpg.Data(file=tmp.name)
|
2016-05-25 10:47:28 +00:00
|
|
|
assert data.read() == binjunk
|
|
|
|
|
|
|
|
# Open using name, without copying.
|
|
|
|
if False:
|
|
|
|
# delayed reads are not yet supported
|
2016-10-31 13:42:26 +00:00
|
|
|
data = gpg.Data(file=tmp.name, copy=False)
|
2016-05-25 10:47:28 +00:00
|
|
|
assert data.read() == binjunk
|
|
|
|
|
|
|
|
# Open using stream.
|
|
|
|
tmp.seek(0)
|
2016-10-31 13:42:26 +00:00
|
|
|
data = gpg.Data(file=tmp)
|
2016-05-25 10:47:28 +00:00
|
|
|
assert data.read() == binjunk
|
|
|
|
|
|
|
|
# Open using stream, offset, and length.
|
2016-10-31 13:42:26 +00:00
|
|
|
data = gpg.Data(file=tmp, offset=0, length=42)
|
2016-05-25 10:47:28 +00:00
|
|
|
assert data.read() == binjunk[:42]
|
|
|
|
|
|
|
|
# Open using name, offset, and length.
|
2016-10-31 13:42:26 +00:00
|
|
|
data = gpg.Data(file=tmp.name, offset=23, length=42)
|
2016-05-25 10:47:28 +00:00
|
|
|
assert data.read() == binjunk[23:23+42]
|
2016-05-27 12:04:28 +00:00
|
|
|
|
|
|
|
# Test callbacks.
|
|
|
|
class DataObject(object):
|
|
|
|
def __init__(self):
|
|
|
|
self.buffer = io.BytesIO()
|
|
|
|
self.released = False
|
|
|
|
|
|
|
|
def read(self, amount, hook=None):
|
|
|
|
assert not self.released
|
|
|
|
return self.buffer.read(amount)
|
|
|
|
|
|
|
|
def write(self, data, hook=None):
|
|
|
|
assert not self.released
|
|
|
|
return self.buffer.write(data)
|
|
|
|
|
|
|
|
def seek(self, offset, whence, hook=None):
|
|
|
|
assert not self.released
|
|
|
|
return self.buffer.seek(offset, whence)
|
|
|
|
|
|
|
|
def release(self, hook=None):
|
|
|
|
assert not self.released
|
|
|
|
self.released = True
|
|
|
|
|
|
|
|
do = DataObject()
|
|
|
|
cookie = object()
|
2016-10-31 13:42:26 +00:00
|
|
|
data = gpg.Data(cbs=(do.read, do.write, do.seek, do.release, cookie))
|
2016-05-27 12:04:28 +00:00
|
|
|
data.write('Hello world!')
|
|
|
|
data.seek(0, os.SEEK_SET)
|
|
|
|
assert data.read() == b'Hello world!'
|
|
|
|
del data
|
|
|
|
assert do.released
|
|
|
|
|
|
|
|
# Again, without the cookie.
|
|
|
|
do = DataObject()
|
2016-10-31 13:42:26 +00:00
|
|
|
data = gpg.Data(cbs=(do.read, do.write, do.seek, do.release))
|
2016-05-27 12:04:28 +00:00
|
|
|
data.write('Hello world!')
|
|
|
|
data.seek(0, os.SEEK_SET)
|
|
|
|
assert data.read() == b'Hello world!'
|
|
|
|
del data
|
|
|
|
assert do.released
|