# File: test_smoke.py # Path: apps/etl/tests/test_smoke.py # Project: AI Risk Index — airiskindex.io # Author: Simon-Pierre Boucher # Contact: contact@spboucher.ai # Copyright © 2026 Simon-Pierre Boucher. All rights reserved. # # Description: ETL smoke tests (source configuration). from airiskindex_etl.download_onet import ONET_URL, ONET_VERSION, RAW_DIR def test_onet_source_configuration() -> None: assert ONET_VERSION.startswith("30_") assert ONET_URL.endswith(f"db_{ONET_VERSION}_text.zip") assert RAW_DIR.parts[-3:] == ("data", "raw", "onet")