-
Notifications
You must be signed in to change notification settings - Fork 2.1k
Expand file tree
/
Copy pathcolumnValuesToBeBetween.py
More file actions
307 lines (255 loc) · 11.5 KB
/
columnValuesToBeBetween.py
File metadata and controls
307 lines (255 loc) · 11.5 KB
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
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
# Copyright 2025 Collate
# Licensed under the Collate Community License, Version 1.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
# https://github.com/open-metadata/OpenMetadata/blob/main/ingestion/LICENSE
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
"""
Validator for column values to be between test case
"""
import traceback
from abc import abstractmethod
from datetime import date, datetime, time
from typing import List, Optional, Tuple, Union
from sqlalchemy import Column
from metadata.data_quality.validations.base_test_handler import (
DIMENSION_FAILED_COUNT_KEY,
DIMENSION_TOTAL_COUNT_KEY,
BaseTestValidator,
DimensionInfo,
DimensionResult,
TestEvaluation,
)
from metadata.data_quality.validations.checkers.between_bounds_checker import (
BetweenBoundsChecker,
)
from metadata.generated.schema.tests.basic import (
TestCaseResult,
TestCaseStatus,
TestResultValue,
)
from metadata.profiler.metrics.registry import Metrics
from metadata.profiler.orm.registry import is_date_time
from metadata.utils.logger import test_suite_logger
from metadata.utils.sqa_like_column import SQALikeColumn
from metadata.utils.time_utils import convert_timestamp, utc_from_timestamp
logger = test_suite_logger()
MIN = "min"
MAX = "max"
class BaseColumnValuesToBeBetweenValidator(BaseTestValidator):
"""Validator for column values to be between test case"""
MIN_BOUND = "minValue"
MAX_BOUND = "maxValue"
def _run_validation(self) -> TestCaseResult:
"""Execute the specific test validation logic
This method contains the core validation logic that was previously
in the run_validation method.
Returns:
TestCaseResult: The test case result for the overall validation
"""
test_params = self._get_test_parameters()
try:
column: Union[SQALikeColumn, Column] = self.get_column()
min_res = self._run_results(Metrics.min, column)
max_res = self._run_results(Metrics.max, column)
min_res = self._normalize_metric_value(min_res, is_min=True)
max_res = self._normalize_metric_value(max_res, is_min=False)
metric_values = {
Metrics.min.name: min_res,
Metrics.max.name: max_res,
}
except (ValueError, RuntimeError) as exc:
msg = f"Error computing {self.test_case.fullyQualifiedName}: {exc}" # type: ignore
logger.debug(traceback.format_exc())
logger.error(msg)
return self.get_test_case_result_object(
self.execution_date,
TestCaseStatus.Aborted,
msg,
[
TestResultValue(name=MIN, value=None),
TestResultValue(name=MAX, value=None),
],
)
if self.test_case.computePassedFailedRowCount:
row_count, failed_rows = self.compute_row_count(
column, test_params[self.MIN_BOUND], test_params[self.MAX_BOUND]
)
else:
row_count, failed_rows = None, None
evaluation = self._evaluate_test_condition(metric_values, test_params)
result_message = self._format_result_message(metric_values, test_params=test_params)
test_result_values = self._get_test_result_values(metric_values)
return self.get_test_case_result_object(
self.execution_date,
self.get_test_case_status(evaluation["matched"]),
result_message,
test_result_values,
row_count=row_count,
failed_rows=failed_rows,
min_bound=test_params[self.MIN_BOUND]
if not isinstance(test_params[self.MIN_BOUND], (datetime, date))
else None,
max_bound=test_params[self.MAX_BOUND]
if not isinstance(test_params[self.MAX_BOUND], (datetime, date))
else None,
)
def _get_test_parameters(self) -> dict:
"""Get Test Parameters"""
column = self.get_column()
if is_date_time(column.type):
min_bound = self.get_test_case_param_value(
self.test_case.parameterValues, # type: ignore
self.MIN_BOUND,
type_=utc_from_timestamp,
default=datetime.min,
pre_processor=convert_timestamp,
)
max_bound = self.get_test_case_param_value(
self.test_case.parameterValues, # type: ignore
self.MAX_BOUND,
type_=utc_from_timestamp,
default=datetime.max,
pre_processor=convert_timestamp,
)
else:
min_bound = self.get_min_bound(self.MIN_BOUND)
max_bound = self.get_max_bound(self.MAX_BOUND)
return {
self.MIN_BOUND: min_bound,
self.MAX_BOUND: max_bound,
}
def _get_metrics_to_compute(self, test_params: Optional[dict] = None) -> dict:
"""Get Metrics needed to compute"""
return {Metrics.min.name: Metrics.min, Metrics.max.name: Metrics.max}
def _evaluate_test_condition(self, metric_values: dict, test_params: dict) -> TestEvaluation:
"""Evaluate the values-to-be-between test condition
For this test, the condition passes if both min and max values are within bounds.
Since this is a statistical validator (group-level), passed/failed row counts
are not applicable at the test level (only for computePassedFailedRowCount).
Args:
metric_values: Dictionary with keys from Metrics enum names
e.g., {"MIN": 10, "MAX": 100}
test_params: Dictionary with 'minValue' and 'maxValue'
Returns:
dict with keys:
- matched: bool - whether test passed (both min >= min_bound and max <= max_bound)
- passed_rows: None - not applicable for statistical validators
- failed_rows: None - not applicable for statistical validators
- total_rows: None - not applicable for statistical validators
"""
min_value = metric_values[Metrics.min.name]
max_value = metric_values[Metrics.max.name]
min_bound = test_params[self.MIN_BOUND]
max_bound = test_params[self.MAX_BOUND]
matched = min_value >= min_bound and max_value <= max_bound
total_rows = metric_values.get(DIMENSION_TOTAL_COUNT_KEY)
failed_rows = metric_values.get(DIMENSION_FAILED_COUNT_KEY)
passed_rows = total_rows - failed_rows if (total_rows is not None and failed_rows is not None) else None
return {
"matched": matched,
"passed_rows": passed_rows,
"failed_rows": failed_rows,
"total_rows": total_rows,
}
def _format_result_message(
self,
metric_values: dict,
dimension_info: Optional[DimensionInfo] = None,
test_params: Optional[dict] = None,
) -> str:
"""Format the result message for values-to-be-between test
Args:
metric_values: Dictionary with Metrics enum names as keys
dimension_info: Optional DimensionInfo with dimension details
test_params: Test parameters with min/max bounds. Required for this test.
Returns:
str: Formatted result message
"""
if test_params is None:
raise ValueError("test_params is required for columnValuesToBeBetween._format_result_message")
min_value = metric_values[Metrics.min.name]
max_value = metric_values[Metrics.max.name]
min_bound = test_params[self.MIN_BOUND]
max_bound = test_params[self.MAX_BOUND]
if dimension_info:
return (
f"Dimension {dimension_info['dimension_name']}={dimension_info['dimension_value']}: "
f"Found min={min_value}, max={max_value} vs. the expected min={min_bound}, max={max_bound}"
)
else:
return f"Found min={min_value}, max={max_value} vs. the expected min={min_bound}, max={max_bound}."
def _get_test_result_values(self, metric_values: dict) -> List[TestResultValue]:
"""Get test result values for values-to-be-between test
Args:
metric_values: Dictionary with Metrics enum names as keys
Returns:
List[TestResultValue]: Test result values for the test case
"""
return [
TestResultValue(name=MIN, value=str(metric_values[Metrics.min.name])),
TestResultValue(name=MAX, value=str(metric_values[Metrics.max.name])),
]
def _get_validation_checker(self, test_params: dict) -> BetweenBoundsChecker:
"""Get the validation checker for this test
Args:
test_params: Test parameters including min and max bounds
Returns:
BetweenBoundsChecker configured with the test bounds
"""
return BetweenBoundsChecker(
min_bound=test_params[self.MIN_BOUND],
max_bound=test_params[self.MAX_BOUND],
)
@abstractmethod
def _execute_dimensional_validation(
self,
column: Union[SQALikeColumn, Column],
dimension_col: Union[SQALikeColumn, Column],
metrics_to_compute: dict,
test_params: dict,
top_n: int,
) -> List[DimensionResult]:
"""Execute dimensional validation query for a single dimension column
Args:
column: The column being tested (e.g., revenue)
dimension_col: The dimension column to group by (e.g., region)
metrics_to_compute: Dict mapping metric names to Metrics enum values
test_params: Test parameters including min and max bounds
top_n: Number of top dimension values before grouping as "Others"
Returns:
List of DimensionResult objects for each dimension value
"""
raise NotImplementedError
@abstractmethod
def _run_results(self, metric: Metrics, column: Union[SQALikeColumn, Column]):
raise NotImplementedError
@abstractmethod
def compute_row_count(self, column: Union[SQALikeColumn, Column], min_bound, max_bound):
"""Compute row count for the given column
Args:
column (Union[SQALikeColumn, Column]): column to compute row count for
min_bound (_type_): min bound to filter out rows within the bound
max_bound (_type_): max bound to filter out rows within the bound
Raises:
NotImplementedError:
"""
raise NotImplementedError
def get_row_count(self, min_bound, max_bound) -> Tuple[int, int]:
"""Get row count
Args:
min_bound (_type_): min bound to filter out rows within the bound
max_bound (_type_): max bound to filter out rows within the bound
Returns:
Tuple[int, int]:
"""
return self.compute_row_count(self.get_column(), min_bound, max_bound)
def _normalize_metric_value(self, value, is_min: bool):
"""Normalize metric value - convert date to datetime if needed"""
if type(value) is date:
return datetime.combine(value, time.min if is_min else time.max)
return value