bigchaindb/tests/backend/test_connection.py

22 lines
785 B
Python
Raw Normal View History

# Copyright BigchainDB GmbH and BigchainDB contributors
# SPDX-License-Identifier: (Apache-2.0 AND CC-BY-4.0)
# Code is Apache-2.0 and docs are CC-BY-4.0
2016-12-05 14:09:40 +01:00
import pytest
def test_get_connection_raises_a_configuration_error(monkeypatch):
from bigchaindb.common.exceptions import ConfigurationError
from bigchaindb.backend import connect
with pytest.raises(ConfigurationError):
connect('msaccess', 'localhost', '1337', 'mydb')
with pytest.raises(ConfigurationError):
# We need to force a misconfiguration here
monkeypatch.setattr('bigchaindb.backend.connection.BACKENDS',
2016-12-19 13:29:14 +01:00
{'catsandra':
'bigchaindb.backend.meowmeow.Catsandra'})
2016-12-05 14:09:40 +01:00
connect('catsandra', 'localhost', '1337', 'mydb')