diff options
author | Victor Shyba <victor1984@riseup.net> | 2017-03-20 21:46:10 -0300 |
---|---|---|
committer | drebs <drebs@leap.se> | 2017-04-04 18:27:37 +0200 |
commit | 1bdfb12b98c6db2b54014b207fe05f235a0ae4bb (patch) | |
tree | 673b14ba8f31e9227861e9d80931ffed93a05327 /testing | |
parent | 9628d5fa3ed7bdfd046aee641a8d51605c15bd71 (diff) |
[test] upload/download integration test
Diffstat (limited to 'testing')
-rw-r--r-- | testing/tests/server/test_blobs_server.py | 52 |
1 files changed, 52 insertions, 0 deletions
diff --git a/testing/tests/server/test_blobs_server.py b/testing/tests/server/test_blobs_server.py new file mode 100644 index 00000000..2c52ea46 --- /dev/null +++ b/testing/tests/server/test_blobs_server.py @@ -0,0 +1,52 @@ +# -*- coding: utf-8 -*- +# test_crypto.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/>. +""" +Integration tests for blobs server +""" +import pytest +from io import BytesIO +from twisted.trial import unittest +from twisted.web.server import Site +from twisted.internet import reactor +from twisted.internet import defer +from leap.soledad.server import _blobs as server_blobs +from leap.soledad.client._blobs import BlobManager + + +class BlobServerTestCase(unittest.TestCase): + + def setUp(self): + root = server_blobs.BlobsResource(self.tempdir) + site = Site(root) + self.port = reactor.listenTCP(0, site, interface='127.0.0.1') + self.host = self.port.getHost() + self.uri = 'http://%s:%s/' % (self.host.host, self.host.port) + self.secret = 'A' * 96 + + def tearDown(self): + self.port.stopListening() + + @defer.inlineCallbacks + @pytest.mark.usefixtures("method_tmpdir") + def test_upload(self): + manager = BlobManager('', self.uri, self.secret, + self.secret, 'user') + fd = BytesIO("save me") + yield manager._encrypt_and_upload('blob_id', 'mydoc', '1', fd) + blob, size = yield manager._download_and_decrypt('blob_id', + 'mydoc', '1') + assert blob.getvalue() == "save me" |