|
| 1 | +"""Unit tests for critical bug fixes in Iceberg Offline Store. |
| 2 | +
|
| 3 | +Tests cover: |
| 4 | +1. TTL filtering enforcement in ASOF joins |
| 5 | +2. SQL injection prevention |
| 6 | +3. Deterministic tie-breaking with created_timestamp |
| 7 | +""" |
| 8 | + |
| 9 | +import pandas as pd |
| 10 | +import pytest |
| 11 | +from datetime import datetime, timedelta |
| 12 | + |
| 13 | + |
| 14 | +pyiceberg = pytest.importorskip("pyiceberg") |
| 15 | +duckdb = pytest.importorskip("duckdb") |
| 16 | + |
| 17 | + |
| 18 | +from feast.infra.offline_stores.contrib.iceberg_offline_store.iceberg import ( |
| 19 | + IcebergOfflineStore, |
| 20 | + IcebergOfflineStoreConfig, |
| 21 | +) |
| 22 | + |
| 23 | + |
| 24 | +def test_sql_injection_prevention_rejects_sql_strings(): |
| 25 | + """Test that SQL string input is rejected to prevent SQL injection.""" |
| 26 | + from feast.repo_config import RepoConfig |
| 27 | + |
| 28 | + config = RepoConfig( |
| 29 | + project="test_project", |
| 30 | + registry="registry.db", |
| 31 | + provider="local", |
| 32 | + offline_store=IcebergOfflineStoreConfig( |
| 33 | + catalog_type="sql", |
| 34 | + uri="sqlite:///test.db", |
| 35 | + ), |
| 36 | + ) |
| 37 | + |
| 38 | + # Attempt SQL injection via entity_df |
| 39 | + malicious_sql = "SELECT * FROM features; DROP TABLE features; --" |
| 40 | + |
| 41 | + with pytest.raises(ValueError, match="must be a pandas DataFrame"): |
| 42 | + IcebergOfflineStore.get_historical_features( |
| 43 | + config=config, |
| 44 | + feature_views=[], |
| 45 | + feature_refs=[], |
| 46 | + entity_df=malicious_sql, # SQL string instead of DataFrame |
| 47 | + registry=None, |
| 48 | + project="test_project", |
| 49 | + ) |
| 50 | + |
| 51 | + |
| 52 | +def test_sql_injection_prevention_accepts_dataframes(): |
| 53 | + """Test that valid DataFrame input is accepted.""" |
| 54 | + from feast.repo_config import RepoConfig |
| 55 | + from unittest.mock import MagicMock, patch |
| 56 | + |
| 57 | + config = RepoConfig( |
| 58 | + project="test_project", |
| 59 | + registry="registry.db", |
| 60 | + provider="local", |
| 61 | + offline_store=IcebergOfflineStoreConfig( |
| 62 | + catalog_type="sql", |
| 63 | + uri="sqlite:///test.db", |
| 64 | + ), |
| 65 | + ) |
| 66 | + |
| 67 | + # Valid DataFrame input |
| 68 | + entity_df = pd.DataFrame({ |
| 69 | + "driver_id": [1, 2, 3], |
| 70 | + "event_timestamp": [datetime.now()] * 3, |
| 71 | + }) |
| 72 | + |
| 73 | + # Mock the catalog and DuckDB operations |
| 74 | + with patch("feast.infra.offline_stores.contrib.iceberg_offline_store.iceberg.load_catalog") as mock_catalog: |
| 75 | + mock_catalog.return_value = MagicMock() |
| 76 | + |
| 77 | + # This should NOT raise an error |
| 78 | + try: |
| 79 | + result = IcebergOfflineStore.get_historical_features( |
| 80 | + config=config, |
| 81 | + feature_views=[], |
| 82 | + feature_refs=[], |
| 83 | + entity_df=entity_df, |
| 84 | + registry=MagicMock(), |
| 85 | + project="test_project", |
| 86 | + ) |
| 87 | + # Expected to work (though may fail later due to missing mocks) |
| 88 | + except ValueError as e: |
| 89 | + if "must be a pandas DataFrame" in str(e): |
| 90 | + pytest.fail("Should accept DataFrame input") |
| 91 | + # Other errors are acceptable in this unit test |
| 92 | + except Exception: |
| 93 | + # Other exceptions are fine - we're only testing SQL injection prevention |
| 94 | + pass |
| 95 | + |
| 96 | + |
| 97 | +def test_ttl_filter_query_construction(): |
| 98 | + """Test that TTL filter is correctly added to ASOF JOIN query.""" |
| 99 | + from feast.feature_view import FeatureView |
| 100 | + from feast.field import Field |
| 101 | + from feast.types import Int32 |
| 102 | + from feast.entity import Entity |
| 103 | + from feast.infra.offline_stores.contrib.iceberg_offline_store.iceberg_source import IcebergSource |
| 104 | + from feast.repo_config import RepoConfig |
| 105 | + from unittest.mock import MagicMock, patch |
| 106 | + import duckdb |
| 107 | + |
| 108 | + # Create entity |
| 109 | + driver_entity = Entity(name="driver", join_keys=["driver_id"]) |
| 110 | + |
| 111 | + # Create a feature view with TTL |
| 112 | + source = IcebergSource( |
| 113 | + name="test_source", |
| 114 | + table_identifier="test.features", |
| 115 | + timestamp_field="event_timestamp", |
| 116 | + ) |
| 117 | + |
| 118 | + feature_view = FeatureView( |
| 119 | + name="test_fv", |
| 120 | + entities=[driver_entity], |
| 121 | + schema=[Field(name="feature1", dtype=Int32)], |
| 122 | + source=source, |
| 123 | + ttl=timedelta(hours=24), # 24-hour TTL |
| 124 | + ) |
| 125 | + |
| 126 | + config = RepoConfig( |
| 127 | + project="test_project", |
| 128 | + registry="registry.db", |
| 129 | + provider="local", |
| 130 | + offline_store=IcebergOfflineStoreConfig( |
| 131 | + catalog_type="sql", |
| 132 | + uri="sqlite:///test.db", |
| 133 | + ), |
| 134 | + ) |
| 135 | + |
| 136 | + entity_df = pd.DataFrame({ |
| 137 | + "driver": [1, 2], |
| 138 | + "event_timestamp": [datetime(2026, 1, 16, 12, 0, 0)] * 2, |
| 139 | + }) |
| 140 | + |
| 141 | + # Mock catalog and table operations |
| 142 | + mock_table = MagicMock() |
| 143 | + mock_table.scan.return_value.plan_files.return_value = [] |
| 144 | + mock_table.schema.return_value.as_arrow.return_value = MagicMock() |
| 145 | + |
| 146 | + mock_catalog = MagicMock() |
| 147 | + mock_catalog.load_table.return_value = mock_table |
| 148 | + |
| 149 | + with patch("feast.infra.offline_stores.contrib.iceberg_offline_store.iceberg.load_catalog", return_value=mock_catalog): |
| 150 | + with patch("feast.infra.offline_stores.contrib.iceberg_offline_store.iceberg.duckdb.connect") as mock_duckdb: |
| 151 | + mock_con = MagicMock() |
| 152 | + mock_duckdb.return_value = mock_con |
| 153 | + |
| 154 | + retrieval_job = IcebergOfflineStore.get_historical_features( |
| 155 | + config=config, |
| 156 | + feature_views=[feature_view], |
| 157 | + feature_refs=["test_fv:feature1"], |
| 158 | + entity_df=entity_df, |
| 159 | + registry=MagicMock(), |
| 160 | + project="test_project", |
| 161 | + ) |
| 162 | + |
| 163 | + # Check that the query contains TTL filtering |
| 164 | + query = retrieval_job.query |
| 165 | + |
| 166 | + # Should contain the TTL interval filter |
| 167 | + assert "INTERVAL" in query |
| 168 | + assert "86400" in query or "86400.0" in query # 24 hours * 3600 seconds |
| 169 | + |
| 170 | + # Should have the correct inequality direction |
| 171 | + # feature_timestamp >= entity_timestamp - INTERVAL 'ttl' SECOND |
| 172 | + assert ">=" in query |
| 173 | + assert "event_timestamp - INTERVAL" in query |
| 174 | + |
| 175 | + |
| 176 | +def test_created_timestamp_used_in_pull_latest(): |
| 177 | + """Test that created_timestamp is used as tiebreaker in pull_latest_from_table_or_query.""" |
| 178 | + from feast.infra.offline_stores.contrib.iceberg_offline_store.iceberg_source import IcebergSource |
| 179 | + from feast.repo_config import RepoConfig |
| 180 | + from unittest.mock import MagicMock, patch |
| 181 | + |
| 182 | + source = IcebergSource( |
| 183 | + name="test_source", |
| 184 | + table_identifier="test.features", |
| 185 | + timestamp_field="event_timestamp", |
| 186 | + created_timestamp_column="created_timestamp", |
| 187 | + ) |
| 188 | + |
| 189 | + config = RepoConfig( |
| 190 | + project="test_project", |
| 191 | + registry="registry.db", |
| 192 | + provider="local", |
| 193 | + offline_store=IcebergOfflineStoreConfig( |
| 194 | + catalog_type="sql", |
| 195 | + uri="sqlite:///test.db", |
| 196 | + ), |
| 197 | + ) |
| 198 | + |
| 199 | + # Mock catalog and table operations |
| 200 | + mock_table = MagicMock() |
| 201 | + mock_table.scan.return_value.plan_files.return_value = [] |
| 202 | + mock_table.schema.return_value.as_arrow.return_value = MagicMock() |
| 203 | + |
| 204 | + mock_catalog = MagicMock() |
| 205 | + mock_catalog.load_table.return_value = mock_table |
| 206 | + |
| 207 | + with patch("feast.infra.offline_stores.contrib.iceberg_offline_store.iceberg.load_catalog", return_value=mock_catalog): |
| 208 | + with patch("feast.infra.offline_stores.contrib.iceberg_offline_store.iceberg.duckdb.connect") as mock_duckdb: |
| 209 | + mock_con = MagicMock() |
| 210 | + mock_duckdb.return_value = mock_con |
| 211 | + |
| 212 | + retrieval_job = IcebergOfflineStore.pull_latest_from_table_or_query( |
| 213 | + config=config, |
| 214 | + data_source=source, |
| 215 | + join_key_columns=["driver_id"], |
| 216 | + feature_name_columns=["feature1"], |
| 217 | + timestamp_field="event_timestamp", |
| 218 | + created_timestamp_column="created_timestamp", |
| 219 | + start_date=None, |
| 220 | + end_date=None, |
| 221 | + ) |
| 222 | + |
| 223 | + # Check that the query includes created_timestamp in ORDER BY |
| 224 | + query = retrieval_job.query |
| 225 | + |
| 226 | + # Should order by both event_timestamp and created_timestamp |
| 227 | + assert "ORDER BY event_timestamp DESC, created_timestamp DESC" in query or \ |
| 228 | + "ORDER BY event_timestamp DESC,created_timestamp DESC" in query |
| 229 | + |
| 230 | + |
| 231 | +def test_ttl_filter_not_added_when_ttl_is_none(): |
| 232 | + """Test that TTL filter is not added when FeatureView has no TTL.""" |
| 233 | + from feast.feature_view import FeatureView |
| 234 | + from feast.field import Field |
| 235 | + from feast.types import Int32 |
| 236 | + from feast.entity import Entity |
| 237 | + from feast.infra.offline_stores.contrib.iceberg_offline_store.iceberg_source import IcebergSource |
| 238 | + from feast.repo_config import RepoConfig |
| 239 | + from unittest.mock import MagicMock, patch |
| 240 | + |
| 241 | + # Create entity |
| 242 | + driver_entity = Entity(name="driver", join_keys=["driver_id"]) |
| 243 | + |
| 244 | + source = IcebergSource( |
| 245 | + name="test_source", |
| 246 | + table_identifier="test.features", |
| 247 | + timestamp_field="event_timestamp", |
| 248 | + ) |
| 249 | + |
| 250 | + # Feature view WITHOUT TTL |
| 251 | + feature_view = FeatureView( |
| 252 | + name="test_fv", |
| 253 | + entities=[driver_entity], |
| 254 | + schema=[Field(name="feature1", dtype=Int32)], |
| 255 | + source=source, |
| 256 | + ttl=None, # No TTL |
| 257 | + ) |
| 258 | + |
| 259 | + config = RepoConfig( |
| 260 | + project="test_project", |
| 261 | + registry="registry.db", |
| 262 | + provider="local", |
| 263 | + offline_store=IcebergOfflineStoreConfig( |
| 264 | + catalog_type="sql", |
| 265 | + uri="sqlite:///test.db", |
| 266 | + ), |
| 267 | + ) |
| 268 | + |
| 269 | + entity_df = pd.DataFrame({ |
| 270 | + "driver": [1, 2], |
| 271 | + "event_timestamp": [datetime(2026, 1, 16, 12, 0, 0)] * 2, |
| 272 | + }) |
| 273 | + |
| 274 | + mock_table = MagicMock() |
| 275 | + mock_table.scan.return_value.plan_files.return_value = [] |
| 276 | + mock_table.schema.return_value.as_arrow.return_value = MagicMock() |
| 277 | + |
| 278 | + mock_catalog = MagicMock() |
| 279 | + mock_catalog.load_table.return_value = mock_table |
| 280 | + |
| 281 | + with patch("feast.infra.offline_stores.contrib.iceberg_offline_store.iceberg.load_catalog", return_value=mock_catalog): |
| 282 | + with patch("feast.infra.offline_stores.contrib.iceberg_offline_store.iceberg.duckdb.connect") as mock_duckdb: |
| 283 | + mock_con = MagicMock() |
| 284 | + mock_duckdb.return_value = mock_con |
| 285 | + |
| 286 | + retrieval_job = IcebergOfflineStore.get_historical_features( |
| 287 | + config=config, |
| 288 | + feature_views=[feature_view], |
| 289 | + feature_refs=["test_fv:feature1"], |
| 290 | + entity_df=entity_df, |
| 291 | + registry=MagicMock(), |
| 292 | + project="test_project", |
| 293 | + ) |
| 294 | + |
| 295 | + query = retrieval_job.query |
| 296 | + |
| 297 | + # Should NOT contain TTL filtering when ttl is None |
| 298 | + # The query should only have the basic ASOF join condition |
| 299 | + assert "ASOF LEFT JOIN" in query |
| 300 | + # TTL-specific interval should not be present |
| 301 | + lines_with_interval = [line for line in query.split('\n') if 'INTERVAL' in line and 'event_timestamp - INTERVAL' in line] |
| 302 | + assert len(lines_with_interval) == 0, "TTL filter should not be present when ttl is None" |
0 commit comments