Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: rewriting old tests #263

Merged
merged 1 commit into from
Jul 11, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions tests/compat/test_common.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
from tests.conftest import manager_for_all_dbs
from tests.models import CompositeTestModel


@manager_for_all_dbs
async def test_composite_key(manager):
task_id = 5
product_type = "boots"
comp = await manager.create(CompositeTestModel, task_id=task_id, product_type=product_type)
assert comp.get_id() == (task_id, product_type)
84 changes: 84 additions & 0 deletions tests/compat/test_shortcuts.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,12 @@
import uuid

import peewee
import pytest

import peewee_async
from tests.conftest import manager_for_all_dbs
from tests.models import CompatTestModel
from tests.models import TestModelAlpha, TestModelBeta, TestModelGamma, TestModel


@manager_for_all_dbs
Expand Down Expand Up @@ -81,3 +84,84 @@ async def test_delete_obj(manager):

obj3 = await manager.get_or_none(CompatTestModel, id=obj1.id)
assert obj3 is None


@manager_for_all_dbs
@pytest.mark.parametrize(
"prefetch_type",
peewee.PREFETCH_TYPE.values()
)
async def test_prefetch(manager, prefetch_type):
alpha_1 = await manager.create(
TestModelAlpha, text='Alpha 1')
alpha_2 = await manager.create(
TestModelAlpha, text='Alpha 2')

beta_11 = await manager.create(
TestModelBeta, alpha=alpha_1, text='Beta 11')
beta_12 = await manager.create(
TestModelBeta, alpha=alpha_1, text='Beta 12')
_ = await manager.create(
TestModelBeta, alpha=alpha_2, text='Beta 21')
_ = await manager.create(
TestModelBeta, alpha=alpha_2, text='Beta 22')

gamma_111 = await manager.create(
TestModelGamma, beta=beta_11, text='Gamma 111')
gamma_112 = await manager.create(
TestModelGamma, beta=beta_11, text='Gamma 112')

result = await peewee_async.prefetch(
TestModelAlpha.select().order_by(TestModelAlpha.id),
TestModelBeta.select().order_by(TestModelBeta.id),
TestModelGamma.select().order_by(TestModelGamma.id),
prefetch_type=prefetch_type,
)
assert tuple(result) == (alpha_1, alpha_2)
assert tuple(result[0].betas) == (beta_11, beta_12)
assert tuple(result[0].betas[0].gammas) == (gamma_111, gamma_112)


@manager_for_all_dbs
async def test_update_obj(manager):

text = "Test %s" % uuid.uuid4()
obj1 = await manager.create(TestModel, text=text)

obj1.text = "Test update object"
await manager.update(obj1)

obj2 = await manager.get(TestModel, id=obj1.id)
assert obj2.text == "Test update object"


@manager_for_all_dbs
async def test_create_or_get(manager):
text = "Test %s" % uuid.uuid4()
obj1, created1 = await manager.create_or_get(
TestModel, text=text, data="Data 1")
obj2, created2 = await manager.create_or_get(
TestModel, text=text, data="Data 2")

assert created1 is True
assert created2 is False
assert obj1 == obj2
assert obj1.data == "Data 1"
assert obj2.data == "Data 1"


@manager_for_all_dbs
async def test_get_or_create(manager):

text = "Test %s" % uuid.uuid4()

obj1, created1 = await manager.get_or_create(
TestModel, text=text, defaults={'data': "Data 1"})
obj2, created2 = await manager.get_or_create(
TestModel, text=text, defaults={'data': "Data 2"})

assert created1 is True
assert created2 is False
assert obj1 == obj2
assert obj1.data == "Data 1"
assert obj2.data == "Data 1"
6 changes: 3 additions & 3 deletions tests/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,11 +58,11 @@ def __str__(self):

class CompositeTestModel(peewee_async.AioModel):
"""A simple "through" table for many-to-many relationship."""
uuid = peewee.ForeignKeyField(UUIDTestModel)
alpha = peewee.ForeignKeyField(TestModelAlpha)
task_id = peewee.IntegerField()
product_type = peewee.CharField()

class Meta:
primary_key = peewee.CompositeKey('uuid', 'alpha')
primary_key = peewee.CompositeKey('task_id', 'product_type')


class IntegerTestModel(peewee_async.AioModel):
Expand Down
19 changes: 11 additions & 8 deletions tests/test_common.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,17 +5,20 @@
import pytest

import peewee_async
from tests.conftest import manager_for_all_dbs
from tests.conftest import manager_for_all_dbs, dbs_all
from tests.db_config import DB_CLASSES, DB_DEFAULTS
from tests.models import UUIDTestModel, TestModelAlpha, CompositeTestModel, TestModel
from tests.models import UUIDTestModel, TestModel, CompositeTestModel


@manager_for_all_dbs
async def test_composite_key(manager):
obj_uuid = await manager.create(UUIDTestModel, text='UUID')
obj_alpha = await manager.create(TestModelAlpha, text='Alpha')
comp = await manager.create(CompositeTestModel, uuid=obj_uuid, alpha=obj_alpha)
assert (obj_uuid, obj_alpha) == (comp.uuid, comp.alpha)
@dbs_all
async def test_composite_key(db):
task_id = 5
product_type = "boots"
comp = await CompositeTestModel.aio_create(task_id=task_id, product_type=product_type)
assert comp.get_id() == (task_id, product_type)


# TODO rewrite tests below without manager. Move manager tests to compat folder


@manager_for_all_dbs
Expand Down
91 changes: 0 additions & 91 deletions tests/test_shortcuts.py

This file was deleted.

Loading