2017-06-04 19:50:49 +00:00
|
|
|
# Copyright (c) 2017 PySecretHandshake contributors (see AUTHORS for more details)
|
|
|
|
#
|
|
|
|
# Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
# of this software and associated documentation files (the "Software"), to deal
|
|
|
|
# in the Software without restriction, including without limitation the rights
|
|
|
|
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
|
# copies of the Software, and to permit persons to whom the Software is
|
|
|
|
# furnished to do so, subject to the following conditions:
|
|
|
|
#
|
|
|
|
# The above copyright notice and this permission notice shall be included in all
|
|
|
|
# copies or substantial portions of the Software.
|
|
|
|
#
|
|
|
|
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
|
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
|
|
# SOFTWARE.
|
|
|
|
|
|
|
|
|
|
|
|
import pytest
|
|
|
|
|
2018-02-04 14:50:56 +00:00
|
|
|
from secret_handshake.boxstream import HEADER_LENGTH, BoxStream, UnboxStream
|
2018-02-04 14:41:30 +00:00
|
|
|
from secret_handshake.util import AsyncBuffer, async_comprehend
|
2017-06-04 19:50:49 +00:00
|
|
|
|
2018-02-04 14:50:56 +00:00
|
|
|
from .test_crypto import CLIENT_ENCRYPT_KEY, CLIENT_ENCRYPT_NONCE
|
|
|
|
|
2023-10-29 08:47:57 +00:00
|
|
|
MESSAGE_1 = (
|
|
|
|
b"\xcev\xedE\x06l\x02\x13\xc8\x17V\xfa\x8bZ?\x88B%O\xb0L\x9f\x8e\x8c0y\x1dv\xc0\xc9\xf6\x9d\xc2\xdf\xdb" b"\xee\x9d"
|
|
|
|
)
|
2017-06-04 19:50:49 +00:00
|
|
|
MESSAGE_2 = b"\x141\xd63\x13d\xd1\xecZ\x9b\xd0\xd4\x03\xcdR?'\xaa.\x89I\x92I\xf9guL\xaa\x06?\xea\xca/}\x88*\xb2"
|
2023-10-29 08:47:57 +00:00
|
|
|
MESSAGE_3 = (
|
|
|
|
b'\xcbYY\xf1\x0f\xa5O\x13r\xa6"\x15\xc5\x9d\r.*\x0b\x92\x10m\xa6(\x0c\x0c\xc61\x80j\x81)\x800\xed\xda' b"\xad\xa1"
|
|
|
|
)
|
|
|
|
MESSAGE_CLOSED = b"\xb1\x14hU'\xb5M\xa6\"\x03\x9duy\xa1\xd4evW,\xdcE\x18\xe4+ C4\xe8h\x96\xed\xc5\x94\x80"
|
2017-06-04 19:50:49 +00:00
|
|
|
|
|
|
|
|
|
|
|
@pytest.mark.asyncio
|
|
|
|
async def test_boxstream():
|
|
|
|
buffer = AsyncBuffer()
|
|
|
|
box_stream = BoxStream(buffer, CLIENT_ENCRYPT_KEY, CLIENT_ENCRYPT_NONCE)
|
2023-10-29 08:47:57 +00:00
|
|
|
box_stream.write(b"foo")
|
2017-06-04 19:50:49 +00:00
|
|
|
buffer.seek(0)
|
|
|
|
assert await buffer.read() == MESSAGE_1
|
|
|
|
|
|
|
|
pos = buffer.tell()
|
2023-10-29 08:47:57 +00:00
|
|
|
box_stream.write(b"foo")
|
2017-06-04 19:50:49 +00:00
|
|
|
buffer.seek(pos)
|
|
|
|
assert await buffer.read() == MESSAGE_2
|
|
|
|
|
|
|
|
pos = buffer.tell()
|
2023-10-29 08:47:57 +00:00
|
|
|
box_stream.write(b"bar")
|
2017-06-04 19:50:49 +00:00
|
|
|
buffer.seek(pos)
|
|
|
|
assert await buffer.read() == MESSAGE_3
|
|
|
|
|
|
|
|
pos = buffer.tell()
|
|
|
|
box_stream.close()
|
|
|
|
buffer.seek(pos)
|
|
|
|
assert await buffer.read() == MESSAGE_CLOSED
|
|
|
|
|
|
|
|
|
|
|
|
@pytest.mark.asyncio
|
|
|
|
async def test_unboxstream():
|
|
|
|
buffer = AsyncBuffer(MESSAGE_1 + MESSAGE_2 + MESSAGE_3 + MESSAGE_CLOSED)
|
|
|
|
buffer.seek(0)
|
|
|
|
|
|
|
|
unbox_stream = UnboxStream(buffer, CLIENT_ENCRYPT_KEY, CLIENT_ENCRYPT_NONCE)
|
|
|
|
assert not unbox_stream.closed
|
2023-10-29 08:47:57 +00:00
|
|
|
assert (await async_comprehend(unbox_stream)) == [b"foo", b"foo", b"bar"]
|
2017-06-04 19:50:49 +00:00
|
|
|
assert unbox_stream.closed
|
2017-06-05 09:35:55 +00:00
|
|
|
|
|
|
|
|
|
|
|
@pytest.mark.asyncio
|
|
|
|
async def test_long_packets():
|
|
|
|
data_size = 6 * 1024
|
|
|
|
data = bytes(n % 256 for n in range(data_size))
|
|
|
|
|
|
|
|
# box 6K buffer
|
|
|
|
buffer = AsyncBuffer()
|
|
|
|
box_stream = BoxStream(buffer, CLIENT_ENCRYPT_KEY, CLIENT_ENCRYPT_NONCE)
|
|
|
|
box_stream.write(data)
|
|
|
|
# the size overhead corresponds to the two packet headers
|
|
|
|
assert buffer.tell() == data_size + (HEADER_LENGTH * 2)
|
|
|
|
buffer.seek(0)
|
|
|
|
|
|
|
|
# now let's unbox it and check whether it's OK
|
|
|
|
unbox_stream = UnboxStream(buffer, CLIENT_ENCRYPT_KEY, CLIENT_ENCRYPT_NONCE)
|
|
|
|
first_packet = await unbox_stream.read()
|
|
|
|
assert first_packet == data[:4096]
|
|
|
|
second_packet = await unbox_stream.read()
|
|
|
|
assert second_packet == data[4096:]
|