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
|
import pytest
from django.core.exceptions import SuspiciousOperation
from django.db import connection, models
from django.test.utils import CaptureQueriesContext
from psqlextra.backend.schema import PostgresSchemaEditor
from .fake_model import delete_fake_model, get_fake_model
@pytest.fixture
def fake_model():
model = get_fake_model(
{
"name": models.TextField(),
}
)
yield model
delete_fake_model(model)
@pytest.fixture
def fake_model_non_concrete_field(fake_model):
model = get_fake_model(
{
"fk": models.ForeignKey(
fake_model, on_delete=models.CASCADE, related_name="fakes"
),
}
)
yield model
delete_fake_model(model)
def test_schema_editor_vacuum_not_in_transaction(fake_model):
schema_editor = PostgresSchemaEditor(connection)
with pytest.raises(SuspiciousOperation):
schema_editor.vacuum_table(fake_model._meta.db_table)
@pytest.mark.parametrize(
"kwargs,query",
[
(dict(), "VACUUM %s"),
(dict(full=True), "VACUUM (FULL) %s"),
(dict(analyze=True), "VACUUM (ANALYZE) %s"),
(dict(parallel=8), "VACUUM (PARALLEL 8) %s"),
(dict(analyze=True, verbose=True), "VACUUM (VERBOSE, ANALYZE) %s"),
(
dict(analyze=True, parallel=8, verbose=True),
"VACUUM (VERBOSE, ANALYZE, PARALLEL 8) %s",
),
(dict(freeze=True), "VACUUM (FREEZE) %s"),
(dict(verbose=True), "VACUUM (VERBOSE) %s"),
(dict(disable_page_skipping=True), "VACUUM (DISABLE_PAGE_SKIPPING) %s"),
(dict(skip_locked=True), "VACUUM (SKIP_LOCKED) %s"),
(dict(index_cleanup=True), "VACUUM (INDEX_CLEANUP) %s"),
(dict(truncate=True), "VACUUM (TRUNCATE) %s"),
],
)
@pytest.mark.django_db(transaction=True)
def test_schema_editor_vacuum_table(fake_model, kwargs, query):
schema_editor = PostgresSchemaEditor(connection)
with CaptureQueriesContext(connection) as ctx:
schema_editor.vacuum_table(fake_model._meta.db_table, **kwargs)
queries = [query["sql"] for query in ctx.captured_queries]
assert queries == [
query % connection.ops.quote_name(fake_model._meta.db_table)
]
@pytest.mark.django_db(transaction=True)
def test_schema_editor_vacuum_table_columns(fake_model):
schema_editor = PostgresSchemaEditor(connection)
with CaptureQueriesContext(connection) as ctx:
schema_editor.vacuum_table(
fake_model._meta.db_table, ["id", "name"], analyze=True
)
queries = [query["sql"] for query in ctx.captured_queries]
assert queries == [
'VACUUM (ANALYZE) %s ("id", "name")'
% connection.ops.quote_name(fake_model._meta.db_table)
]
@pytest.mark.django_db(transaction=True)
def test_schema_editor_vacuum_model(fake_model):
schema_editor = PostgresSchemaEditor(connection)
with CaptureQueriesContext(connection) as ctx:
schema_editor.vacuum_model(fake_model, analyze=True, parallel=8)
queries = [query["sql"] for query in ctx.captured_queries]
assert queries == [
"VACUUM (ANALYZE, PARALLEL 8) %s"
% connection.ops.quote_name(fake_model._meta.db_table)
]
@pytest.mark.django_db(transaction=True)
def test_schema_editor_vacuum_model_fields(fake_model):
schema_editor = PostgresSchemaEditor(connection)
with CaptureQueriesContext(connection) as ctx:
schema_editor.vacuum_model(
fake_model,
[fake_model._meta.get_field("name")],
analyze=True,
parallel=8,
)
queries = [query["sql"] for query in ctx.captured_queries]
assert queries == [
'VACUUM (ANALYZE, PARALLEL 8) %s ("name")'
% connection.ops.quote_name(fake_model._meta.db_table)
]
@pytest.mark.django_db(transaction=True)
def test_schema_editor_vacuum_model_non_concrete_fields(
fake_model, fake_model_non_concrete_field
):
schema_editor = PostgresSchemaEditor(connection)
with CaptureQueriesContext(connection) as ctx:
schema_editor.vacuum_model(
fake_model,
[fake_model._meta.get_field("fakes")],
analyze=True,
parallel=8,
)
queries = [query["sql"] for query in ctx.captured_queries]
assert queries == [
"VACUUM (ANALYZE, PARALLEL 8) %s"
% connection.ops.quote_name(fake_model._meta.db_table)
]
|