diff options
author | drebs <drebs@leap.se> | 2016-10-03 19:27:42 -0300 |
---|---|---|
committer | drebs <drebs@leap.se> | 2016-10-03 19:27:42 -0300 |
commit | 4e06eb370b99f2d343e96f774a3ad9b8b77c9548 (patch) | |
tree | 749fd8131c31a562168978de27e7efd45b696364 /testing/tests/couch/test_state.py | |
parent | e13aefd14e82794622613802733713c6226e1d59 (diff) |
[feature] check for user dbs couch schema versions
Diffstat (limited to 'testing/tests/couch/test_state.py')
-rw-r--r-- | testing/tests/couch/test_state.py | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/testing/tests/couch/test_state.py b/testing/tests/couch/test_state.py new file mode 100644 index 00000000..a53ba076 --- /dev/null +++ b/testing/tests/couch/test_state.py @@ -0,0 +1,23 @@ +import pytest + +from leap.soledad.common.couch import CONFIG_DOC_ID +from leap.soledad.common.couch import SCHEMA_VERSION +from leap.soledad.common.couch import SCHEMA_VERSION_KEY +from leap.soledad.common.couch.state import CouchServerState + +from leap.soledad.common.errors import WrongCouchSchemaVersionError +from leap.soledad.common.errors import MissingCouchConfigDocumentError + + +def test_wrong_couch_version_raises(db): + wrong_schema_version = SCHEMA_VERSION + 1 + db.database.create( + {'_id': CONFIG_DOC_ID, SCHEMA_VERSION_KEY: wrong_schema_version}) + with pytest.raises(WrongCouchSchemaVersionError): + CouchServerState(db.couch_url, create_cmd='/bin/echo') + + +def test_missing_config_doc_raises(db): + db.database.create({}) + with pytest.raises(MissingCouchConfigDocumentError): + CouchServerState(db.couch_url, create_cmd='/bin/echo') |