From 2824858b15b3dc10737ce2cc159bbe8d955bdaa5 Mon Sep 17 00:00:00 2001 From: Bruno Wagner Date: Wed, 5 Aug 2015 16:05:16 -0300 Subject: [tests] fixed the http target test imports The old target is now http_target and the class name was changed from SoledadSyncTarget to SoledadHTTPSyncTarget, fixed this on the tests --- .../soledad/common/tests/test_sqlcipher_sync.py | 6 ++-- common/src/leap/soledad/common/tests/test_sync.py | 4 +-- .../leap/soledad/common/tests/test_sync_target.py | 33 ++++++---------------- 3 files changed, 14 insertions(+), 29 deletions(-) (limited to 'common/src') diff --git a/common/src/leap/soledad/common/tests/test_sqlcipher_sync.py b/common/src/leap/soledad/common/tests/test_sqlcipher_sync.py index f9da9a99..a9bab35b 100644 --- a/common/src/leap/soledad/common/tests/test_sqlcipher_sync.py +++ b/common/src/leap/soledad/common/tests/test_sqlcipher_sync.py @@ -29,7 +29,7 @@ from u1db import ( from testscenarios import TestWithScenarios from leap.soledad.common.crypto import ENC_SCHEME_KEY -from leap.soledad.client.target import SoledadSyncTarget +from leap.soledad.client.http_target import SoledadHTTPSyncTarget from leap.soledad.client.crypto import decrypt_doc_dict from leap.soledad.client.sqlcipher import ( SQLCipherDatabase, @@ -55,7 +55,7 @@ def sync_via_synchronizer_and_soledad(test, db_source, db_target, if trace_hook: test.skipTest("full trace hook unsupported over http") path = test._http_at[db_target] - target = SoledadSyncTarget.connect( + target = SoledadHTTPSyncTarget.connect( test.getURL(path), test._soledad._crypto) target.set_token_credentials('user-uuid', 'auth-token') if trace_hook_shallow: @@ -300,7 +300,7 @@ class SQLCipherDatabaseSyncTests( def _make_local_db_and_token_http_target(test, path='test'): test.startServer() db = test.request_state._create_database(os.path.basename(path)) - st = SoledadSyncTarget.connect( + st = SoledadHTTPSyncTarget.connect( test.getURL(path), crypto=test._soledad._crypto) st.set_token_credentials('user-uuid', 'auth-token') return db, st diff --git a/common/src/leap/soledad/common/tests/test_sync.py b/common/src/leap/soledad/common/tests/test_sync.py index 50fcc9f8..dd920b64 100644 --- a/common/src/leap/soledad/common/tests/test_sync.py +++ b/common/src/leap/soledad/common/tests/test_sync.py @@ -27,7 +27,7 @@ from twisted.internet import defer from testscenarios import TestWithScenarios from leap.soledad.common import couch -from leap.soledad.client import target +from leap.soledad.client import http_target as target from leap.soledad.client import sync from leap.soledad.server import SoledadApp @@ -213,7 +213,7 @@ class TestSoledadDbSync( target_url = self.getURL(target_name) return sync.SoledadSynchronizer( self.db, - target.SoledadSyncTarget( + target.SoledadHTTPSyncTarget( target_url, crypto=self._soledad._crypto, **extra)).sync(autocreate=True, diff --git a/common/src/leap/soledad/common/tests/test_sync_target.py b/common/src/leap/soledad/common/tests/test_sync_target.py index 75ab70cf..be765152 100644 --- a/common/src/leap/soledad/common/tests/test_sync_target.py +++ b/common/src/leap/soledad/common/tests/test_sync_target.py @@ -25,11 +25,12 @@ import u1db import random import string import shutil +from uuid import uuid4 from testscenarios import TestWithScenarios from urlparse import urljoin -from leap.soledad.client import target +from leap.soledad.client import http_target as target from leap.soledad.client import crypto from leap.soledad.client.sqlcipher import SQLCipherU1DBSync from leap.soledad.client.sqlcipher import SQLCipherOptions @@ -55,22 +56,6 @@ from leap.soledad.common.tests.u1db_tests import test_sync # The following tests come from `u1db.tests.test_remote_sync_target`. # ----------------------------------------------------------------------------- -class TestSoledadSyncTargetBasics( - test_remote_sync_target.TestHTTPSyncTargetBasics): - - """ - Some tests had to be copied to this class so we can instantiate our own - target. - """ - - def test_parse_url(self): - remote_target = target.SoledadSyncTarget('http://127.0.0.1:12345/') - self.assertEqual('http', remote_target._url.scheme) - self.assertEqual('127.0.0.1', remote_target._url.hostname) - self.assertEqual(12345, remote_target._url.port) - self.assertEqual('/', remote_target._url.path) - - class TestSoledadParsingSyncStream( test_remote_sync_target.TestParsingSyncStream, BaseSoledadTest): @@ -93,7 +78,7 @@ class TestSoledadParsingSyncStream( enc_json = crypto.encrypt_docstr( doc.get_json(), doc.doc_id, doc.rev, key, secret) - tgt = target.SoledadSyncTarget( + tgt = target.SoledadHTTPSyncTarget( "http://foo/foo", crypto=self._soledad._crypto) self.assertRaises(u1db.errors.BrokenSyncStream, @@ -106,7 +91,7 @@ class TestSoledadParsingSyncStream( lambda doc, gen, trans_id: None) def test_wrong_start(self): - tgt = target.SoledadSyncTarget("http://foo/foo") + tgt = target.SoledadHTTPSyncTarget("http://foo/foo") self.assertRaises(u1db.errors.BrokenSyncStream, tgt._parse_sync_stream, "{}\r\n]", None) @@ -118,7 +103,7 @@ class TestSoledadParsingSyncStream( tgt._parse_sync_stream, "", None) def test_wrong_end(self): - tgt = target.SoledadSyncTarget("http://foo/foo") + tgt = target.SoledadHTTPSyncTarget("http://foo/foo") self.assertRaises(u1db.errors.BrokenSyncStream, tgt._parse_sync_stream, "[\r\n{}", None) @@ -127,7 +112,7 @@ class TestSoledadParsingSyncStream( tgt._parse_sync_stream, "[\r\n", None) def test_missing_comma(self): - tgt = target.SoledadSyncTarget("http://foo/foo") + tgt = target.SoledadHTTPSyncTarget("http://foo/foo") self.assertRaises(u1db.errors.BrokenSyncStream, tgt._parse_sync_stream, @@ -135,13 +120,13 @@ class TestSoledadParsingSyncStream( '"content": "c", "gen": 3}\r\n]', None) def test_no_entries(self): - tgt = target.SoledadSyncTarget("http://foo/foo") + tgt = target.SoledadHTTPSyncTarget("http://foo/foo") self.assertRaises(u1db.errors.BrokenSyncStream, tgt._parse_sync_stream, "[\r\n]", None) def test_error_in_stream(self): - tgt = target.SoledadSyncTarget("http://foo/foo") + tgt = target.SoledadHTTPSyncTarget("http://foo/foo") self.assertRaises(u1db.errors.Unavailable, tgt._parse_sync_stream, @@ -164,7 +149,7 @@ class TestSoledadParsingSyncStream( def make_local_db_and_soledad_target(test, path='test'): test.startServer() db = test.request_state._create_database(os.path.basename(path)) - st = target.SoledadSyncTarget.connect( + st = target.SoledadHTTPSyncTarget.connect( test.getURL(path), crypto=test._soledad._crypto) return db, st -- cgit v1.2.3