Spaces:
Build error
Build error
File size: 1,049 Bytes
0827183 |
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 |
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License.
from uuid import uuid4
import aiounittest
from botframework.streaming.payloads import ContentStream
from botframework.streaming.payloads.assemblers import PayloadStreamAssembler
class TestResponses(aiounittest.AsyncTestCase):
async def test_content_stream_ctor_none_assembler_throws(self):
with self.assertRaises(TypeError):
ContentStream(uuid4(), None)
async def test_content_stream_id(self):
test_id = uuid4()
test_assembler = PayloadStreamAssembler(None, test_id)
sut = ContentStream(test_id, test_assembler)
self.assertEqual(test_id, sut.identifier)
async def test_content_stream_type(self):
test_id = uuid4()
test_assembler = PayloadStreamAssembler(None, test_id)
sut = ContentStream(test_id, test_assembler)
test_type = "foo/bar"
sut.content_type = test_type
self.assertEqual(test_type, sut.content_type)
sut.cancel()
|