Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: Allow user to specify a format for stdout T2 (#242) #296

Merged
merged 7 commits into from
Aug 25, 2021
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -110,6 +110,8 @@ data-validation run
--labels or -l KEY1=VALUE1,KEY2=VALUE2
(Optional) Comma-separated key value pair labels for the run.
--verbose or -v Verbose logging will print queries executed
--format or -fmt Format for stdout output, Supported formats are (text, csv, json, table)
It defaults to table.
```

The default aggregation type is a 'COUNT *'. If no aggregation flag (i.e count,
Expand Down
1 change: 1 addition & 0 deletions data_validation/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -143,6 +143,7 @@ def build_config_managers_from_args(args):
table_obj,
labels,
threshold,
format=args.format,
yogeshtewari marked this conversation as resolved.
Show resolved Hide resolved
result_handler_config=result_handler_config,
filter_config=filter_config,
verbose=args.verbose,
Expand Down
7 changes: 7 additions & 0 deletions data_validation/cli_tools.py
Original file line number Diff line number Diff line change
Expand Up @@ -291,6 +291,13 @@ def _configure_run_parser(subparsers):
"-filters",
help="Filters in the format source_filter:target_filter",
)
run_parser.add_argument(
"--format",
"-fmt",
default="table",
help="Set the format for printing command output, Supported formats are (text, csv, json, table). It defaults "
"to table",
)


def _configure_connection_parser(subparsers):
Expand Down
5 changes: 3 additions & 2 deletions data_validation/config_manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@


class ConfigManager(object):

_config: dict = None
source_client = None
target_client = None
Expand Down Expand Up @@ -238,7 +237,7 @@ def get_yaml_validation_block(self):
def get_result_handler(self):
"""Return ResultHandler instance from supplied config."""
if not self.result_handler_config:
return TextResultHandler()
return TextResultHandler(self._config[consts.CONFIG_FORMAT])

result_type = self.result_handler_config[consts.CONFIG_TYPE]
if result_type == "BigQuery":
Expand Down Expand Up @@ -269,6 +268,7 @@ def build_config_manager(
table_obj,
labels,
threshold,
format,
result_handler_config=None,
filter_config=None,
verbose=False,
Expand All @@ -287,6 +287,7 @@ def build_config_manager(
),
consts.CONFIG_LABELS: labels,
consts.CONFIG_THRESHOLD: threshold,
consts.CONFIG_FORMAT: format,
consts.CONFIG_RESULT_HANDLER: result_handler_config,
consts.CONFIG_FILTERS: filter_config,
}
Expand Down
1 change: 1 addition & 0 deletions data_validation/consts.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@
CONFIG_TARGET_COLUMN = "target_column"
CONFIG_THRESHOLD = "threshold"
CONFIG_CAST = "cast"
CONFIG_FORMAT = "format"
CONFIG_LIMIT = "limit"
CONFIG_FILTERS = "filters"
CONFIG_FILTER_SOURCE = "source"
Expand Down
27 changes: 25 additions & 2 deletions data_validation/result_handlers/text.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,30 @@


class TextResultHandler(object):
def execute(self, config, result_df):
print(result_df.to_string(index=False))
def __init__(self, format):
self.format = format

def print_formatted_(self, result_df):
"""
Utility for printing formatted results
:param result_df
"""
if self.format == "text":
print(result_df.to_string(index=False))
elif self.format == "csv":
print(result_df.to_csv(index=False))
elif self.format == "json":
print(result_df.to_json(orient="index"))
elif self.format == "table":
print(result_df.to_markdown(tablefmt="fancy_grid"))
else:
error_msg = (
f"format [{self.format}] not supported, results printed in default(table) mode. "
f"Supported formats are [text, csv, json, table]"
)
print(result_df.to_markdown(tablefmt="fancy_grid"))
raise ValueError(error_msg)

def execute(self, config, result_df):
self.print_formatted_(result_df)
return result_df
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@
"google-cloud-spanner==3.1.0",
"setuptools>=34.0.0",
"jellyfish==0.8.2",
"tabulate==0.8.9",
]

extras_require = {
Expand Down
5 changes: 4 additions & 1 deletion tests/system/data_sources/test_bigquery.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,7 @@
consts.CONFIG_FIELD_ALIAS: "min_birth_year",
},
],
consts.CONFIG_FORMAT: "table",
}

CONFIG_GROUPED_COUNT_VALID = {
Expand Down Expand Up @@ -94,6 +95,7 @@
consts.CONFIG_CAST: "date",
},
],
consts.CONFIG_FORMAT: "table",
}

# TODO: The definition for this table is stored in: ./tests/resources/
Expand Down Expand Up @@ -127,6 +129,7 @@
},
],
consts.CONFIG_GROUPED_COLUMNS: [],
consts.CONFIG_FORMAT: "table",
}

BQ_CONN_NAME = "bq-integration-test"
Expand Down Expand Up @@ -246,7 +249,7 @@ def test_cli_store_yaml_then_run():
# The number of lines is not significant, except that it represents
# the exact file expected to be created. Any change to this value
# is likely to be a breaking change and must be assessed.
assert len(yaml_file.readlines()) == 32
assert len(yaml_file.readlines()) == 33

# Run generated config
run_config_args = parser.parse_args(CLI_RUN_CONFIG_ARGS)
Expand Down
1 change: 1 addition & 0 deletions tests/system/data_sources/test_mysql.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@
consts.CONFIG_FIELD_ALIAS: "count",
},
],
consts.CONFIG_FORMAT: "table",
}


Expand Down
1 change: 1 addition & 0 deletions tests/system/data_sources/test_postgres.py
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,7 @@ def test_postgres_count():
consts.CONFIG_FIELD_ALIAS: "count",
},
],
consts.CONFIG_FORMAT: "table",
}

data_validator = data_validation.DataValidation(config_count_valid, verbose=False,)
Expand Down
2 changes: 2 additions & 0 deletions tests/system/data_sources/test_spanner.py
Original file line number Diff line number Diff line change
Expand Up @@ -112,6 +112,7 @@ def count_config(spanner_connection_config, database_id):
consts.CONFIG_FIELD_ALIAS: "min_int_col",
},
],
consts.CONFIG_FORMAT: "table",
}


Expand Down Expand Up @@ -148,6 +149,7 @@ def grouped_config(spanner_connection_config, database_id):
consts.CONFIG_CAST: "date",
},
],
consts.CONFIG_FORMAT: "table",
}


Expand Down
1 change: 1 addition & 0 deletions tests/system/data_sources/test_sql_server.py
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,7 @@ def test_sql_server_count():
consts.CONFIG_FIELD_ALIAS: "count",
},
],
consts.CONFIG_FORMAT: "table",
}

data_validator = data_validation.DataValidation(config_count_valid, verbose=False,)
Expand Down
1 change: 1 addition & 0 deletions tests/system/data_sources/test_teradata.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@
"schema_name": "Sys_Calendar",
"table_name": "CALENDAR",
"partition_column": "year_of_calendar",
"format": "table",
}


Expand Down
2 changes: 1 addition & 1 deletion tests/unit/result_handlers/test_text.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ def test_import(module_under_test):
def test_basic_result_handler(module_under_test):
"""Test basic handler executes """
result_df = DataFrame(SAMPLE_RESULT_DATA)
result_handler = module_under_test.TextResultHandler()
result_handler = module_under_test.TextResultHandler(format="table")
yogeshtewari marked this conversation as resolved.
Show resolved Hide resolved

handler_output = result_handler.execute(SAMPLE_CONFIG, result_df)
assert handler_output["count"].sum() == result_df["count"].sum()
4 changes: 4 additions & 0 deletions tests/unit/test_data_validation.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,7 @@
],
consts.CONFIG_THRESHOLD: 0.0,
consts.CONFIG_RESULT_HANDLER: None,
consts.CONFIG_FORMAT: "table",
}

SAMPLE_THRESHOLD_CONFIG = {
Expand Down Expand Up @@ -97,6 +98,7 @@
],
consts.CONFIG_THRESHOLD: 150.0,
consts.CONFIG_RESULT_HANDLER: None,
consts.CONFIG_FORMAT: "table",
}

SAMPLE_ROW_CONFIG = {
Expand Down Expand Up @@ -136,6 +138,7 @@
},
],
consts.CONFIG_RESULT_HANDLER: None,
consts.CONFIG_FORMAT: "table",
}

SAMPLE_ROW_CALC_CONFIG = {
Expand Down Expand Up @@ -223,6 +226,7 @@
},
],
consts.CONFIG_RESULT_HANDLER: None,
consts.CONFIG_FORMAT: "table",
}


Expand Down
1 change: 1 addition & 0 deletions tests/unit/test_schema_validation.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@
consts.CONFIG_AGGREGATES: [],
consts.CONFIG_THRESHOLD: 0.0,
consts.CONFIG_RESULT_HANDLER: None,
consts.CONFIG_FORMAT: "table",
}

STRING_CONSTANT = "constant"
Expand Down