Closes the 'admin pre-stages a curated table/view for analysts' use case end-to-end across both supported source connectors. Backend (BigQuery + Keboola, schema v20): - schema v20 adds source_query TEXT to table_registry (renumbered from v19 after main's #150 RBAC migration also bumped to v19) - connectors/bigquery/extractor.py adds materialize_query(table_id, sql, *, bq, output_dir, max_bytes=...) — BqAccess session, dry-run cost guardrail (default 10 GiB, configurable via data_source.bigquery.max_bytes_per_materialize), idempotent ATTACH, rows/bytes/md5 metadata for sync_state - connectors/keboola/access.py — new KeboolaAccess facade (parallel of BqAccess) wrapping ATTACH 'keboola://...' AS kbc - connectors/keboola/extractor.py adds materialize_query — same shape, no dry-run analog (Keboola Storage API has different cost model); legacy bucket-download path skips query_mode='materialized' rows - app/api/sync.py:_run_materialized_pass dispatches by source_type to the right materialize_query - app/api/admin.py: RegisterTableRequest accepts source_query; model_validator coheres mode↔source_query↔bucket; PUT preserves omitted fields; deprecation marks (Field(deprecated=True)) on sync_strategy + profile_after_sync (no extractor reads them; profile_after_sync becomes inert — bug from earlier work where /api/sync/trigger never honored the flag); _BQ_OPTIONAL_FIELD_DEFAULTS injects defaults into GET /server-config payload Operator + CLI surface: - da admin register-table --query / --query-mode materialized - scripts/smoke-test-materialized-bq.sh — end-to-end smoke for operators Tests (incl. spike + integration + regression): - test_db_migration_v20, test_table_registry_source_query - test_bq_materialize, test_bq_cost_guardrail, test_bq_init_extract_skips - test_keboola_access, test_keboola_extension_query_passthrough (lock-in for the DuckDB extension capability), test_keboola_materialize, test_keboola_init_extract_skips, test_keboola_materialized_e2e (skipped without KBC_TEST_* creds) - test_sync_trigger_materialized, test_sync_trigger_keboola_materialized - test_api_admin_materialized, test_cli_admin_materialized - test_admin_bq_register, test_admin_discover_bigquery, test_admin_keboola_materialized, test_admin_phase_c_deprecation, test_admin_put_preservation, test_materialized_e2e Cost: BQ uses bigquery_query() (jobs API, view-aware) — works on tables, views, materialized views uniformly. Keboola uses ATTACH+COPY parquet through the DuckDB extension.
71 lines
2.2 KiB
Python
71 lines
2.2 KiB
Python
"""End-to-end: register a Keboola materialized row -> trigger sync ->
|
|
parquet appears -> manifest serves it -> CLI da sync would download it.
|
|
|
|
Skipped unless KBC_TEST_URL + KBC_TEST_TOKEN + KBC_TEST_BUCKET +
|
|
KBC_TEST_TABLE are present.
|
|
"""
|
|
import os
|
|
from pathlib import Path
|
|
|
|
import pytest
|
|
|
|
|
|
KBC_URL = os.environ.get("KBC_TEST_URL")
|
|
KBC_TOKEN = os.environ.get("KBC_TEST_TOKEN")
|
|
KBC_BUCKET = os.environ.get("KBC_TEST_BUCKET")
|
|
KBC_TABLE = os.environ.get("KBC_TEST_TABLE")
|
|
|
|
pytestmark = pytest.mark.skipif(
|
|
not all([KBC_URL, KBC_TOKEN, KBC_BUCKET, KBC_TABLE]),
|
|
reason="Keboola creds not provided",
|
|
)
|
|
|
|
|
|
def test_register_trigger_manifest_path(seeded_app, monkeypatch, tmp_path):
|
|
monkeypatch.setenv("DATA_DIR", str(tmp_path))
|
|
monkeypatch.setenv("KEBOOLA_TOKEN", KBC_TOKEN)
|
|
monkeypatch.setattr(
|
|
"app.instance_config.load_instance_config",
|
|
lambda: {
|
|
"data_source": {
|
|
"type": "keboola",
|
|
"keboola": {
|
|
"url": KBC_URL,
|
|
"token_env": "KEBOOLA_TOKEN",
|
|
},
|
|
},
|
|
},
|
|
raising=False,
|
|
)
|
|
|
|
c = seeded_app["client"]
|
|
token = seeded_app["admin_token"]
|
|
auth = {"Authorization": f"Bearer {token}"}
|
|
|
|
# Register.
|
|
r = c.post("/api/admin/register-table", headers=auth, json={
|
|
"name": "smoke_subset",
|
|
"source_type": "keboola",
|
|
"query_mode": "materialized",
|
|
"source_query": (
|
|
f'SELECT * FROM kbc."{KBC_BUCKET}"."{KBC_TABLE}" LIMIT 5'
|
|
),
|
|
})
|
|
assert r.status_code == 201
|
|
|
|
# Trigger sync.
|
|
r = c.post("/api/sync/trigger", headers=auth)
|
|
assert r.status_code in (200, 202)
|
|
|
|
# Parquet must exist.
|
|
parquet = Path(tmp_path) / "extracts" / "keboola" / "data" / "smoke_subset.parquet"
|
|
assert parquet.exists() and parquet.stat().st_size > 0
|
|
|
|
# Manifest serves it.
|
|
r = c.get("/api/sync/manifest", headers=auth)
|
|
rows = r.json()["tables"]
|
|
smoke = next((t for t in rows if t["id"] == "smoke_subset"), None)
|
|
assert smoke is not None
|
|
assert smoke["source_type"] == "keboola"
|
|
assert smoke["query_mode"] == "local" # materialized parquets surface as local
|
|
assert smoke["md5"] # has a hash for da sync delta detection
|