Move SQLiteMemoryDbPool implementation into tests.utils
This commit is contained in:
parent
9774949cc9
commit
08f5c48fc8
|
@ -18,38 +18,12 @@ from twisted.trial import unittest
|
|||
from twisted.internet import defer
|
||||
|
||||
from mock import Mock, call
|
||||
from twisted.enterprise.adbapi import ConnectionPool
|
||||
|
||||
from synapse.server import HomeServer
|
||||
from synapse.storage import prepare_database
|
||||
from synapse.storage.profile import ProfileStore
|
||||
|
||||
|
||||
class SQLiteMemoryDbPool(ConnectionPool, object):
|
||||
def __init__(self):
|
||||
super(SQLiteMemoryDbPool, self).__init__(
|
||||
"sqlite3", ":memory:",
|
||||
cp_min=1,
|
||||
cp_max=1,
|
||||
)
|
||||
|
||||
def prepare(self):
|
||||
return self.runWithConnection(prepare_database)
|
||||
|
||||
#def runInteraction(self, interaction, *args, **kwargs):
|
||||
# # Just use a cursor as the txn directly
|
||||
# txn = self.db.cursor()
|
||||
|
||||
# def _on_success(result):
|
||||
# txn.commit()
|
||||
# return result
|
||||
# def _on_failure(failure):
|
||||
# txn.rollback()
|
||||
# raise failure
|
||||
|
||||
# d = interaction(txn, *args, **kwargs)
|
||||
# d.addCallbacks(_on_success, _on_failure)
|
||||
# return d
|
||||
from tests.utils import SQLiteMemoryDbPool
|
||||
|
||||
|
||||
class ProfileStoreTestCase(unittest.TestCase):
|
||||
|
|
|
@ -16,12 +16,14 @@
|
|||
from synapse.http.server import HttpServer
|
||||
from synapse.api.errors import cs_error, CodeMessageException, StoreError
|
||||
from synapse.api.constants import Membership
|
||||
from synapse.storage import prepare_database
|
||||
|
||||
from synapse.api.events.room import (
|
||||
RoomMemberEvent, MessageEvent
|
||||
)
|
||||
|
||||
from twisted.internet import defer, reactor
|
||||
from twisted.enterprise.adbapi import ConnectionPool
|
||||
|
||||
from collections import namedtuple
|
||||
from mock import patch, Mock
|
||||
|
@ -120,6 +122,18 @@ class MockClock(object):
|
|||
self.now += secs
|
||||
|
||||
|
||||
class SQLiteMemoryDbPool(ConnectionPool, object):
|
||||
def __init__(self):
|
||||
super(SQLiteMemoryDbPool, self).__init__(
|
||||
"sqlite3", ":memory:",
|
||||
cp_min=1,
|
||||
cp_max=1,
|
||||
)
|
||||
|
||||
def prepare(self):
|
||||
return self.runWithConnection(prepare_database)
|
||||
|
||||
|
||||
class MemoryDataStore(object):
|
||||
|
||||
Room = namedtuple(
|
||||
|
|
Loading…
Reference in New Issue