File: test_populate_default_values.py

package info (click to toggle)
ormar 0.21.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 2,856 kB
  • sloc: python: 23,666; makefile: 34; sh: 14
file content (37 lines) | stat: -rw-r--r-- 933 bytes parent folder | download
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
import ormar
from sqlalchemy import text

from tests.lifespan import init_tests
from tests.settings import create_config

base_ormar_config = create_config()


class Task(ormar.Model):
    ormar_config = base_ormar_config.copy(tablename="tasks")

    id: int = ormar.Integer(primary_key=True)
    name: str = ormar.String(
        max_length=255, minimum=0, server_default=text("'Default Name'"), nullable=False
    )
    points: int = ormar.Integer(
        default=0, minimum=0, server_default=text("0"), nullable=False
    )
    score: int = ormar.Integer(default=5)


create_test_database = init_tests(base_ormar_config)


def test_populate_default_values():
    new_kwargs = {
        "id": None,
        "name": "",
        "points": 0,
    }
    result = Task.populate_default_values(new_kwargs)

    assert result["id"] is None
    assert result["name"] == ""
    assert result["points"] == 0
    assert result["score"] == 5