mirror of
https://github.com/planetmint/planetmint.git
synced 2025-11-27 07:48:26 +00:00
commented out the mongodb test cases
Signed-off-by: Jürgen Eckel <juergen@riddleandcode.com>
This commit is contained in:
parent
3a3f977fc3
commit
95d60046c7
@ -1,111 +1,112 @@
|
|||||||
# Copyright © 2020 Interplanetary Database Association e.V.,
|
## Copyright © 2020 Interplanetary Database Association e.V.,
|
||||||
# Planetmint and IPDB software contributors.
|
## Planetmint and IPDB software contributors.
|
||||||
# SPDX-License-Identifier: (Apache-2.0 AND CC-BY-4.0)
|
## SPDX-License-Identifier: (Apache-2.0 AND CC-BY-4.0)
|
||||||
# Code is Apache-2.0 and docs are CC-BY-4.0
|
## Code is Apache-2.0 and docs are CC-BY-4.0
|
||||||
|
#
|
||||||
from unittest import mock
|
#from unittest import mock
|
||||||
|
#
|
||||||
import pytest
|
#import pytest
|
||||||
import pymongo
|
#import pymongo
|
||||||
from pymongo import MongoClient
|
#from pymongo import MongoClient
|
||||||
|
#
|
||||||
|
#
|
||||||
pytestmark = pytest.mark.bdb
|
#pytestmark = pytest.mark.bdb
|
||||||
|
#
|
||||||
|
#
|
||||||
@pytest.fixture
|
#@pytest.fixture
|
||||||
def mock_cmd_line_opts():
|
#def mock_cmd_line_opts():
|
||||||
return {'argv': ['mongod', '--dbpath=/data'],
|
# return {'argv': ['mongod', '--dbpath=/data'],
|
||||||
'ok': 1.0,
|
# 'ok': 1.0,
|
||||||
'parsed': {'replication': {'replSet': None},
|
# 'parsed': {'replication': {'replSet': None},
|
||||||
'storage': {'dbPath': '/data'}}}
|
# 'storage': {'dbPath': '/data'}}}
|
||||||
|
#
|
||||||
|
#
|
||||||
@pytest.fixture
|
#@pytest.fixture
|
||||||
def mock_config_opts():
|
#def mock_config_opts():
|
||||||
return {'argv': ['mongod', '--dbpath=/data'],
|
# return {'argv': ['mongod', '--dbpath=/data'],
|
||||||
'ok': 1.0,
|
# 'ok': 1.0,
|
||||||
'parsed': {'replication': {'replSetName': None},
|
# 'parsed': {'replication': {'replSetName': None},
|
||||||
'storage': {'dbPath': '/data'}}}
|
# 'storage': {'dbPath': '/data'}}}
|
||||||
|
#
|
||||||
|
#
|
||||||
@pytest.fixture
|
#@pytest.fixture
|
||||||
def mongodb_connection():
|
#def mongodb_connection():
|
||||||
import planetmint
|
# import planetmint
|
||||||
return MongoClient(host=planetmint.config['database']['host'],
|
# return MongoClient(host=planetmint.config['database']['host'],
|
||||||
port=planetmint.config['database']['port'])
|
# port=planetmint.config['database']['port'])
|
||||||
|
#
|
||||||
|
#
|
||||||
def test_get_connection_returns_the_correct_instance(db_host, db_port):
|
#def test_get_connection_returns_the_correct_instance(db_host, db_port):
|
||||||
from planetmint.backend import connect
|
# from planetmint.backend import connect
|
||||||
from planetmint.backend.connection import Connection
|
# from planetmint.backend.connection import Connection
|
||||||
from planetmint.backend.localmongodb.connection import LocalMongoDBConnection
|
# from planetmint.backend.localmongodb.connection import LocalMongoDBConnection
|
||||||
|
#
|
||||||
config = {
|
# config = {
|
||||||
'backend': 'localmongodb',
|
# 'backend': 'localmongodb',
|
||||||
'host': db_host,
|
# 'host': db_host,
|
||||||
'port': db_port,
|
# 'port': db_port,
|
||||||
'name': 'test',
|
# 'name': 'test',
|
||||||
'replicaset': None,
|
# 'replicaset': None,
|
||||||
}
|
# }
|
||||||
|
#
|
||||||
conn = connect(**config)
|
# conn = connect(**config)
|
||||||
assert isinstance(conn, Connection)
|
# assert isinstance(conn, Connection)
|
||||||
assert isinstance(conn, LocalMongoDBConnection)
|
# assert isinstance(conn, LocalMongoDBConnection)
|
||||||
assert conn.conn._topology_settings.replica_set_name == config['replicaset']
|
# assert conn.conn._topology_settings.replica_set_name == config['replicaset']
|
||||||
|
#
|
||||||
|
#
|
||||||
@mock.patch('pymongo.MongoClient.__init__')
|
#@mock.patch('pymongo.MongoClient.__init__')
|
||||||
def test_connection_error(mock_client):
|
#def test_connection_error(mock_client):
|
||||||
from planetmint.backend import connect
|
# from planetmint.backend import connect
|
||||||
from planetmint.backend.exceptions import ConnectionError
|
# from planetmint.backend.exceptions import ConnectionError
|
||||||
|
#
|
||||||
# force the driver to throw ConnectionFailure
|
# # force the driver to throw ConnectionFailure
|
||||||
# the mock on time.sleep is to prevent the actual sleep when running
|
# # the mock on time.sleep is to prevent the actual sleep when running
|
||||||
# the tests
|
# # the tests
|
||||||
mock_client.side_effect = pymongo.errors.ConnectionFailure()
|
# mock_client.side_effect = pymongo.errors.ConnectionFailure()
|
||||||
|
#
|
||||||
with pytest.raises(ConnectionError):
|
# with pytest.raises(ConnectionError):
|
||||||
conn = connect()
|
# conn = connect()
|
||||||
conn.db
|
# conn.db
|
||||||
|
#
|
||||||
assert mock_client.call_count == 3
|
# assert mock_client.call_count == 3
|
||||||
|
#
|
||||||
|
#
|
||||||
def test_connection_run_errors():
|
#def test_connection_run_errors():
|
||||||
from planetmint.backend import connect
|
# from planetmint.backend import connect
|
||||||
from planetmint.backend.exceptions import (DuplicateKeyError,
|
# from planetmint.backend.exceptions import (DuplicateKeyError,
|
||||||
OperationError,
|
# OperationError,
|
||||||
ConnectionError)
|
# ConnectionError)
|
||||||
|
#
|
||||||
conn = connect()
|
# conn = connect()
|
||||||
|
#
|
||||||
query = mock.Mock()
|
# query = mock.Mock()
|
||||||
query.run.side_effect = pymongo.errors.AutoReconnect('foo')
|
# query.run.side_effect = pymongo.errors.AutoReconnect('foo')
|
||||||
with pytest.raises(ConnectionError):
|
# with pytest.raises(ConnectionError):
|
||||||
conn.run(query)
|
# conn.run(query)
|
||||||
assert query.run.call_count == 2
|
# assert query.run.call_count == 2
|
||||||
|
#
|
||||||
query = mock.Mock()
|
# query = mock.Mock()
|
||||||
query.run.side_effect = pymongo.errors.DuplicateKeyError('foo')
|
# query.run.side_effect = pymongo.errors.DuplicateKeyError('foo')
|
||||||
with pytest.raises(DuplicateKeyError):
|
# with pytest.raises(DuplicateKeyError):
|
||||||
conn.run(query)
|
# conn.run(query)
|
||||||
assert query.run.call_count == 1
|
# assert query.run.call_count == 1
|
||||||
|
#
|
||||||
query = mock.Mock()
|
# query = mock.Mock()
|
||||||
query.run.side_effect = pymongo.errors.OperationFailure('foo')
|
# query.run.side_effect = pymongo.errors.OperationFailure('foo')
|
||||||
with pytest.raises(OperationError):
|
# with pytest.raises(OperationError):
|
||||||
conn.run(query)
|
# conn.run(query)
|
||||||
assert query.run.call_count == 1
|
# assert query.run.call_count == 1
|
||||||
|
#
|
||||||
|
#
|
||||||
@mock.patch('pymongo.database.Database.authenticate')
|
#@mock.patch('pymongo.database.Database.authenticate')
|
||||||
def test_connection_with_credentials(mock_authenticate):
|
#def test_connection_with_credentials(mock_authenticate):
|
||||||
import planetmint
|
# import planetmint
|
||||||
from planetmint.backend.localmongodb.connection import LocalMongoDBConnection
|
# from planetmint.backend.localmongodb.connection import LocalMongoDBConnection
|
||||||
conn = LocalMongoDBConnection(host=planetmint.config['database']['host'],
|
# conn = LocalMongoDBConnection(host=planetmint.config['database']['host'],
|
||||||
port=planetmint.config['database']['port'],
|
# port=planetmint.config['database']['port'],
|
||||||
login='theplague',
|
# login='theplague',
|
||||||
password='secret')
|
# password='secret')
|
||||||
conn.connect()
|
# conn.connect()
|
||||||
assert mock_authenticate.call_count == 1
|
# assert mock_authenticate.call_count == 1
|
||||||
|
#
|
||||||
@ -1,486 +1,487 @@
|
|||||||
# Copyright © 2020 Interplanetary Database Association e.V.,
|
## Copyright © 2020 Interplanetary Database Association e.V.,
|
||||||
# Planetmint and IPDB software contributors.
|
## Planetmint and IPDB software contributors.
|
||||||
# SPDX-License-Identifier: (Apache-2.0 AND CC-BY-4.0)
|
## SPDX-License-Identifier: (Apache-2.0 AND CC-BY-4.0)
|
||||||
# Code is Apache-2.0 and docs are CC-BY-4.0
|
## Code is Apache-2.0 and docs are CC-BY-4.0
|
||||||
|
#
|
||||||
from copy import deepcopy
|
#from copy import deepcopy
|
||||||
|
#
|
||||||
import pytest
|
#import pytest
|
||||||
# import pymongo
|
## import pymongo
|
||||||
|
#
|
||||||
from planetmint.backend import connect, query
|
#from planetmint.backend import connect, query
|
||||||
|
#
|
||||||
|
#
|
||||||
pytestmark = pytest.mark.bdb
|
#pytestmark = pytest.mark.bdb
|
||||||
|
#
|
||||||
|
#
|
||||||
def test_get_txids_filtered(signed_create_tx, signed_transfer_tx):
|
#def test_get_txids_filtered(signed_create_tx, signed_transfer_tx):
|
||||||
from planetmint.backend import connect, query
|
# from planetmint.backend import connect, query
|
||||||
from planetmint.models import Transaction
|
# from planetmint.models import Transaction
|
||||||
conn = connect() # TODO First rewrite to get here tarantool connection
|
# conn = connect() # TODO First rewrite to get here tarantool connection
|
||||||
print(conn)
|
# print(conn)
|
||||||
# create and insert two blocks, one for the create and one for the
|
# # create and insert two blocks, one for the create and one for the
|
||||||
# transfer transaction
|
# # transfer transaction
|
||||||
conn.db.transactions.insert_one(signed_create_tx.to_dict())
|
# conn.db.transactions.insert_one(signed_create_tx.to_dict())
|
||||||
conn.db.transactions.insert_one(signed_transfer_tx.to_dict())
|
# conn.db.transactions.insert_one(signed_transfer_tx.to_dict())
|
||||||
|
#
|
||||||
asset_id = Transaction.get_asset_id([signed_create_tx, signed_transfer_tx])
|
# asset_id = Transaction.get_asset_id([signed_create_tx, signed_transfer_tx])
|
||||||
|
#
|
||||||
# Test get by just asset id
|
# # Test get by just asset id
|
||||||
txids = set(query.get_txids_filtered(conn, asset_id))
|
# txids = set(query.get_txids_filtered(conn, asset_id))
|
||||||
assert txids == {signed_create_tx.id, signed_transfer_tx.id}
|
# assert txids == {signed_create_tx.id, signed_transfer_tx.id}
|
||||||
|
#
|
||||||
# Test get by asset and CREATE
|
# # Test get by asset and CREATE
|
||||||
txids = set(query.get_txids_filtered(conn, asset_id, Transaction.CREATE))
|
# txids = set(query.get_txids_filtered(conn, asset_id, Transaction.CREATE))
|
||||||
assert txids == {signed_create_tx.id}
|
# assert txids == {signed_create_tx.id}
|
||||||
|
#
|
||||||
# Test get by asset and TRANSFER
|
# # Test get by asset and TRANSFER
|
||||||
txids = set(query.get_txids_filtered(conn, asset_id, Transaction.TRANSFER))
|
# txids = set(query.get_txids_filtered(conn, asset_id, Transaction.TRANSFER))
|
||||||
assert txids == {signed_transfer_tx.id}
|
# assert txids == {signed_transfer_tx.id}
|
||||||
|
#
|
||||||
|
#
|
||||||
def test_write_assets():
|
#def test_write_assets():
|
||||||
from planetmint.backend import connect, query
|
# from planetmint.backend import connect, query
|
||||||
conn = connect()
|
# conn = connect()
|
||||||
|
#
|
||||||
assets = [
|
# assets = [
|
||||||
{'id': 1, 'data': '1'},
|
# {'id': 1, 'data': '1'},
|
||||||
{'id': 2, 'data': '2'},
|
# {'id': 2, 'data': '2'},
|
||||||
{'id': 3, 'data': '3'},
|
# {'id': 3, 'data': '3'},
|
||||||
# Duplicated id. Should not be written to the database
|
# # Duplicated id. Should not be written to the database
|
||||||
{'id': 1, 'data': '1'},
|
# {'id': 1, 'data': '1'},
|
||||||
]
|
# ]
|
||||||
|
#
|
||||||
# write the assets
|
# # write the assets
|
||||||
for asset in assets:
|
# for asset in assets:
|
||||||
query.store_asset(conn, deepcopy(asset))
|
# query.store_asset(conn, deepcopy(asset))
|
||||||
|
#
|
||||||
# check that 3 assets were written to the database
|
# # check that 3 assets were written to the database
|
||||||
cursor = conn.db.assets.find({}, projection={'_id': False})\
|
# cursor = conn.db.assets.find({}, projection={'_id': False})\
|
||||||
.sort('id', pymongo.ASCENDING)
|
# .sort('id', pymongo.ASCENDING)
|
||||||
|
#
|
||||||
assert cursor.collection.count_documents({}) == 3
|
# assert cursor.collection.count_documents({}) == 3
|
||||||
assert list(cursor) == assets[:-1]
|
# assert list(cursor) == assets[:-1]
|
||||||
|
#
|
||||||
|
#
|
||||||
def test_get_assets():
|
#def test_get_assets():
|
||||||
from planetmint.backend import connect, query
|
# from planetmint.backend import connect, query
|
||||||
conn = connect()
|
# conn = connect()
|
||||||
|
#
|
||||||
assets = [
|
# assets = [
|
||||||
{'id': 1, 'data': '1'},
|
# {'id': 1, 'data': '1'},
|
||||||
{'id': 2, 'data': '2'},
|
# {'id': 2, 'data': '2'},
|
||||||
{'id': 3, 'data': '3'},
|
# {'id': 3, 'data': '3'},
|
||||||
]
|
# ]
|
||||||
|
#
|
||||||
conn.db.assets.insert_many(deepcopy(assets), ordered=False)
|
# conn.db.assets.insert_many(deepcopy(assets), ordered=False)
|
||||||
|
#
|
||||||
for asset in assets:
|
# for asset in assets:
|
||||||
assert query.get_asset(conn, asset['id'])
|
# assert query.get_asset(conn, asset['id'])
|
||||||
|
#
|
||||||
|
#
|
||||||
@pytest.mark.parametrize('table', ['assets', 'metadata'])
|
#@pytest.mark.parametrize('table', ['assets', 'metadata'])
|
||||||
def test_text_search(table):
|
#def test_text_search(table):
|
||||||
from planetmint.backend import connect, query
|
# from planetmint.backend import connect, query
|
||||||
conn = connect()
|
# conn = connect()
|
||||||
|
#
|
||||||
# Example data and tests cases taken from the mongodb documentation
|
# # Example data and tests cases taken from the mongodb documentation
|
||||||
# https://docs.mongodb.com/manual/reference/operator/query/text/
|
# # https://docs.mongodb.com/manual/reference/operator/query/text/
|
||||||
objects = [
|
# objects = [
|
||||||
{'id': 1, 'subject': 'coffee', 'author': 'xyz', 'views': 50},
|
# {'id': 1, 'subject': 'coffee', 'author': 'xyz', 'views': 50},
|
||||||
{'id': 2, 'subject': 'Coffee Shopping', 'author': 'efg', 'views': 5},
|
# {'id': 2, 'subject': 'Coffee Shopping', 'author': 'efg', 'views': 5},
|
||||||
{'id': 3, 'subject': 'Baking a cake', 'author': 'abc', 'views': 90},
|
# {'id': 3, 'subject': 'Baking a cake', 'author': 'abc', 'views': 90},
|
||||||
{'id': 4, 'subject': 'baking', 'author': 'xyz', 'views': 100},
|
# {'id': 4, 'subject': 'baking', 'author': 'xyz', 'views': 100},
|
||||||
{'id': 5, 'subject': 'Café Con Leche', 'author': 'abc', 'views': 200},
|
# {'id': 5, 'subject': 'Café Con Leche', 'author': 'abc', 'views': 200},
|
||||||
{'id': 6, 'subject': 'Сырники', 'author': 'jkl', 'views': 80},
|
# {'id': 6, 'subject': 'Сырники', 'author': 'jkl', 'views': 80},
|
||||||
{'id': 7, 'subject': 'coffee and cream', 'author': 'efg', 'views': 10},
|
# {'id': 7, 'subject': 'coffee and cream', 'author': 'efg', 'views': 10},
|
||||||
{'id': 8, 'subject': 'Cafe con Leche', 'author': 'xyz', 'views': 10}
|
# {'id': 8, 'subject': 'Cafe con Leche', 'author': 'xyz', 'views': 10}
|
||||||
]
|
# ]
|
||||||
|
#
|
||||||
# insert the assets
|
# # insert the assets
|
||||||
conn.db[table].insert_many(deepcopy(objects), ordered=False)
|
# conn.db[table].insert_many(deepcopy(objects), ordered=False)
|
||||||
|
#
|
||||||
# test search single word
|
# # test search single word
|
||||||
assert list(query.text_search(conn, 'coffee', table=table)) == [
|
# assert list(query.text_search(conn, 'coffee', table=table)) == [
|
||||||
{'id': 1, 'subject': 'coffee', 'author': 'xyz', 'views': 50},
|
# {'id': 1, 'subject': 'coffee', 'author': 'xyz', 'views': 50},
|
||||||
{'id': 2, 'subject': 'Coffee Shopping', 'author': 'efg', 'views': 5},
|
# {'id': 2, 'subject': 'Coffee Shopping', 'author': 'efg', 'views': 5},
|
||||||
{'id': 7, 'subject': 'coffee and cream', 'author': 'efg', 'views': 10},
|
# {'id': 7, 'subject': 'coffee and cream', 'author': 'efg', 'views': 10},
|
||||||
]
|
# ]
|
||||||
|
#
|
||||||
# match any of the search terms
|
# # match any of the search terms
|
||||||
assert list(query.text_search(conn, 'bake coffee cake', table=table)) == [
|
# assert list(query.text_search(conn, 'bake coffee cake', table=table)) == [
|
||||||
{'author': 'abc', 'id': 3, 'subject': 'Baking a cake', 'views': 90},
|
# {'author': 'abc', 'id': 3, 'subject': 'Baking a cake', 'views': 90},
|
||||||
{'author': 'xyz', 'id': 1, 'subject': 'coffee', 'views': 50},
|
# {'author': 'xyz', 'id': 1, 'subject': 'coffee', 'views': 50},
|
||||||
{'author': 'xyz', 'id': 4, 'subject': 'baking', 'views': 100},
|
# {'author': 'xyz', 'id': 4, 'subject': 'baking', 'views': 100},
|
||||||
{'author': 'efg', 'id': 2, 'subject': 'Coffee Shopping', 'views': 5},
|
# {'author': 'efg', 'id': 2, 'subject': 'Coffee Shopping', 'views': 5},
|
||||||
{'author': 'efg', 'id': 7, 'subject': 'coffee and cream', 'views': 10}
|
# {'author': 'efg', 'id': 7, 'subject': 'coffee and cream', 'views': 10}
|
||||||
]
|
# ]
|
||||||
|
#
|
||||||
# search for a phrase
|
# # search for a phrase
|
||||||
assert list(query.text_search(conn, '\"coffee shop\"', table=table)) == [
|
# assert list(query.text_search(conn, '\"coffee shop\"', table=table)) == [
|
||||||
{'id': 2, 'subject': 'Coffee Shopping', 'author': 'efg', 'views': 5},
|
# {'id': 2, 'subject': 'Coffee Shopping', 'author': 'efg', 'views': 5},
|
||||||
]
|
# ]
|
||||||
|
#
|
||||||
# exclude documents that contain a term
|
# # exclude documents that contain a term
|
||||||
assert list(query.text_search(conn, 'coffee -shop', table=table)) == [
|
# assert list(query.text_search(conn, 'coffee -shop', table=table)) == [
|
||||||
{'id': 1, 'subject': 'coffee', 'author': 'xyz', 'views': 50},
|
# {'id': 1, 'subject': 'coffee', 'author': 'xyz', 'views': 50},
|
||||||
{'id': 7, 'subject': 'coffee and cream', 'author': 'efg', 'views': 10},
|
# {'id': 7, 'subject': 'coffee and cream', 'author': 'efg', 'views': 10},
|
||||||
]
|
# ]
|
||||||
|
#
|
||||||
# search different language
|
# # search different language
|
||||||
assert list(query.text_search(conn, 'leche', language='es', table=table)) == [
|
# assert list(query.text_search(conn, 'leche', language='es', table=table)) == [
|
||||||
{'id': 5, 'subject': 'Café Con Leche', 'author': 'abc', 'views': 200},
|
# {'id': 5, 'subject': 'Café Con Leche', 'author': 'abc', 'views': 200},
|
||||||
{'id': 8, 'subject': 'Cafe con Leche', 'author': 'xyz', 'views': 10}
|
# {'id': 8, 'subject': 'Cafe con Leche', 'author': 'xyz', 'views': 10}
|
||||||
]
|
# ]
|
||||||
|
#
|
||||||
# case and diacritic insensitive search
|
# # case and diacritic insensitive search
|
||||||
assert list(query.text_search(conn, 'сы́рники CAFÉS', table=table)) == [
|
# assert list(query.text_search(conn, 'сы́рники CAFÉS', table=table)) == [
|
||||||
{'id': 6, 'subject': 'Сырники', 'author': 'jkl', 'views': 80},
|
# {'id': 6, 'subject': 'Сырники', 'author': 'jkl', 'views': 80},
|
||||||
{'id': 5, 'subject': 'Café Con Leche', 'author': 'abc', 'views': 200},
|
# {'id': 5, 'subject': 'Café Con Leche', 'author': 'abc', 'views': 200},
|
||||||
{'id': 8, 'subject': 'Cafe con Leche', 'author': 'xyz', 'views': 10}
|
# {'id': 8, 'subject': 'Cafe con Leche', 'author': 'xyz', 'views': 10}
|
||||||
]
|
# ]
|
||||||
|
#
|
||||||
# case sensitive search
|
# # case sensitive search
|
||||||
assert list(query.text_search(conn, 'Coffee', case_sensitive=True, table=table)) == [
|
# assert list(query.text_search(conn, 'Coffee', case_sensitive=True, table=table)) == [
|
||||||
{'id': 2, 'subject': 'Coffee Shopping', 'author': 'efg', 'views': 5},
|
# {'id': 2, 'subject': 'Coffee Shopping', 'author': 'efg', 'views': 5},
|
||||||
]
|
# ]
|
||||||
|
#
|
||||||
# diacritic sensitive search
|
# # diacritic sensitive search
|
||||||
assert list(query.text_search(conn, 'CAFÉ', diacritic_sensitive=True, table=table)) == [
|
# assert list(query.text_search(conn, 'CAFÉ', diacritic_sensitive=True, table=table)) == [
|
||||||
{'id': 5, 'subject': 'Café Con Leche', 'author': 'abc', 'views': 200},
|
# {'id': 5, 'subject': 'Café Con Leche', 'author': 'abc', 'views': 200},
|
||||||
]
|
# ]
|
||||||
|
#
|
||||||
# return text score
|
# # return text score
|
||||||
assert list(query.text_search(conn, 'coffee', text_score=True, table=table)) == [
|
# assert list(query.text_search(conn, 'coffee', text_score=True, table=table)) == [
|
||||||
{'id': 1, 'subject': 'coffee', 'author': 'xyz', 'views': 50, 'score': 1.0},
|
# {'id': 1, 'subject': 'coffee', 'author': 'xyz', 'views': 50, 'score': 1.0},
|
||||||
{'id': 2, 'subject': 'Coffee Shopping', 'author': 'efg', 'views': 5, 'score': 0.75},
|
# {'id': 2, 'subject': 'Coffee Shopping', 'author': 'efg', 'views': 5, 'score': 0.75},
|
||||||
{'id': 7, 'subject': 'coffee and cream', 'author': 'efg', 'views': 10, 'score': 0.75},
|
# {'id': 7, 'subject': 'coffee and cream', 'author': 'efg', 'views': 10, 'score': 0.75},
|
||||||
]
|
# ]
|
||||||
|
#
|
||||||
# limit search result
|
# # limit search result
|
||||||
assert list(query.text_search(conn, 'coffee', limit=2, table=table)) == [
|
# assert list(query.text_search(conn, 'coffee', limit=2, table=table)) == [
|
||||||
{'id': 1, 'subject': 'coffee', 'author': 'xyz', 'views': 50},
|
# {'id': 1, 'subject': 'coffee', 'author': 'xyz', 'views': 50},
|
||||||
{'id': 2, 'subject': 'Coffee Shopping', 'author': 'efg', 'views': 5},
|
# {'id': 2, 'subject': 'Coffee Shopping', 'author': 'efg', 'views': 5},
|
||||||
]
|
# ]
|
||||||
|
#
|
||||||
|
#
|
||||||
def test_write_metadata():
|
#def test_write_metadata():
|
||||||
from planetmint.backend import connect, query
|
# from planetmint.backend import connect, query
|
||||||
conn = connect()
|
# conn = connect()
|
||||||
|
#
|
||||||
metadata = [
|
# metadata = [
|
||||||
{'id': 1, 'data': '1'},
|
# {'id': 1, 'data': '1'},
|
||||||
{'id': 2, 'data': '2'},
|
# {'id': 2, 'data': '2'},
|
||||||
{'id': 3, 'data': '3'}
|
# {'id': 3, 'data': '3'}
|
||||||
]
|
# ]
|
||||||
|
#
|
||||||
# write the assets
|
# # write the assets
|
||||||
query.store_metadatas(conn, deepcopy(metadata))
|
# query.store_metadatas(conn, deepcopy(metadata))
|
||||||
|
#
|
||||||
# check that 3 assets were written to the database
|
# # check that 3 assets were written to the database
|
||||||
cursor = conn.db.metadata.find({}, projection={'_id': False})\
|
# cursor = conn.db.metadata.find({}, projection={'_id': False})\
|
||||||
.sort('id', pymongo.ASCENDING)
|
# .sort('id', pymongo.ASCENDING)
|
||||||
TarantoolDB
|
#
|
||||||
assert cursor.collection.count_documents({}) == 3
|
# assert cursor.collection.count_documents({}) == 3
|
||||||
assert list(cursor) == metadata
|
# assert list(cursor) == metadata
|
||||||
|
#
|
||||||
|
#
|
||||||
def test_get_metadata():
|
#def test_get_metadata():
|
||||||
from planetmint.backend import connect, query
|
# from planetmint.backend import connect, query
|
||||||
conn = connect()
|
# conn = connect()
|
||||||
|
#
|
||||||
metadata = [
|
# metadata = [
|
||||||
{'id': 1, 'metadata': None},
|
# {'id': 1, 'metadata': None},
|
||||||
{'id': 2, 'metadata': {'key': 'value'}},
|
# {'id': 2, 'metadata': {'key': 'value'}},
|
||||||
{'id': 3, 'metadata': '3'},
|
# {'id': 3, 'metadata': '3'},
|
||||||
]
|
# ]
|
||||||
|
#
|
||||||
conn.db.metadata.insert_many(deepcopy(metadata), ordered=False)
|
# conn.db.metadata.insert_many(deepcopy(metadata), ordered=False)
|
||||||
|
#
|
||||||
for meta in metadata:
|
# for meta in metadata:
|
||||||
assert query.get_metadata(conn, [meta['id']])
|
# assert query.get_metadata(conn, [meta['id']])
|
||||||
|
#
|
||||||
|
#
|
||||||
def test_get_owned_ids(signed_create_tx, user_pk):
|
#def test_get_owned_ids(signed_create_tx, user_pk):
|
||||||
from planetmint.backend import connect, query
|
# from planetmint.backend import connect, query
|
||||||
conn = connect()
|
# conn = connect()
|
||||||
|
#
|
||||||
# insert a transaction
|
# # insert a transaction
|
||||||
conn.db.transactions.insert_one(deepcopy(signed_create_tx.to_dict()))
|
# conn.db.transactions.insert_one(deepcopy(signed_create_tx.to_dict()))
|
||||||
|
#
|
||||||
txns = list(query.get_owned_ids(conn, user_pk))
|
# txns = list(query.get_owned_ids(conn, user_pk))
|
||||||
|
#
|
||||||
assert txns[0] == signed_create_tx.to_dict()
|
# assert txns[0] == signed_create_tx.to_dict()
|
||||||
|
#
|
||||||
|
#
|
||||||
def test_get_spending_transactions(user_pk, user_sk):
|
#def test_get_spending_transactions(user_pk, user_sk):
|
||||||
from planetmint.backend import connect, query
|
# from planetmint.backend import connect, query
|
||||||
from planetmint.models import Transaction
|
# from planetmint.models import Transaction
|
||||||
conn = connect()
|
# conn = connect()
|
||||||
|
#
|
||||||
out = [([user_pk], 1)]
|
# out = [([user_pk], 1)]
|
||||||
tx1 = Transaction.create([user_pk], out * 3)
|
# tx1 = Transaction.create([user_pk], out * 3)
|
||||||
tx1.sign([user_sk])
|
# tx1.sign([user_sk])
|
||||||
inputs = tx1.to_inputs()
|
# inputs = tx1.to_inputs()
|
||||||
tx2 = Transaction.transfer([inputs[0]], out, tx1.id).sign([user_sk])
|
# tx2 = Transaction.transfer([inputs[0]], out, tx1.id).sign([user_sk])
|
||||||
tx3 = Transaction.transfer([inputs[1]], out, tx1.id).sign([user_sk])
|
# tx3 = Transaction.transfer([inputs[1]], out, tx1.id).sign([user_sk])
|
||||||
tx4 = Transaction.transfer([inputs[2]], out, tx1.id).sign([user_sk])
|
# tx4 = Transaction.transfer([inputs[2]], out, tx1.id).sign([user_sk])
|
||||||
txns = [deepcopy(tx.to_dict()) for tx in [tx1, tx2, tx3, tx4]]
|
# txns = [deepcopy(tx.to_dict()) for tx in [tx1, tx2, tx3, tx4]]
|
||||||
conn.db.transactions.insert_many(txns)
|
# conn.db.transactions.insert_many(txns)
|
||||||
|
#
|
||||||
links = [inputs[0].fulfills.to_dict(), inputs[2].fulfills.to_dict()]
|
# links = [inputs[0].fulfills.to_dict(), inputs[2].fulfills.to_dict()]
|
||||||
txns = list(query.get_spending_transactions(conn, links))
|
# txns = list(query.get_spending_transactions(conn, links))
|
||||||
|
#
|
||||||
# tx3 not a member because input 1 not asked for
|
# # tx3 not a member because input 1 not asked for
|
||||||
assert txns == [tx2.to_dict(), tx4.to_dict()]
|
# assert txns == [tx2.to_dict(), tx4.to_dict()]
|
||||||
|
#
|
||||||
|
#
|
||||||
def test_get_spending_transactions_multiple_inputs():
|
#def test_get_spending_transactions_multiple_inputs():
|
||||||
from planetmint.backend import connect, query
|
# from planetmint.backend import connect, query
|
||||||
from planetmint.models import Transaction
|
# from planetmint.models import Transaction
|
||||||
from planetmint.common.crypto import generate_key_pair
|
# from planetmint.common.crypto import generate_key_pair
|
||||||
conn = connect()
|
# conn = connect()
|
||||||
(alice_sk, alice_pk) = generate_key_pair()
|
# (alice_sk, alice_pk) = generate_key_pair()
|
||||||
(bob_sk, bob_pk) = generate_key_pair()
|
# (bob_sk, bob_pk) = generate_key_pair()
|
||||||
(carol_sk, carol_pk) = generate_key_pair()
|
# (carol_sk, carol_pk) = generate_key_pair()
|
||||||
|
#
|
||||||
out = [([alice_pk], 9)]
|
# out = [([alice_pk], 9)]
|
||||||
tx1 = Transaction.create([alice_pk], out).sign([alice_sk])
|
# tx1 = Transaction.create([alice_pk], out).sign([alice_sk])
|
||||||
|
#
|
||||||
inputs1 = tx1.to_inputs()
|
# inputs1 = tx1.to_inputs()
|
||||||
tx2 = Transaction.transfer([inputs1[0]],
|
# tx2 = Transaction.transfer([inputs1[0]],
|
||||||
[([alice_pk], 6), ([bob_pk], 3)],
|
# [([alice_pk], 6), ([bob_pk], 3)],
|
||||||
tx1.id).sign([alice_sk])
|
# tx1.id).sign([alice_sk])
|
||||||
|
#
|
||||||
inputs2 = tx2.to_inputs()
|
# inputs2 = tx2.to_inputs()
|
||||||
tx3 = Transaction.transfer([inputs2[0]],
|
# tx3 = Transaction.transfer([inputs2[0]],
|
||||||
[([bob_pk], 3), ([carol_pk], 3)],
|
# [([bob_pk], 3), ([carol_pk], 3)],
|
||||||
tx1.id).sign([alice_sk])
|
# tx1.id).sign([alice_sk])
|
||||||
|
#
|
||||||
inputs3 = tx3.to_inputs()
|
# inputs3 = tx3.to_inputs()
|
||||||
tx4 = Transaction.transfer([inputs2[1], inputs3[0]],
|
# tx4 = Transaction.transfer([inputs2[1], inputs3[0]],
|
||||||
[([carol_pk], 6)],
|
# [([carol_pk], 6)],
|
||||||
tx1.id).sign([bob_sk])
|
# tx1.id).sign([bob_sk])
|
||||||
|
#
|
||||||
txns = [deepcopy(tx.to_dict()) for tx in [tx1, tx2, tx3, tx4]]
|
# txns = [deepcopy(tx.to_dict()) for tx in [tx1, tx2, tx3, tx4]]
|
||||||
conn.db.transactions.insert_many(txns)
|
# conn.db.transactions.insert_many(txns)
|
||||||
|
#
|
||||||
links = [
|
# links = [
|
||||||
({'transaction_id': tx2.id, 'output_index': 0}, 1, [tx3.id]),
|
# ({'transaction_id': tx2.id, 'output_index': 0}, 1, [tx3.id]),
|
||||||
({'transaction_id': tx2.id, 'output_index': 1}, 1, [tx4.id]),
|
# ({'transaction_id': tx2.id, 'output_index': 1}, 1, [tx4.id]),
|
||||||
({'transaction_id': tx3.id, 'output_index': 0}, 1, [tx4.id]),
|
# ({'transaction_id': tx3.id, 'output_index': 0}, 1, [tx4.id]),
|
||||||
({'transaction_id': tx3.id, 'output_index': 1}, 0, None),
|
# ({'transaction_id': tx3.id, 'output_index': 1}, 0, None),
|
||||||
]
|
# ]
|
||||||
for li, num, match in links:
|
# for li, num, match in links:
|
||||||
txns = list(query.get_spending_transactions(conn, [li]))
|
# txns = list(query.get_spending_transactions(conn, [li]))
|
||||||
assert len(txns) == num
|
# assert len(txns) == num
|
||||||
if len(txns):
|
# if len(txns):
|
||||||
assert [tx['id'] for tx in txns] == match
|
# assert [tx['id'] for tx in txns] == match
|
||||||
|
#
|
||||||
|
#
|
||||||
def test_store_block():
|
#def test_store_block():
|
||||||
from planetmint.backend import connect, query
|
# from planetmint.backend import connect, query
|
||||||
from planetmint.lib import Block
|
# from planetmint.lib import Block
|
||||||
conn = connect()
|
# conn = connect()
|
||||||
|
#
|
||||||
block = Block(app_hash='random_utxo',
|
# block = Block(app_hash='random_utxo',
|
||||||
height=3,
|
# height=3,
|
||||||
transactions=[])
|
# transactions=[])
|
||||||
query.store_block(conn, block._asdict())
|
# query.store_block(conn, block._asdict())
|
||||||
cursor = conn.db.blocks.find({}, projection={'_id': False})
|
# cursor = conn.db.blocks.find({}, projection={'_id': False})
|
||||||
assert cursor.collection.count_documents({}) == 1
|
# assert cursor.collection.count_documents({}) == 1
|
||||||
|
#
|
||||||
|
#
|
||||||
def test_get_block():
|
#def test_get_block():
|
||||||
from planetmint.backend import connect, query
|
# from planetmint.backend import connect, query
|
||||||
from planetmint.lib import Block
|
# from planetmint.lib import Block
|
||||||
conn = connect()
|
# conn = connect()
|
||||||
|
#
|
||||||
block = Block(app_hash='random_utxo',
|
# block = Block(app_hash='random_utxo',
|
||||||
height=3,
|
# height=3,
|
||||||
transactions=[])
|
# transactions=[])
|
||||||
|
#
|
||||||
conn.db.blocks.insert_one(block._asdict())
|
# conn.db.blocks.insert_one(block._asdict())
|
||||||
|
#
|
||||||
block = dict(query.get_block(conn, 3))
|
# block = dict(query.get_block(conn, 3))
|
||||||
assert block['height'] == 3
|
# assert block['height'] == 3
|
||||||
|
#
|
||||||
|
#
|
||||||
def test_delete_zero_unspent_outputs(db_context, utxoset):
|
#def test_delete_zero_unspent_outputs(db_context, utxoset):
|
||||||
from planetmint.backend import query
|
# from planetmint.backend import query
|
||||||
unspent_outputs, utxo_collection = utxoset
|
# unspent_outputs, utxo_collection = utxoset
|
||||||
delete_res = query.delete_unspent_outputs(db_context.conn)
|
# delete_res = query.delete_unspent_outputs(db_context.conn)
|
||||||
assert delete_res is None
|
# assert delete_res is None
|
||||||
assert utxo_collection.count_documents({}) == 3
|
# assert utxo_collection.count_documents({}) == 3
|
||||||
assert utxo_collection.count_documents(
|
# assert utxo_collection.count_documents(
|
||||||
{'$or': [
|
# {'$or': [
|
||||||
{'transaction_id': 'a', 'output_index': 0},
|
# {'transaction_id': 'a', 'output_index': 0},
|
||||||
{'transaction_id': 'b', 'output_index': 0},
|
# {'transaction_id': 'b', 'output_index': 0},
|
||||||
{'transaction_id': 'a', 'output_index': 1},
|
# {'transaction_id': 'a', 'output_index': 1},
|
||||||
]}
|
# ]}
|
||||||
) == 3
|
# ) == 3
|
||||||
|
#
|
||||||
|
#
|
||||||
def test_delete_one_unspent_outputs(db_context, utxoset):
|
#def test_delete_one_unspent_outputs(db_context, utxoset):
|
||||||
from planetmint.backend import query
|
# from planetmint.backend import query
|
||||||
unspent_outputs, utxo_collection = utxoset
|
# unspent_outputs, utxo_collection = utxoset
|
||||||
delete_res = query.delete_unspent_outputs(db_context.conn,
|
# delete_res = query.delete_unspent_outputs(db_context.conn,
|
||||||
unspent_outputs[0])
|
# unspent_outputs[0])
|
||||||
assert delete_res.raw_result['n'] == 1
|
# assert delete_res.raw_result['n'] == 1
|
||||||
assert utxo_collection.count_documents(
|
# assert utxo_collection.count_documents(
|
||||||
{'$or': [
|
# {'$or': [
|
||||||
{'transaction_id': 'a', 'output_index': 1},
|
# {'transaction_id': 'a', 'output_index': 1},
|
||||||
{'transaction_id': 'b', 'output_index': 0},
|
# {'transaction_id': 'b', 'output_index': 0},
|
||||||
]}
|
# ]}
|
||||||
) == 2
|
# ) == 2
|
||||||
assert utxo_collection.count_documents(
|
# assert utxo_collection.count_documents(
|
||||||
{'transaction_id': 'a', 'output_index': 0}) == 0
|
# {'transaction_id': 'a', 'output_index': 0}) == 0
|
||||||
|
#
|
||||||
|
#
|
||||||
def test_delete_many_unspent_outputs(db_context, utxoset):
|
#def test_delete_many_unspent_outputs(db_context, utxoset):
|
||||||
from planetmint.backend import query
|
# from planetmint.backend import query
|
||||||
unspent_outputs, utxo_collection = utxoset
|
# unspent_outputs, utxo_collection = utxoset
|
||||||
delete_res = query.delete_unspent_outputs(db_context.conn,
|
# delete_res = query.delete_unspent_outputs(db_context.conn,
|
||||||
*unspent_outputs[::2])
|
# *unspent_outputs[::2])
|
||||||
assert delete_res.raw_result['n'] == 2
|
# assert delete_res.raw_result['n'] == 2
|
||||||
assert utxo_collection.count_documents(
|
# assert utxo_collection.count_documents(
|
||||||
{'$or': [
|
# {'$or': [
|
||||||
{'transaction_id': 'a', 'output_index': 0},
|
# {'transaction_id': 'a', 'output_index': 0},
|
||||||
{'transaction_id': 'b', 'output_index': 0},
|
# {'transaction_id': 'b', 'output_index': 0},
|
||||||
]}
|
# ]}
|
||||||
) == 0
|
# ) == 0
|
||||||
assert utxo_collection.count_documents(
|
# assert utxo_collection.count_documents(
|
||||||
{'transaction_id': 'a', 'output_index': 1}) == 1
|
# {'transaction_id': 'a', 'output_index': 1}) == 1
|
||||||
|
#
|
||||||
|
#
|
||||||
def test_store_zero_unspent_output(db_context, utxo_collection):
|
#def test_store_zero_unspent_output(db_context, utxo_collection):
|
||||||
from planetmint.backend import query
|
# from planetmint.backend import query
|
||||||
res = query.store_unspent_outputs(db_context.conn)
|
# res = query.store_unspent_outputs(db_context.conn)
|
||||||
assert res is None
|
# assert res is None
|
||||||
assert utxo_collection.count_documents({}) == 0
|
# assert utxo_collection.count_documents({}) == 0
|
||||||
|
#
|
||||||
|
#
|
||||||
def test_store_one_unspent_output(db_context,
|
#def test_store_one_unspent_output(db_context,
|
||||||
unspent_output_1, utxo_collection):
|
# unspent_output_1, utxo_collection):
|
||||||
from planetmint.backend import query
|
# from planetmint.backend import query
|
||||||
res = query.store_unspent_outputs(db_context.conn, unspent_output_1)
|
# res = query.store_unspent_outputs(db_context.conn, unspent_output_1)
|
||||||
assert res.acknowledged
|
# assert res.acknowledged
|
||||||
assert len(res.inserted_ids) == 1
|
# assert len(res.inserted_ids) == 1
|
||||||
assert utxo_collection.count_documents(
|
# assert utxo_collection.count_documents(
|
||||||
{'transaction_id': unspent_output_1['transaction_id'],
|
# {'transaction_id': unspent_output_1['transaction_id'],
|
||||||
'output_index': unspent_output_1['output_index']}
|
# 'output_index': unspent_output_1['output_index']}
|
||||||
) == 1
|
# ) == 1
|
||||||
|
#
|
||||||
|
#
|
||||||
def test_store_many_unspent_outputs(db_context,
|
#def test_store_many_unspent_outputs(db_context,
|
||||||
unspent_outputs, utxo_collection):
|
# unspent_outputs, utxo_collection):
|
||||||
from planetmint.backend import query
|
# from planetmint.backend import query
|
||||||
res = query.store_unspent_outputs(db_context.conn, *unspent_outputs)
|
# res = query.store_unspent_outputs(db_context.conn, *unspent_outputs)
|
||||||
assert res.acknowledged
|
# assert res.acknowledged
|
||||||
assert len(res.inserted_ids) == 3
|
# assert len(res.inserted_ids) == 3
|
||||||
assert utxo_collection.count_documents(
|
# assert utxo_collection.count_documents(
|
||||||
{'transaction_id': unspent_outputs[0]['transaction_id']}
|
# {'transaction_id': unspent_outputs[0]['transaction_id']}
|
||||||
) == 3
|
# ) == 3
|
||||||
|
#
|
||||||
|
#
|
||||||
def test_get_unspent_outputs(db_context, utxoset):
|
#def test_get_unspent_outputs(db_context, utxoset):
|
||||||
from planetmint.backend import query
|
# from planetmint.backend import query
|
||||||
cursor = query.get_unspent_outputs(db_context.conn)
|
# cursor = query.get_unspent_outputs(db_context.conn)
|
||||||
assert cursor.collection.count_documents({}) == 3
|
# assert cursor.collection.count_documents({}) == 3
|
||||||
retrieved_utxoset = list(cursor)
|
# retrieved_utxoset = list(cursor)
|
||||||
unspent_outputs, utxo_collection = utxoset
|
# unspent_outputs, utxo_collection = utxoset
|
||||||
assert retrieved_utxoset == list(
|
# assert retrieved_utxoset == list(
|
||||||
utxo_collection.find(projection={'_id': False}))
|
# utxo_collection.find(projection={'_id': False}))
|
||||||
assert retrieved_utxoset == unspent_outputs
|
# assert retrieved_utxoset == unspent_outputs
|
||||||
|
#
|
||||||
|
#
|
||||||
def test_store_pre_commit_state(db_context):
|
#def test_store_pre_commit_state(db_context):
|
||||||
from planetmint.backend import query
|
# from planetmint.backend import query
|
||||||
|
#
|
||||||
state = dict(height=3, transactions=[])
|
# state = dict(height=3, transactions=[])
|
||||||
|
#
|
||||||
query.store_pre_commit_state(db_context.conn, state)
|
# query.store_pre_commit_state(db_context.conn, state)
|
||||||
cursor = db_context.conn.db.pre_commit.find({'commit_id': 'test'},
|
# cursor = db_context.conn.db.pre_commit.find({'commit_id': 'test'},
|
||||||
projection={'_id': False})
|
# projection={'_id': False})
|
||||||
assert cursor.collection.count_documents({}) == 1
|
# assert cursor.collection.count_documents({}) == 1
|
||||||
|
#
|
||||||
|
#
|
||||||
def test_get_pre_commit_state(db_context):
|
#def test_get_pre_commit_state(db_context):
|
||||||
from planetmint.backend import query
|
# from planetmint.backend import query
|
||||||
|
#
|
||||||
state = dict(height=3, transactions=[])
|
# state = dict(height=3, transactions=[])
|
||||||
db_context.conn.db.pre_commit.insert_one(state)
|
# db_context.conn.db.pre_commit.insert_one(state)
|
||||||
resp = query.get_pre_commit_state(db_context.conn)
|
# resp = query.get_pre_commit_state(db_context.conn)
|
||||||
assert resp == state
|
# assert resp == state
|
||||||
|
#
|
||||||
|
#
|
||||||
def test_validator_update():
|
#def test_validator_update():
|
||||||
from planetmint.backend import connect, query
|
# from planetmint.backend import connect, query
|
||||||
|
#
|
||||||
conn = connect()
|
# conn = connect()
|
||||||
|
#
|
||||||
def gen_validator_update(height):
|
# def gen_validator_update(height):
|
||||||
return {'data': 'somedata', 'height': height, 'election_id': f'election_id_at_height_{height}'}
|
# return {'data': 'somedata', 'height': height, 'election_id': f'election_id_at_height_{height}'}
|
||||||
|
#
|
||||||
for i in range(1, 100, 10):
|
# for i in range(1, 100, 10):
|
||||||
value = gen_validator_update(i)
|
# value = gen_validator_update(i)
|
||||||
query.store_validator_set(conn, value)
|
# query.store_validator_set(conn, value)
|
||||||
|
#
|
||||||
v1 = query.get_validator_set(conn, 8)
|
# v1 = query.get_validator_set(conn, 8)
|
||||||
assert v1['height'] == 1
|
# assert v1['height'] == 1
|
||||||
|
#
|
||||||
v41 = query.get_validator_set(conn, 50)
|
# v41 = query.get_validator_set(conn, 50)
|
||||||
assert v41['height'] == 41
|
# assert v41['height'] == 41
|
||||||
|
#
|
||||||
v91 = query.get_validator_set(conn)
|
# v91 = query.get_validator_set(conn)
|
||||||
assert v91['height'] == 91
|
# assert v91['height'] == 91
|
||||||
|
#
|
||||||
|
#
|
||||||
@pytest.mark.parametrize('description,stores,expected', [
|
#@pytest.mark.parametrize('description,stores,expected', [
|
||||||
(
|
# (
|
||||||
'Query empty database.',
|
# 'Query empty database.',
|
||||||
[],
|
# [],
|
||||||
None,
|
# None,
|
||||||
),
|
# ),
|
||||||
(
|
# (
|
||||||
'Store one chain with the default value for `is_synced`.',
|
# 'Store one chain with the default value for `is_synced`.',
|
||||||
[
|
# [
|
||||||
{'height': 0, 'chain_id': 'some-id'},
|
# {'height': 0, 'chain_id': 'some-id'},
|
||||||
],
|
# ],
|
||||||
{'height': 0, 'chain_id': 'some-id', 'is_synced': True},
|
# {'height': 0, 'chain_id': 'some-id', 'is_synced': True},
|
||||||
),
|
# ),
|
||||||
(
|
# (
|
||||||
'Store one chain with a custom value for `is_synced`.',
|
# 'Store one chain with a custom value for `is_synced`.',
|
||||||
[
|
# [
|
||||||
{'height': 0, 'chain_id': 'some-id', 'is_synced': False},
|
# {'height': 0, 'chain_id': 'some-id', 'is_synced': False},
|
||||||
],
|
# ],
|
||||||
{'height': 0, 'chain_id': 'some-id', 'is_synced': False},
|
# {'height': 0, 'chain_id': 'some-id', 'is_synced': False},
|
||||||
),
|
# ),
|
||||||
(
|
# (
|
||||||
'Store one chain, then update it.',
|
# 'Store one chain, then update it.',
|
||||||
[
|
# [
|
||||||
{'height': 0, 'chain_id': 'some-id', 'is_synced': True},
|
# {'height': 0, 'chain_id': 'some-id', 'is_synced': True},
|
||||||
{'height': 0, 'chain_id': 'new-id', 'is_synced': False},
|
# {'height': 0, 'chain_id': 'new-id', 'is_synced': False},
|
||||||
],
|
# ],
|
||||||
{'height': 0, 'chain_id': 'new-id', 'is_synced': False},
|
# {'height': 0, 'chain_id': 'new-id', 'is_synced': False},
|
||||||
),
|
# ),
|
||||||
(
|
# (
|
||||||
'Store a chain, update it, store another chain.',
|
# 'Store a chain, update it, store another chain.',
|
||||||
[
|
# [
|
||||||
{'height': 0, 'chain_id': 'some-id', 'is_synced': True},
|
# {'height': 0, 'chain_id': 'some-id', 'is_synced': True},
|
||||||
{'height': 0, 'chain_id': 'some-id', 'is_synced': False},
|
# {'height': 0, 'chain_id': 'some-id', 'is_synced': False},
|
||||||
{'height': 10, 'chain_id': 'another-id', 'is_synced': True},
|
# {'height': 10, 'chain_id': 'another-id', 'is_synced': True},
|
||||||
],
|
# ],
|
||||||
{'height': 10, 'chain_id': 'another-id', 'is_synced': True},
|
# {'height': 10, 'chain_id': 'another-id', 'is_synced': True},
|
||||||
),
|
# ),
|
||||||
])
|
#])
|
||||||
def test_store_abci_chain(description, stores, expected):
|
#def test_store_abci_chain(description, stores, expected):
|
||||||
conn = connect()
|
# conn = connect()
|
||||||
|
#
|
||||||
for store in stores:
|
# for store in stores:
|
||||||
query.store_abci_chain(conn, **store)
|
# query.store_abci_chain(conn, **store)
|
||||||
|
#
|
||||||
actual = query.get_latest_abci_chain(conn)
|
# actual = query.get_latest_abci_chain(conn)
|
||||||
assert expected == actual, description
|
# assert expected == actual, description
|
||||||
|
#
|
||||||
test_get_txids_filtered(None, None)
|
#test_get_txids_filtered(None, None)
|
||||||
|
#
|
||||||
@ -1,76 +1,77 @@
|
|||||||
# Copyright © 2020 Interplanetary Database Association e.V.,
|
## Copyright © 2020 Interplanetary Database Association e.V.,
|
||||||
# Planetmint and IPDB software contributors.
|
## Planetmint and IPDB software contributors.
|
||||||
# SPDX-License-Identifier: (Apache-2.0 AND CC-BY-4.0)
|
## SPDX-License-Identifier: (Apache-2.0 AND CC-BY-4.0)
|
||||||
# Code is Apache-2.0 and docs are CC-BY-4.0
|
## Code is Apache-2.0 and docs are CC-BY-4.0
|
||||||
|
#
|
||||||
|
#
|
||||||
def test_init_database_is_graceful_if_db_exists():
|
#def test_init_database_is_graceful_if_db_exists():
|
||||||
import planetmint
|
# import planetmint
|
||||||
from planetmint import backend
|
# from planetmint import backend
|
||||||
from planetmint.backend.schema import init_database
|
# from planetmint.backend.schema import init_database
|
||||||
|
#
|
||||||
conn = backend.connect()
|
# conn = backend.connect()
|
||||||
dbname = planetmint.config['database']['name']
|
# dbname = planetmint.config['database']['name']
|
||||||
|
#
|
||||||
# The db is set up by the fixtures
|
# # The db is set up by the fixtures
|
||||||
assert dbname in conn.conn.list_database_names()
|
# assert dbname in conn.conn.list_database_names()
|
||||||
|
#
|
||||||
init_database()
|
# init_database()
|
||||||
|
#
|
||||||
|
#
|
||||||
def test_create_tables():
|
#def test_create_tables():
|
||||||
import planetmint
|
# import planetmint
|
||||||
from planetmint import backend
|
# from planetmint import backend
|
||||||
from planetmint.backend import schema
|
# from planetmint.backend import schema
|
||||||
|
#
|
||||||
conn = backend.connect()
|
# conn = backend.connect()
|
||||||
dbname = planetmint.config['database']['name']
|
# dbname = planetmint.config['database']['name']
|
||||||
|
#
|
||||||
# The db is set up by the fixtures so we need to remove it
|
# # The db is set up by the fixtures so we need to remove it
|
||||||
conn.conn.drop_database(dbname)
|
# conn.conn.drop_database(dbname)
|
||||||
schema.create_database(conn, dbname)
|
# schema.create_database(conn, dbname)
|
||||||
schema.create_tables(conn, dbname)
|
# schema.create_tables(conn, dbname)
|
||||||
|
#
|
||||||
collection_names = conn.conn[dbname].list_collection_names()
|
# collection_names = conn.conn[dbname].list_collection_names()
|
||||||
assert set(collection_names) == {
|
# assert set(collection_names) == {
|
||||||
'transactions', 'assets', 'metadata', 'blocks', 'utxos', 'validators', 'elections',
|
# 'transactions', 'assets', 'metadata', 'blocks', 'utxos', 'validators', 'elections',
|
||||||
'pre_commit', 'abci_chains',
|
# 'pre_commit', 'abci_chains',
|
||||||
}
|
# }
|
||||||
|
#
|
||||||
indexes = conn.conn[dbname]['assets'].index_information().keys()
|
# indexes = conn.conn[dbname]['assets'].index_information().keys()
|
||||||
assert set(indexes) == {'_id_', 'asset_id', 'text'}
|
# assert set(indexes) == {'_id_', 'asset_id', 'text'}
|
||||||
|
#
|
||||||
index_info = conn.conn[dbname]['transactions'].index_information()
|
# index_info = conn.conn[dbname]['transactions'].index_information()
|
||||||
indexes = index_info.keys()
|
# indexes = index_info.keys()
|
||||||
assert set(indexes) == {
|
# assert set(indexes) == {
|
||||||
'_id_', 'transaction_id', 'asset_id', 'outputs', 'inputs'}
|
# '_id_', 'transaction_id', 'asset_id', 'outputs', 'inputs'}
|
||||||
assert index_info['transaction_id']['unique']
|
# assert index_info['transaction_id']['unique']
|
||||||
|
#
|
||||||
index_info = conn.conn[dbname]['blocks'].index_information()
|
# index_info = conn.conn[dbname]['blocks'].index_information()
|
||||||
indexes = index_info.keys()
|
# indexes = index_info.keys()
|
||||||
assert set(indexes) == {'_id_', 'height'}
|
# assert set(indexes) == {'_id_', 'height'}
|
||||||
assert index_info['height']['unique']
|
# assert index_info['height']['unique']
|
||||||
|
#
|
||||||
index_info = conn.conn[dbname]['utxos'].index_information()
|
# index_info = conn.conn[dbname]['utxos'].index_information()
|
||||||
assert set(index_info.keys()) == {'_id_', 'utxo'}
|
# assert set(index_info.keys()) == {'_id_', 'utxo'}
|
||||||
assert index_info['utxo']['unique']
|
# assert index_info['utxo']['unique']
|
||||||
assert index_info['utxo']['key'] == [('transaction_id', 1),
|
# assert index_info['utxo']['key'] == [('transaction_id', 1),
|
||||||
('output_index', 1)]
|
# ('output_index', 1)]
|
||||||
|
#
|
||||||
indexes = conn.conn[dbname]['elections'].index_information()
|
# indexes = conn.conn[dbname]['elections'].index_information()
|
||||||
assert set(indexes.keys()) == {'_id_', 'election_id_height'}
|
# assert set(indexes.keys()) == {'_id_', 'election_id_height'}
|
||||||
assert indexes['election_id_height']['unique']
|
# assert indexes['election_id_height']['unique']
|
||||||
|
#
|
||||||
indexes = conn.conn[dbname]['pre_commit'].index_information()
|
# indexes = conn.conn[dbname]['pre_commit'].index_information()
|
||||||
assert set(indexes.keys()) == {'_id_', 'height'}
|
# assert set(indexes.keys()) == {'_id_', 'height'}
|
||||||
assert indexes['height']['unique']
|
# assert indexes['height']['unique']
|
||||||
|
#
|
||||||
|
#
|
||||||
def test_drop(dummy_db):
|
#def test_drop(dummy_db):
|
||||||
from planetmint import backend
|
# from planetmint import backend
|
||||||
from planetmint.backend import schema
|
# from planetmint.backend import schema
|
||||||
|
#
|
||||||
conn = backend.connect()
|
# conn = backend.connect()
|
||||||
assert dummy_db in conn.conn.list_database_names()
|
# assert dummy_db in conn.conn.list_database_names()
|
||||||
schema.drop_database(conn, dummy_db)
|
# schema.drop_database(conn, dummy_db)
|
||||||
assert dummy_db not in conn.conn.list_database_names()
|
# assert dummy_db not in conn.conn.list_database_names()
|
||||||
|
#
|
||||||
Loading…
x
Reference in New Issue
Block a user