summaryrefslogtreecommitdiff
path: root/testing
diff options
context:
space:
mode:
authorVictor Shyba <victor1984@riseup.net>2017-03-22 19:16:49 -0300
committerdrebs <drebs@leap.se>2017-04-04 18:27:38 +0200
commit4cf662b0b043579badd231f30fc4eb58f9e6f09c (patch)
tree78bd3b9490fa1a472b4891a088a68bcd6dcc23ef /testing
parentaaa9115cfd4096a4fb6cf0ffbc2c07c75ed3a751 (diff)
[refactor] extracts tail logic into TruncatedTailPipe
Diffstat (limited to 'testing')
-rw-r--r--testing/tests/pipes/test_pipes.py32
1 files changed, 32 insertions, 0 deletions
diff --git a/testing/tests/pipes/test_pipes.py b/testing/tests/pipes/test_pipes.py
new file mode 100644
index 00000000..d7db2716
--- /dev/null
+++ b/testing/tests/pipes/test_pipes.py
@@ -0,0 +1,32 @@
+# -*- coding: utf-8 -*-
+# test_pipes.py
+# Copyright (C) 2017 LEAP
+#
+# This program 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 3 of the License, or
+# (at your option) any later version.
+#
+# This program 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 General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program. If not, see <http://www.gnu.org/licenses/>.
+"""
+Tests for streaming components.
+"""
+from twisted.trial import unittest
+from leap.soledad.client._pipes import TruncatedTailPipe
+
+
+class TruncatedTailTestCase(unittest.TestCase):
+
+ def test_tail_truncating_pipe(self):
+ pipe = TruncatedTailPipe(tail_size=20)
+ payload = 'A' * 100 + 'B' * 20
+ for data in payload:
+ pipe.write(data)
+ result = pipe.close()
+ assert result.getvalue() == 'A' * 100