1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236
|
import pytest
import sqlalchemy as sa
import sqlalchemy.orm
from sqlalchemy_utils import (
create_materialized_view,
create_view,
refresh_materialized_view
)
from sqlalchemy_utils.compat import _select_args
from sqlalchemy_utils.view import CreateView
@pytest.fixture
def Article(Base, User):
class Article(Base):
__tablename__ = 'article'
id = sa.Column(sa.Integer, primary_key=True)
name = sa.Column(sa.String(128))
author_id = sa.Column(sa.Integer, sa.ForeignKey(User.id))
author = sa.orm.relationship(User)
return Article
@pytest.fixture
def User(Base):
class User(Base):
__tablename__ = 'user'
id = sa.Column(sa.Integer, primary_key=True)
name = sa.Column(sa.String(128))
return User
@pytest.fixture
def ArticleMV(Base, Article, User):
class ArticleMV(Base):
__table__ = create_materialized_view(
name='article-mv',
selectable=sa.select(
*_select_args(
Article.id,
Article.name,
User.id.label('author_id'),
User.name.label('author_name'),
)
).select_from(
Article.__table__.join(User, Article.author_id == User.id)
),
aliases={'name': 'article_name'},
metadata=Base.metadata,
indexes=[sa.Index('article-mv_id_idx', 'id')]
)
return ArticleMV
@pytest.fixture
def ArticleView(Base, Article, User):
class ArticleView(Base):
__table__ = create_view(
name='article-view',
selectable=sa.select(
*_select_args(
Article.id,
Article.name,
User.id.label('author_id'),
User.name.label('author_name'),
)
).select_from(
Article.__table__.join(User, Article.author_id == User.id)
),
metadata=Base.metadata
)
return ArticleView
@pytest.fixture
def init_models(ArticleMV, ArticleView):
pass
@pytest.mark.usefixtures('postgresql_dsn')
class TestMaterializedViews:
def test_refresh_materialized_view(
self,
session,
Article,
User,
ArticleMV
):
article = Article(
name='Some article',
author=User(name='Some user')
)
session.add(article)
session.commit()
refresh_materialized_view(session, 'article-mv')
materialized = session.query(ArticleMV).first()
assert materialized.article_name == 'Some article'
assert materialized.author_name == 'Some user'
def test_querying_view(
self,
session,
Article,
User,
ArticleView
):
article = Article(
name='Some article',
author=User(name='Some user')
)
session.add(article)
session.commit()
row = session.query(ArticleView).first()
assert row.name == 'Some article'
assert row.author_name == 'Some user'
class TrivialViewTestCases:
def life_cycle(
self,
engine,
metadata,
column,
cascade_on_drop,
replace=False,
):
create_view(
name='trivial_view',
selectable=sa.select(*_select_args(column)),
metadata=metadata,
cascade_on_drop=cascade_on_drop,
replace=replace,
)
metadata.create_all(engine)
metadata.drop_all(engine)
class SupportsCascade(TrivialViewTestCases):
def test_life_cycle_cascade(
self,
connection,
engine,
Base,
User
):
self.life_cycle(engine, Base.metadata, User.id, cascade_on_drop=True)
class DoesntSupportCascade(SupportsCascade):
@pytest.mark.xfail
def test_life_cycle_cascade(self, *args, **kwargs):
super().test_life_cycle_cascade(
*args,
**kwargs
)
class SupportsNoCascade(TrivialViewTestCases):
def test_life_cycle_no_cascade(
self,
connection,
engine,
Base,
User
):
self.life_cycle(engine, Base.metadata, User.id, cascade_on_drop=False)
class SupportsReplace(TrivialViewTestCases):
def test_life_cycle_replace(
self,
connection,
engine,
Base,
User
):
self.life_cycle(
engine,
Base.metadata,
User.id,
cascade_on_drop=False,
replace=True,
)
def test_life_cycle_replace_existing(
self,
connection,
engine,
Base,
User
):
create_view(
name='trivial_view',
selectable=sa.select(*_select_args(User.id)),
metadata=Base.metadata,
)
Base.metadata.create_all(engine)
view = CreateView(
name='trivial_view',
selectable=sa.select(*_select_args(User.id)),
replace=True,
)
with connection.begin():
connection.execute(view)
Base.metadata.drop_all(engine)
def test_replace_materialized(
self,
connection,
engine,
Base,
User
):
with pytest.raises(ValueError):
CreateView(
name='trivial_view',
selectable=sa.select(*_select_args(User.id)),
materialized=True,
replace=True,
)
@pytest.mark.usefixtures('postgresql_dsn')
class TestPostgresTrivialView(SupportsCascade, SupportsNoCascade, SupportsReplace):
pass
@pytest.mark.usefixtures('mysql_dsn')
class TestMySqlTrivialView(SupportsCascade, SupportsNoCascade, SupportsReplace):
pass
@pytest.mark.usefixtures('sqlite_none_database_dsn')
class TestSqliteTrivialView(DoesntSupportCascade, SupportsNoCascade):
pass
|