
Also: Allow override of database name and user in tests (important for me as I would have to mess with my PSQL and MySQL database users otherwise) Use dict.items instead of six.iteritems as it sporadically caused RuntimeError: dictionary changed size during iteration in Python 2.6 tests. Fix typo DNS to DSN Adds Python 3.5 to tox.ini Added an .editorconfig Import babel.dates in sqlalchemy_utils.i18n as an exception would be raised when using the latest versions of babel.
77 lines
2.1 KiB
Python
77 lines
2.1 KiB
Python
import pytest
|
|
import sqlalchemy as sa
|
|
|
|
from sqlalchemy_utils.aggregates import aggregated
|
|
|
|
|
|
@pytest.fixture
|
|
def Thread(Base):
|
|
class Thread(Base):
|
|
__tablename__ = 'thread'
|
|
id = sa.Column(sa.Integer, primary_key=True)
|
|
name = sa.Column(sa.Unicode(255))
|
|
|
|
@aggregated('comments', sa.Column(sa.Integer, default=0))
|
|
def comment_count(self):
|
|
return sa.func.count('1')
|
|
return Thread
|
|
|
|
|
|
@pytest.fixture
|
|
def Comment(Base, Thread):
|
|
class Comment(Base):
|
|
__tablename__ = 'comment'
|
|
id = sa.Column(sa.Integer, primary_key=True)
|
|
content = sa.Column(sa.Unicode(255))
|
|
thread_id = sa.Column(sa.Integer, sa.ForeignKey('thread.id'))
|
|
|
|
thread = sa.orm.relationship(Thread, backref='comments')
|
|
return Comment
|
|
|
|
|
|
@pytest.fixture
|
|
def init_models(Thread, Comment):
|
|
pass
|
|
|
|
|
|
class TestAggregateValueGenerationWithBackrefs(object):
|
|
|
|
def test_assigns_aggregates_on_insert(self, session, Thread, Comment):
|
|
thread = Thread()
|
|
thread.name = u'some article name'
|
|
session.add(thread)
|
|
comment = Comment(content=u'Some content', thread=thread)
|
|
session.add(comment)
|
|
session.commit()
|
|
session.refresh(thread)
|
|
assert thread.comment_count == 1
|
|
|
|
def test_assigns_aggregates_on_separate_insert(
|
|
self,
|
|
session,
|
|
Thread,
|
|
Comment
|
|
):
|
|
thread = Thread()
|
|
thread.name = u'some article name'
|
|
session.add(thread)
|
|
session.commit()
|
|
comment = Comment(content=u'Some content', thread=thread)
|
|
session.add(comment)
|
|
session.commit()
|
|
session.refresh(thread)
|
|
assert thread.comment_count == 1
|
|
|
|
def test_assigns_aggregates_on_delete(self, session, Thread, Comment):
|
|
thread = Thread()
|
|
thread.name = u'some article name'
|
|
session.add(thread)
|
|
session.commit()
|
|
comment = Comment(content=u'Some content', thread=thread)
|
|
session.add(comment)
|
|
session.commit()
|
|
session.delete(comment)
|
|
session.commit()
|
|
session.refresh(thread)
|
|
assert thread.comment_count == 0
|