dataops-testgen 2.2.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- dataops_testgen-2.2.0.dist-info/LICENSE +203 -0
- dataops_testgen-2.2.0.dist-info/METADATA +287 -0
- dataops_testgen-2.2.0.dist-info/NOTICE +5 -0
- dataops_testgen-2.2.0.dist-info/RECORD +270 -0
- dataops_testgen-2.2.0.dist-info/WHEEL +5 -0
- dataops_testgen-2.2.0.dist-info/entry_points.txt +2 -0
- dataops_testgen-2.2.0.dist-info/top_level.txt +1 -0
- testgen/__init__.py +0 -0
- testgen/__main__.py +770 -0
- testgen/commands/__init__.py +0 -0
- testgen/commands/queries/__init__.py +0 -0
- testgen/commands/queries/execute_cat_tests_query.py +95 -0
- testgen/commands/queries/execute_tests_query.py +160 -0
- testgen/commands/queries/generate_tests_query.py +94 -0
- testgen/commands/queries/profiling_query.py +366 -0
- testgen/commands/queries/test_parameter_validation_query.py +88 -0
- testgen/commands/run_execute_cat_tests.py +162 -0
- testgen/commands/run_execute_tests.py +168 -0
- testgen/commands/run_generate_tests.py +107 -0
- testgen/commands/run_get_entities.py +122 -0
- testgen/commands/run_launch_db_config.py +84 -0
- testgen/commands/run_observability_exporter.py +330 -0
- testgen/commands/run_profiling_bridge.py +495 -0
- testgen/commands/run_quick_start.py +168 -0
- testgen/commands/run_setup_profiling_tools.py +96 -0
- testgen/commands/run_test_definition.py +146 -0
- testgen/commands/run_test_parameter_validation.py +135 -0
- testgen/commands/run_upgrade_db_config.py +156 -0
- testgen/common/__init__.py +8 -0
- testgen/common/clean_sql.py +53 -0
- testgen/common/credentials.py +25 -0
- testgen/common/database/__init__.py +0 -0
- testgen/common/database/database_service.py +629 -0
- testgen/common/database/flavor/__init__.py +0 -0
- testgen/common/database/flavor/flavor_service.py +75 -0
- testgen/common/database/flavor/mssql_flavor_service.py +34 -0
- testgen/common/database/flavor/postgresql_flavor_service.py +5 -0
- testgen/common/database/flavor/redshift_flavor_service.py +22 -0
- testgen/common/database/flavor/snowflake_flavor_service.py +69 -0
- testgen/common/database/flavor/trino_flavor_service.py +21 -0
- testgen/common/date_service.py +68 -0
- testgen/common/display_service.py +85 -0
- testgen/common/docker_service.py +76 -0
- testgen/common/encrypt.py +55 -0
- testgen/common/get_pipeline_parms.py +57 -0
- testgen/common/logs.py +79 -0
- testgen/common/process_service.py +62 -0
- testgen/common/read_file.py +69 -0
- testgen/settings.py +440 -0
- testgen/template/dbsetup/010_create_base_schema.sql +2 -0
- testgen/template/dbsetup/020_create_standard_functions_sprocs.sql +179 -0
- testgen/template/dbsetup/030_initialize_new_schema_structure.sql +735 -0
- testgen/template/dbsetup/040_populate_new_schema_project.sql +59 -0
- testgen/template/dbsetup/050_populate_new_schema_metadata.sql +1517 -0
- testgen/template/dbsetup/060_create_standard_views.sql +248 -0
- testgen/template/dbsetup/070_create_default_users.sql +17 -0
- testgen/template/dbsetup/075_grant_role_rights.sql +43 -0
- testgen/template/dbsetup/080_set_current_revision.sql +5 -0
- testgen/template/dbupgrade/0100_incremental_upgrade.sql +5 -0
- testgen/template/dbupgrade/0101_incremental_upgrade.sql +15 -0
- testgen/template/dbupgrade/0102_incremental_upgrade.sql +4 -0
- testgen/template/dbupgrade/0103_incremental_upgrade.sql +22 -0
- testgen/template/dbupgrade/0104_incremental_upgrade.sql +44 -0
- testgen/template/dbupgrade/0105_incremental_upgrade.sql +1 -0
- testgen/template/dbupgrade/0106_incremental_upgrade.sql +5 -0
- testgen/template/dbupgrade/0107_incremental_upgrade.sql +3 -0
- testgen/template/dbupgrade_helpers/get_tg_revision.sql +2 -0
- testgen/template/exec_cat_tests/ex_cat_build_agg_table_tests.sql +116 -0
- testgen/template/exec_cat_tests/ex_cat_get_distinct_tables.sql +11 -0
- testgen/template/exec_cat_tests/ex_cat_results_parse.sql +69 -0
- testgen/template/exec_cat_tests/ex_cat_retrieve_agg_test_parms.sql +6 -0
- testgen/template/exec_cat_tests/ex_cat_test_query.sql +8 -0
- testgen/template/execution/ex_finalize_test_run_results.sql +37 -0
- testgen/template/execution/ex_get_tests_non_cat.sql +47 -0
- testgen/template/execution/ex_update_test_record_in_testrun_table.sql +27 -0
- testgen/template/execution/ex_write_test_record_to_testrun_table.sql +6 -0
- testgen/template/flavors/generic/exec_query_tests/ex_aggregate_match_no_drops_generic.sql +48 -0
- testgen/template/flavors/generic/exec_query_tests/ex_aggregate_match_num_incr_generic.sql +34 -0
- testgen/template/flavors/generic/exec_query_tests/ex_aggregate_match_percent_above_generic.sql +49 -0
- testgen/template/flavors/generic/exec_query_tests/ex_aggregate_match_percent_within_generic.sql +49 -0
- testgen/template/flavors/generic/exec_query_tests/ex_aggregate_match_same_generic.sql +49 -0
- testgen/template/flavors/generic/exec_query_tests/ex_custom_query_generic.sql +39 -0
- testgen/template/flavors/generic/exec_query_tests/ex_data_match_2way_generic.sql +58 -0
- testgen/template/flavors/generic/exec_query_tests/ex_data_match_generic.sql +44 -0
- testgen/template/flavors/generic/exec_query_tests/ex_prior_match_generic.sql +37 -0
- testgen/template/flavors/generic/exec_query_tests/ex_relative_entropy_generic.sql +53 -0
- testgen/template/flavors/generic/exec_query_tests/ex_window_match_no_drops_generic.sql +46 -0
- testgen/template/flavors/generic/exec_query_tests/ex_window_match_same_generic.sql +59 -0
- testgen/template/flavors/generic/profiling/contingency_counts.sql +3 -0
- testgen/template/flavors/generic/validate_tests/ex_get_project_column_list_generic.sql +3 -0
- testgen/template/flavors/mssql/exec_query_tests/ex_relative_entropy_mssql.sql +53 -0
- testgen/template/flavors/mssql/profiling/project_ddf_query_mssql.sql +35 -0
- testgen/template/flavors/mssql/profiling/project_profiling_query_mssql.yaml +246 -0
- testgen/template/flavors/mssql/profiling/project_secondary_profiling_query_mssql.sql +36 -0
- testgen/template/flavors/mssql/setup_profiling_tools/00_drop_existing_functions_mssql.sql +8 -0
- testgen/template/flavors/mssql/setup_profiling_tools/01_create_functions_mssql.sql +12 -0
- testgen/template/flavors/mssql/setup_profiling_tools/02_create_functions_mssql.sql +54 -0
- testgen/template/flavors/mssql/setup_profiling_tools/create_qc_schema_mssql.sql +4 -0
- testgen/template/flavors/mssql/setup_profiling_tools/grant_execute_privileges_mssql.sql +1 -0
- testgen/template/flavors/postgresql/exec_query_tests/ex_window_match_no_drops_postgresql.sql +46 -0
- testgen/template/flavors/postgresql/exec_query_tests/ex_window_match_same_postgresql.sql +59 -0
- testgen/template/flavors/postgresql/profiling/project_ddf_query_postgresql.sql +42 -0
- testgen/template/flavors/postgresql/profiling/project_profiling_query_postgresql.yaml +225 -0
- testgen/template/flavors/postgresql/profiling/project_secondary_profiling_query_postgresql.sql +28 -0
- testgen/template/flavors/postgresql/setup_profiling_tools/create_functions_postgresql.sql +157 -0
- testgen/template/flavors/postgresql/setup_profiling_tools/create_qc_schema_postgresql.sql +1 -0
- testgen/template/flavors/postgresql/setup_profiling_tools/grant_execute_privileges_postgresql.sql +2 -0
- testgen/template/flavors/redshift/profiling/project_ddf_query_redshift.sql +38 -0
- testgen/template/flavors/redshift/profiling/project_profiling_query_redshift.yaml +221 -0
- testgen/template/flavors/redshift/profiling/project_secondary_profiling_query_redshift.sql +29 -0
- testgen/template/flavors/redshift/setup_profiling_tools/create_functions_redshift.sql +115 -0
- testgen/template/flavors/redshift/setup_profiling_tools/create_qc_schema_redshift.sql +1 -0
- testgen/template/flavors/redshift/setup_profiling_tools/grant_execute_privileges_redshift.sql +2 -0
- testgen/template/flavors/snowflake/profiling/project_ddf_query_snowflake.sql +38 -0
- testgen/template/flavors/snowflake/profiling/project_profiling_query_snowflake.yaml +220 -0
- testgen/template/flavors/snowflake/profiling/project_secondary_profiling_query_snowflake.sql +29 -0
- testgen/template/flavors/snowflake/setup_profiling_tools/create_functions_snowflake.sql +69 -0
- testgen/template/flavors/snowflake/setup_profiling_tools/create_qc_schema_snowflake.sql +1 -0
- testgen/template/flavors/snowflake/setup_profiling_tools/grant_execute_privileges_snowflake.sql +6 -0
- testgen/template/flavors/trino/profiling/project_profiling_query_trino.yaml +219 -0
- testgen/template/flavors/trino/setup_profiling_tools/create_functions_trino.sql +92 -0
- testgen/template/flavors/trino/setup_profiling_tools/create_qc_schema_trino.sql +1 -0
- testgen/template/gen_funny_cat_tests/gen_test_constant.sql +104 -0
- testgen/template/gen_funny_cat_tests/gen_test_distinct_value_ct.sql +98 -0
- testgen/template/gen_funny_cat_tests/gen_test_row_ct.sql +57 -0
- testgen/template/gen_funny_cat_tests/gen_test_row_ct_pct.sql +59 -0
- testgen/template/generation/gen_delete_old_tests.sql +5 -0
- testgen/template/generation/gen_insert_test_suite.sql +5 -0
- testgen/template/generation/gen_retrieve_or_insert_test_suite.sql +58 -0
- testgen/template/generation/gen_standard_test_type_list.sql +13 -0
- testgen/template/generation/gen_standard_tests.sql +48 -0
- testgen/template/get_entities/get_connection.sql +21 -0
- testgen/template/get_entities/get_connections_list.sql +9 -0
- testgen/template/get_entities/get_latest.sql +4 -0
- testgen/template/get_entities/get_profile.sql +12 -0
- testgen/template/get_entities/get_profile_info.sql +17 -0
- testgen/template/get_entities/get_profile_list.sql +17 -0
- testgen/template/get_entities/get_profile_screen.sql +275 -0
- testgen/template/get_entities/get_project_list.sql +6 -0
- testgen/template/get_entities/get_table_group_list.sql +10 -0
- testgen/template/get_entities/get_test_generation_list.sql +18 -0
- testgen/template/get_entities/get_test_info.sql +41 -0
- testgen/template/get_entities/get_test_results_for_run_cli.sql +16 -0
- testgen/template/get_entities/get_test_run_list.sql +24 -0
- testgen/template/get_entities/get_test_suite.sql +13 -0
- testgen/template/get_entities/get_test_suite_list.sql +18 -0
- testgen/template/get_entities/list_test_types.sql +4 -0
- testgen/template/observability/get_event_data.sql +23 -0
- testgen/template/observability/get_test_results.sql +41 -0
- testgen/template/observability/update_test_results_exported_to_observability.sql +12 -0
- testgen/template/parms/parms_profiling.sql +34 -0
- testgen/template/parms/parms_test_execution.sql +13 -0
- testgen/template/parms/parms_test_gen.sql +23 -0
- testgen/template/profiling/contingency_columns.sql +7 -0
- testgen/template/profiling/datatype_suggestions.sql +56 -0
- testgen/template/profiling/functional_datatype.sql +523 -0
- testgen/template/profiling/functional_tabletype_stage.sql +48 -0
- testgen/template/profiling/functional_tabletype_update.sql +8 -0
- testgen/template/profiling/pii_flag.sql +133 -0
- testgen/template/profiling/profile_anomalies_screen_column.sql +22 -0
- testgen/template/profiling/profile_anomalies_screen_multi_column.sql +58 -0
- testgen/template/profiling/profile_anomalies_screen_table.sql +22 -0
- testgen/template/profiling/profile_anomalies_screen_table_dates.sql +30 -0
- testgen/template/profiling/profile_anomalies_screen_variants.sql +40 -0
- testgen/template/profiling/profile_anomaly_types_get.sql +3 -0
- testgen/template/profiling/project_get_table_sample_count.sql +22 -0
- testgen/template/profiling/project_profile_run_record_insert.sql +8 -0
- testgen/template/profiling/project_profile_run_record_update.sql +5 -0
- testgen/template/profiling/project_profile_run_record_update_status.sql +5 -0
- testgen/template/profiling/project_update_profile_results_to_estimates.sql +32 -0
- testgen/template/profiling/refresh_anomalies.sql +33 -0
- testgen/template/profiling/refresh_data_chars_from_profiling.sql +156 -0
- testgen/template/profiling/secondary_profiling_columns.sql +12 -0
- testgen/template/profiling/secondary_profiling_delete.sql +4 -0
- testgen/template/profiling/secondary_profiling_update.sql +18 -0
- testgen/template/quick_start/populate_target_data.sql +1077 -0
- testgen/template/quick_start/recreate_target_data_schema.sql +167 -0
- testgen/template/quick_start/update_target_data.sql +100 -0
- testgen/template/updates/create_tmp_test_definition.sql +19 -0
- testgen/template/updates/get_test_def_parms.sql +38 -0
- testgen/template/updates/populate_stg_test_definitions.sql +184 -0
- testgen/template/validate_tests/ex_disable_tests_test_definitions.sql +5 -0
- testgen/template/validate_tests/ex_flag_tests_test_definitions.sql +64 -0
- testgen/template/validate_tests/ex_get_project_column_list_generic.sql +3 -0
- testgen/template/validate_tests/ex_get_test_column_list_tg.sql +65 -0
- testgen/template/validate_tests/ex_write_test_val_errors.sql +22 -0
- testgen/ui/__init__.py +0 -0
- testgen/ui/app.py +98 -0
- testgen/ui/assets/dk_logo.svg +46 -0
- testgen/ui/assets/question_mark.png +0 -0
- testgen/ui/assets/scripts.js +68 -0
- testgen/ui/assets/style.css +140 -0
- testgen/ui/bootstrap.py +109 -0
- testgen/ui/components/__init__.py +0 -0
- testgen/ui/components/frontend/css/KFOlCnqEu92Fr1MmEU9fBBc4.woff2 +0 -0
- testgen/ui/components/frontend/css/KFOlCnqEu92Fr1MmEU9fChc4EsA.woff2 +0 -0
- testgen/ui/components/frontend/css/KFOmCnqEu92Fr1Mu4mxK.woff2 +0 -0
- testgen/ui/components/frontend/css/KFOmCnqEu92Fr1Mu7GxKOzY.woff2 +0 -0
- testgen/ui/components/frontend/css/material-symbols-rounded.css +24 -0
- testgen/ui/components/frontend/css/material-symbols-rounded.woff2 +0 -0
- testgen/ui/components/frontend/css/roboto-font-faces.css +35 -0
- testgen/ui/components/frontend/css/shared.css +36 -0
- testgen/ui/components/frontend/img/dk_logo.svg +46 -0
- testgen/ui/components/frontend/index.html +17 -0
- testgen/ui/components/frontend/js/components/breadcrumbs.js +86 -0
- testgen/ui/components/frontend/js/components/button.js +66 -0
- testgen/ui/components/frontend/js/components/location.js +62 -0
- testgen/ui/components/frontend/js/components/select.js +75 -0
- testgen/ui/components/frontend/js/components/sidebar.js +358 -0
- testgen/ui/components/frontend/js/main.js +99 -0
- testgen/ui/components/frontend/js/streamlit.js +19 -0
- testgen/ui/components/frontend/js/van.min.js +1 -0
- testgen/ui/components/utils/__init__.py +0 -0
- testgen/ui/components/utils/callbacks.py +51 -0
- testgen/ui/components/utils/component.py +13 -0
- testgen/ui/components/widgets/__init__.py +6 -0
- testgen/ui/components/widgets/breadcrumbs.py +32 -0
- testgen/ui/components/widgets/location.py +65 -0
- testgen/ui/components/widgets/modal.py +97 -0
- testgen/ui/components/widgets/sidebar.py +69 -0
- testgen/ui/navigation/__init__.py +0 -0
- testgen/ui/navigation/menu.py +42 -0
- testgen/ui/navigation/page.py +20 -0
- testgen/ui/navigation/router.py +63 -0
- testgen/ui/queries/__init__.py +0 -0
- testgen/ui/queries/authentication_queries.py +47 -0
- testgen/ui/queries/connection_queries.py +121 -0
- testgen/ui/queries/profiling_queries.py +148 -0
- testgen/ui/queries/project_queries.py +9 -0
- testgen/ui/queries/table_group_queries.py +186 -0
- testgen/ui/queries/test_definition_queries.py +270 -0
- testgen/ui/queries/test_run_queries.py +32 -0
- testgen/ui/queries/test_suite_queries.py +145 -0
- testgen/ui/scripts/__init__.py +0 -0
- testgen/ui/scripts/patch_streamlit.py +111 -0
- testgen/ui/services/__init__.py +0 -0
- testgen/ui/services/authentication_service.py +119 -0
- testgen/ui/services/connection_service.py +220 -0
- testgen/ui/services/database_service.py +282 -0
- testgen/ui/services/form_service.py +1008 -0
- testgen/ui/services/javascript_service.py +44 -0
- testgen/ui/services/query_service.py +316 -0
- testgen/ui/services/string_service.py +12 -0
- testgen/ui/services/table_group_service.py +130 -0
- testgen/ui/services/test_definition_service.py +117 -0
- testgen/ui/services/test_run_service.py +13 -0
- testgen/ui/services/test_suite_service.py +76 -0
- testgen/ui/services/toolbar_service.py +77 -0
- testgen/ui/session.py +46 -0
- testgen/ui/views/__init__.py +0 -0
- testgen/ui/views/app_log_modal.py +92 -0
- testgen/ui/views/connections.py +72 -0
- testgen/ui/views/connections_base.py +367 -0
- testgen/ui/views/login.py +40 -0
- testgen/ui/views/not_found.py +16 -0
- testgen/ui/views/overview.py +34 -0
- testgen/ui/views/profiling_anomalies.py +501 -0
- testgen/ui/views/profiling_details.py +335 -0
- testgen/ui/views/profiling_modal.py +40 -0
- testgen/ui/views/profiling_results.py +206 -0
- testgen/ui/views/profiling_summary.py +177 -0
- testgen/ui/views/project_settings.py +74 -0
- testgen/ui/views/table_groups.py +530 -0
- testgen/ui/views/test_definitions.py +1020 -0
- testgen/ui/views/test_results.py +908 -0
- testgen/ui/views/test_runs.py +195 -0
- testgen/ui/views/test_suites.py +545 -0
- testgen/utils/__init__.py +0 -0
- testgen/utils/plugins.py +17 -0
- testgen/utils/singleton.py +14 -0
|
@@ -0,0 +1,270 @@
|
|
|
1
|
+
testgen/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
2
|
+
testgen/__main__.py,sha256=nfgvb0y5qJqhdvsTghm62fwtq8tr7RvRLTA6-LMukcE,27792
|
|
3
|
+
testgen/settings.py,sha256=23fLO-BTsXcjXdDbzUfqnSicjRM1LrViY_ZDp_JIuBI,12343
|
|
4
|
+
testgen/commands/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
5
|
+
testgen/commands/run_execute_cat_tests.py,sha256=IuJOHH57P_cUuR6S4_SdpLpqDgOD0Pufanl4r_6a77A,5931
|
|
6
|
+
testgen/commands/run_execute_tests.py,sha256=Vs05d3QbEC6_BOafPQGblPKGE9dVj7JrpkXY6ZgTLLY,6064
|
|
7
|
+
testgen/commands/run_generate_tests.py,sha256=S9Wg8jeegGP6P7iJMNW9jT1JBIdL0OzfSZF3LfEW1KQ,3999
|
|
8
|
+
testgen/commands/run_get_entities.py,sha256=-iIiJec_ZdTMSDK8lHcU3Qwryt4_p4bpwzyn1xoVm38,4759
|
|
9
|
+
testgen/commands/run_launch_db_config.py,sha256=iAvXiQvJNfgQDy5pSeGnz8e7q0bZrjE87hD12D5A-1E,3857
|
|
10
|
+
testgen/commands/run_observability_exporter.py,sha256=ffg066S1Tla6v1bXq_6AdYMHo8q2ZgzqAfjMRvINi_0,12001
|
|
11
|
+
testgen/commands/run_profiling_bridge.py,sha256=tuTfLsvgRMEQh1oDdcD2XzbotaEfdVE3UksPNbYtL_Y,21685
|
|
12
|
+
testgen/commands/run_quick_start.py,sha256=IRG3ZohvhcK5L1Wsh2QUFBcXUCblwCzsa-hkz4MIsgg,5551
|
|
13
|
+
testgen/commands/run_setup_profiling_tools.py,sha256=okyNnd7QLANGrvZuUJfawGpZM2RTwHwhDnei-CJb6TM,3283
|
|
14
|
+
testgen/commands/run_test_definition.py,sha256=cynx2WXXt8vV0Foqo6jIX8NHCi9Z0tH3AYUUNsPS8LA,5768
|
|
15
|
+
testgen/commands/run_test_parameter_validation.py,sha256=pSK49JWOs5kbZi3xdYqLu9mWSqlmgFuS0Wbf6-fge6A,6192
|
|
16
|
+
testgen/commands/run_upgrade_db_config.py,sha256=uBRlKQL5juSriG4L525x6gaKBNosFdQn_NMdllGai-w,5649
|
|
17
|
+
testgen/commands/queries/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
18
|
+
testgen/commands/queries/execute_cat_tests_query.py,sha256=7t983raO7u7-G5XpMip7cT7ZBGcYZEHBvk9CaB9BFiQ,4149
|
|
19
|
+
testgen/commands/queries/execute_tests_query.py,sha256=TvaJlr6CUd2UnNWtvV3zgHcKefBhV637qfRsLX_oN4E,7090
|
|
20
|
+
testgen/commands/queries/generate_tests_query.py,sha256=z6_SmKzhtfmBvzHTRCp8Myj5Xur7VO9MNxZf3E9acNE,3477
|
|
21
|
+
testgen/commands/queries/profiling_query.py,sha256=6v-uoAkuxy4k4ujtQlMcIN2nrMj3W8w6uJyIT8QyS-s,14566
|
|
22
|
+
testgen/commands/queries/test_parameter_validation_query.py,sha256=7XC6gNUWgOZQMvIdrBi7Ad0EQCLXDvCby34sSDSJ1WQ,3409
|
|
23
|
+
testgen/common/__init__.py,sha256=3U7LheQUlhkxRhXw2lw0tsH1b00x1lRa8NXtll6Adv0,210
|
|
24
|
+
testgen/common/clean_sql.py,sha256=c7BuB6ri1WVuN47jjTYt7fzmBwcYR_zpJBI-OW4LXik,1969
|
|
25
|
+
testgen/common/credentials.py,sha256=21rbEXhLFaqWF8ZV8tX0Unc358dBCQTOpy1ba9VbTxQ,415
|
|
26
|
+
testgen/common/date_service.py,sha256=I2tFmT82OvlF-wG6mQI-Ihn73zlFiI0GQvbdiAKAomQ,2359
|
|
27
|
+
testgen/common/display_service.py,sha256=5fE5Q7UuQ-l1oeI-m3nY0lhTf8U-fdvhGhRvi8Sj-K4,2482
|
|
28
|
+
testgen/common/docker_service.py,sha256=4KC1MDU7wiA66zYgRmuTsDwVw4ga9THUW1f6P3wMQ4o,2298
|
|
29
|
+
testgen/common/encrypt.py,sha256=zSP_zOw-8HPbqs-XIT4tC4tNaCue09pIImC6AbZoFFk,1600
|
|
30
|
+
testgen/common/get_pipeline_parms.py,sha256=Slh3RzxADEAz-6b-uhiHjFAYmfyuFx1leaer0dhEFT8,2148
|
|
31
|
+
testgen/common/logs.py,sha256=H03BIF_-71u7VeglJ8OQY0Gc8vF3pVtA1vr_xBQXkUk,2220
|
|
32
|
+
testgen/common/process_service.py,sha256=Kq2jiq9uIqBF5NMKlnwvUIBHp0gWwaKpW0uMBGGOojg,2121
|
|
33
|
+
testgen/common/read_file.py,sha256=6pwNUEIgGpbaqQf87uLEcVVD1l4l89SNbhYN6u7scXg,2527
|
|
34
|
+
testgen/common/database/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
35
|
+
testgen/common/database/database_service.py,sha256=tYiono_Mpsc5C6s0q73Lq1Rn3GCBkRrwJ6vHn9JxxJU,21765
|
|
36
|
+
testgen/common/database/flavor/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
37
|
+
testgen/common/database/flavor/flavor_service.py,sha256=olco5dHeYz4WpmoLlgkb69GoMecYuggz8Zj7mPZjvY4,2685
|
|
38
|
+
testgen/common/database/flavor/mssql_flavor_service.py,sha256=4GYHJCFwNE8LofYHJRVBOx6cdRmGwvXns4DVWyRIeGo,1022
|
|
39
|
+
testgen/common/database/flavor/postgresql_flavor_service.py,sha256=c_gJu0V-Ew9Th3U9kIW4qfaa5LIy8KkfJcqSVYB5QBc,154
|
|
40
|
+
testgen/common/database/flavor/redshift_flavor_service.py,sha256=amXbXXod_llLAXRv2079QceYf6iGcfrbe12t4DhSbi4,879
|
|
41
|
+
testgen/common/database/flavor/snowflake_flavor_service.py,sha256=Al__2tveQDmq8RhdNHn80-LYS9e3mAcngLbX5d8L8R8,2802
|
|
42
|
+
testgen/common/database/flavor/trino_flavor_service.py,sha256=WSIIFvv1bp46YejJrxPr9ZANmu3247PPyTiGAGub4KA,844
|
|
43
|
+
testgen/template/dbsetup/010_create_base_schema.sql,sha256=RKI-gSGih7kecwE1A_b3kENI-MupH_FB1yIjgpfOPL4,68
|
|
44
|
+
testgen/template/dbsetup/020_create_standard_functions_sprocs.sql,sha256=pAfwx8dOxC-C6J5Yt_81Y_qVqy0s2orTzgIzQkkNbX0,7252
|
|
45
|
+
testgen/template/dbsetup/030_initialize_new_schema_structure.sql,sha256=bnd0B1nt0nuZIFfheVs5uMUWWW-HUaionMYjp3xFkz0,24121
|
|
46
|
+
testgen/template/dbsetup/040_populate_new_schema_project.sql,sha256=9a3yGpzAVIyOOI5LXq2KVmHYCeuBn7ucXUVB4FlW8KM,2934
|
|
47
|
+
testgen/template/dbsetup/050_populate_new_schema_metadata.sql,sha256=dQuBnOmgCjpGiSS6rmE5LumWWF3N2rurkYr58RJtcu0,266474
|
|
48
|
+
testgen/template/dbsetup/060_create_standard_views.sql,sha256=uiLA0xlo5YBH-NJQvevr9-LxZYyw_zA8nw7Ps_dQZJk,8340
|
|
49
|
+
testgen/template/dbsetup/070_create_default_users.sql,sha256=GyibHIpafF8W_uRkSFM_dtgUQ5waPolc29LClDHour4,715
|
|
50
|
+
testgen/template/dbsetup/075_grant_role_rights.sql,sha256=hd5BtKZjF2AHo9h5WCTVVLdSwax7bpKWQ8UkMlyomR8,1858
|
|
51
|
+
testgen/template/dbsetup/080_set_current_revision.sql,sha256=aGmAJqmxad1GuL53gTZZEtqN9rCHEyw5D2VRQQ-uV8A,120
|
|
52
|
+
testgen/template/dbupgrade/0100_incremental_upgrade.sql,sha256=8eL-a_WJBkUxm7sBAYoTcUkcXh4Y3NMVX80AiqbfqBc,152
|
|
53
|
+
testgen/template/dbupgrade/0101_incremental_upgrade.sql,sha256=NmQPf5e4zPYpm7VRWGZdcws6YxT80ccXOhkrzdIyUYs,489
|
|
54
|
+
testgen/template/dbupgrade/0102_incremental_upgrade.sql,sha256=fvjn1iRy-zEHKnvE2Cqjxb1BWfjQBsTQF4HwwEm7Epw,174
|
|
55
|
+
testgen/template/dbupgrade/0103_incremental_upgrade.sql,sha256=fXv10yKENB3F7bEe7_Ep6xiZ2mB5R17VEvemlx-yZI0,572
|
|
56
|
+
testgen/template/dbupgrade/0104_incremental_upgrade.sql,sha256=83gCieSukbZl8QdjpTPzV1G_Mbzvq7mfIeAjetZhxF8,1338
|
|
57
|
+
testgen/template/dbupgrade/0105_incremental_upgrade.sql,sha256=F9tP02ntuSRLn5HZru0UXD0ErYum6V0GJH8HpjUn0Ro,9
|
|
58
|
+
testgen/template/dbupgrade/0106_incremental_upgrade.sql,sha256=-L-L4LS-t9mJoGkEGZ8OOj-_-nzUEjMfGnVEEsIkRdQ,227
|
|
59
|
+
testgen/template/dbupgrade/0107_incremental_upgrade.sql,sha256=Tepa26yy7CSciFRcImBpijmF1dMPQiY3JjT-xuK2sgs,96
|
|
60
|
+
testgen/template/dbupgrade_helpers/get_tg_revision.sql,sha256=McVfnBy_pbGT11nFRoBQLBI-At6CQesqom0-hFy1T7M,50
|
|
61
|
+
testgen/template/exec_cat_tests/ex_cat_build_agg_table_tests.sql,sha256=m1ZB1XvTHD7YyR1jtFOOfBXmFfF8H7hoppWz1eOyPzI,6805
|
|
62
|
+
testgen/template/exec_cat_tests/ex_cat_get_distinct_tables.sql,sha256=nZM3B9OAqrC10Wn2E1cDmWFYC2_5cUOSeaCJ9BEdK-A,376
|
|
63
|
+
testgen/template/exec_cat_tests/ex_cat_results_parse.sql,sha256=Yl6mPeW1TXyZ0nVWo_m-au_UYA-2WfX3jmP9xz4GUwM,4294
|
|
64
|
+
testgen/template/exec_cat_tests/ex_cat_retrieve_agg_test_parms.sql,sha256=iC15r0u9WozpdAMNcIMYyFEHLcfL5psdSy-PNTcD14Y,334
|
|
65
|
+
testgen/template/exec_cat_tests/ex_cat_test_query.sql,sha256=cxF3XOxilQWquQd8t-egtrOnndaqDaS9-74CFE6K3ko,311
|
|
66
|
+
testgen/template/execution/ex_finalize_test_run_results.sql,sha256=uFpV2OdlMMk_DXsfvdZ5WPsBZ5uA37mAI2lblLczItg,2049
|
|
67
|
+
testgen/template/execution/ex_get_tests_non_cat.sql,sha256=lCek4B-l2HT605_57akxKGKQV537X1GC5chPfV4TVDQ,2617
|
|
68
|
+
testgen/template/execution/ex_update_test_record_in_testrun_table.sql,sha256=aLl01bgvK74OIcr3JW9mIzCd9xQMDjx-7NAnHCFmaBk,1247
|
|
69
|
+
testgen/template/execution/ex_write_test_record_to_testrun_table.sql,sha256=3S1as9ltLVAaEeISwCcRcNyr0RgYQy3t6F_PCV1JCQw,279
|
|
70
|
+
testgen/template/flavors/generic/exec_query_tests/ex_aggregate_match_no_drops_generic.sql,sha256=3KKbI7xFmB5QDqsabnvkVZniQZEo038_l0TPSVTdPI0,2211
|
|
71
|
+
testgen/template/flavors/generic/exec_query_tests/ex_aggregate_match_num_incr_generic.sql,sha256=kZDEFo3m6oecv1ND2kJBOu9WU-8zp69hBQ0vBw_Ylpo,1719
|
|
72
|
+
testgen/template/flavors/generic/exec_query_tests/ex_aggregate_match_percent_above_generic.sql,sha256=9BWOIJWutEkzqXtz11abufMKB2a7l-fZX_hjAGXZ-6Y,2304
|
|
73
|
+
testgen/template/flavors/generic/exec_query_tests/ex_aggregate_match_percent_within_generic.sql,sha256=Ly9dNNOPji3jjjLIOvg6nQoHaLg03qSVoIdEKFEb7vo,2342
|
|
74
|
+
testgen/template/flavors/generic/exec_query_tests/ex_aggregate_match_same_generic.sql,sha256=wa7oOR2-5exHE8KJ2zmmxrbc9J9cxk8Oo1W5-4apZd8,2175
|
|
75
|
+
testgen/template/flavors/generic/exec_query_tests/ex_custom_query_generic.sql,sha256=BXHzIRH8UAtmFWHSInwz1X_-JJvNthtYaleTY-tT_d8,1596
|
|
76
|
+
testgen/template/flavors/generic/exec_query_tests/ex_data_match_2way_generic.sql,sha256=HSX-SaktjPlGAj22v7yAB9aLv23KPJ46sjMMTNtkass,2260
|
|
77
|
+
testgen/template/flavors/generic/exec_query_tests/ex_data_match_generic.sql,sha256=qMw0Gj2H-x9nY4Z1ydHqB9DpnJ1UBoGMTyBPckViZoo,1795
|
|
78
|
+
testgen/template/flavors/generic/exec_query_tests/ex_prior_match_generic.sql,sha256=makYBaOJ3kgpQfCMDtVjC8tpXBIaIf-xIsE0YcjkUQc,1575
|
|
79
|
+
testgen/template/flavors/generic/exec_query_tests/ex_relative_entropy_generic.sql,sha256=WFnUwytcc0Xfed7Z1_vZoK09JGbuhVmCGjGViXCVEf4,2468
|
|
80
|
+
testgen/template/flavors/generic/exec_query_tests/ex_window_match_no_drops_generic.sql,sha256=Tjv1bXJdTUYTMVQv5gbq2_wk3i4ZFVsN1zLnV3yrH60,2112
|
|
81
|
+
testgen/template/flavors/generic/exec_query_tests/ex_window_match_same_generic.sql,sha256=V2nFknB98m4z0qm_mj3fkglO7-AwlSfoT093Wm6UIfM,2678
|
|
82
|
+
testgen/template/flavors/generic/profiling/contingency_counts.sql,sha256=x49pTvxXeUVh7qnr24n1dH_qr_vK77-yLnJHFJlFgHU,116
|
|
83
|
+
testgen/template/flavors/generic/validate_tests/ex_get_project_column_list_generic.sql,sha256=Ny5sgwDtNImYQAHd-EPQi-Fw4SjJSJc0aY5A-rQCNyU,170
|
|
84
|
+
testgen/template/flavors/mssql/exec_query_tests/ex_relative_entropy_mssql.sql,sha256=2qpLxbe43DajmS6IgMTObdt8Ekwr4_VIq075-WaYIg0,2504
|
|
85
|
+
testgen/template/flavors/mssql/profiling/project_ddf_query_mssql.sql,sha256=HJ1TaqKWoNsirOQT8b1ewgFckWOng8SD1_UdQX5IS1o,1592
|
|
86
|
+
testgen/template/flavors/mssql/profiling/project_profiling_query_mssql.yaml,sha256=69tLwsQ6opVHAqVu65qGYxHE-AOTPVUKL3HoDPHX0Mg,13539
|
|
87
|
+
testgen/template/flavors/mssql/profiling/project_secondary_profiling_query_mssql.sql,sha256=UdHBqgIcF7AMKD3i9tBkcw7p1f0x5LsXZR3aIl_f0ws,1599
|
|
88
|
+
testgen/template/flavors/mssql/setup_profiling_tools/00_drop_existing_functions_mssql.sql,sha256=PnKa_1FPAd1L6abLRvLYM86J7j1xRLtxr5oJvuyJv9g,292
|
|
89
|
+
testgen/template/flavors/mssql/setup_profiling_tools/01_create_functions_mssql.sql,sha256=50srZeBdsPFfHFdbfi4CtiG3wr--BPrVlTBbihwShmc,222
|
|
90
|
+
testgen/template/flavors/mssql/setup_profiling_tools/02_create_functions_mssql.sql,sha256=8AENwAN3rI_Y9JKVPhDJcie9VrzzHEfpjxztRsoHw14,1936
|
|
91
|
+
testgen/template/flavors/mssql/setup_profiling_tools/create_qc_schema_mssql.sql,sha256=1hkddwBO7j8VFDV3LlsuJtHh0uwRxOhU8S2yELU8Uog,126
|
|
92
|
+
testgen/template/flavors/mssql/setup_profiling_tools/grant_execute_privileges_mssql.sql,sha256=FQNXfj7UcL0d2fcRqsnESUhRHHRSf8CFiCHzApmkggw,56
|
|
93
|
+
testgen/template/flavors/postgresql/exec_query_tests/ex_window_match_no_drops_postgresql.sql,sha256=GVuKMva4KD_aKpQd8BStznxk9ZBirMyiMrLfM8NLmWg,2059
|
|
94
|
+
testgen/template/flavors/postgresql/exec_query_tests/ex_window_match_same_postgresql.sql,sha256=Kype2dpGzqrWrqMUgGWK2VS_0RxuU4ICrgcIMB_J-N8,2573
|
|
95
|
+
testgen/template/flavors/postgresql/profiling/project_ddf_query_postgresql.sql,sha256=Fhm3U0yAdqW0dTgHbFeY8nfZHwp3EcBj35pInw7JvEA,2096
|
|
96
|
+
testgen/template/flavors/postgresql/profiling/project_profiling_query_postgresql.yaml,sha256=LZtSGXFJ1XqkFjh2Q0uFEjfn_Db3SUGz4TuzFcegVtI,11318
|
|
97
|
+
testgen/template/flavors/postgresql/profiling/project_secondary_profiling_query_postgresql.sql,sha256=VmZbzD2xuEEgxNOVw89QyEIPhdP40MeRyVVZoPujHZs,1191
|
|
98
|
+
testgen/template/flavors/postgresql/setup_profiling_tools/create_functions_postgresql.sql,sha256=2SNs-3ndoEb2mbnmPMHTNQqipQXKS1hdC5_Jq3D3vow,8186
|
|
99
|
+
testgen/template/flavors/postgresql/setup_profiling_tools/create_qc_schema_postgresql.sql,sha256=BKVpowfzoVBK2jU8mQi6dKPAn_gr3y9VbyjxmQNLhGI,46
|
|
100
|
+
testgen/template/flavors/postgresql/setup_profiling_tools/grant_execute_privileges_postgresql.sql,sha256=yCnbCkJ4Z7hX9HT34KUjWnX_wZLs78Lh2vMD4S0aCb8,134
|
|
101
|
+
testgen/template/flavors/redshift/profiling/project_ddf_query_redshift.sql,sha256=iPj4HcdVm77P3xJAGUQsdhwYOJbsA9UYN0JhxEd1cbw,1795
|
|
102
|
+
testgen/template/flavors/redshift/profiling/project_profiling_query_redshift.yaml,sha256=uMfWnMw3j_HGlLOsxdCYC8m4mECBmJn7s7hpXLi9pjo,10861
|
|
103
|
+
testgen/template/flavors/redshift/profiling/project_secondary_profiling_query_redshift.sql,sha256=Yf99XgRfWEmDLCiqnPZetcu0oEu2bbNL_KXe0JNI5Qg,1242
|
|
104
|
+
testgen/template/flavors/redshift/setup_profiling_tools/create_functions_redshift.sql,sha256=gy9mO7PlufjeJENazPYQU6nf_qISTvbBMZI7Ge30MtE,6440
|
|
105
|
+
testgen/template/flavors/redshift/setup_profiling_tools/create_qc_schema_redshift.sql,sha256=BKVpowfzoVBK2jU8mQi6dKPAn_gr3y9VbyjxmQNLhGI,46
|
|
106
|
+
testgen/template/flavors/redshift/setup_profiling_tools/grant_execute_privileges_redshift.sql,sha256=yCnbCkJ4Z7hX9HT34KUjWnX_wZLs78Lh2vMD4S0aCb8,134
|
|
107
|
+
testgen/template/flavors/snowflake/profiling/project_ddf_query_snowflake.sql,sha256=vXEFgKTKdidM0vK0pl4sLXMQDtJAOpCU4VgSu-WjuPE,1835
|
|
108
|
+
testgen/template/flavors/snowflake/profiling/project_profiling_query_snowflake.yaml,sha256=t4OHUNx6HiG3U_e5yyvdwACH1Bc2k1EF35jvcTPt9OM,11524
|
|
109
|
+
testgen/template/flavors/snowflake/profiling/project_secondary_profiling_query_snowflake.sql,sha256=xkrdngAGkP4t8cjhFeEaPkXig7gK8gZi4jZaW6mTgnc,1266
|
|
110
|
+
testgen/template/flavors/snowflake/setup_profiling_tools/create_functions_snowflake.sql,sha256=Q2hJXVzEL5DaftQWXCbQvimS2uBjnWCvgBNaKSfp9rk,2093
|
|
111
|
+
testgen/template/flavors/snowflake/setup_profiling_tools/create_qc_schema_snowflake.sql,sha256=BKVpowfzoVBK2jU8mQi6dKPAn_gr3y9VbyjxmQNLhGI,46
|
|
112
|
+
testgen/template/flavors/snowflake/setup_profiling_tools/grant_execute_privileges_snowflake.sql,sha256=Gv4SRrTMiZc0fYOuGCyX-ahKv2ZqOHLXQHqZ3DCTfwI,300
|
|
113
|
+
testgen/template/flavors/trino/profiling/project_profiling_query_trino.yaml,sha256=OZ79qPuo9ufNRZKQeX1RhaSHhM6AHRB8MQcxZqE0J64,11394
|
|
114
|
+
testgen/template/flavors/trino/setup_profiling_tools/create_functions_trino.sql,sha256=URtRZzzFRxan9bu-GB8h1Z_0y0-KHekFwn-HrmG6TTQ,5404
|
|
115
|
+
testgen/template/flavors/trino/setup_profiling_tools/create_qc_schema_trino.sql,sha256=BKVpowfzoVBK2jU8mQi6dKPAn_gr3y9VbyjxmQNLhGI,46
|
|
116
|
+
testgen/template/gen_funny_cat_tests/gen_test_constant.sql,sha256=TY6Z5QzHc3cz2BypT_uwidG7acfIN-Ub09z8uReVob0,6461
|
|
117
|
+
testgen/template/gen_funny_cat_tests/gen_test_distinct_value_ct.sql,sha256=ZwI27srf5pdfzgJfTTarZ4mqWrIDp6J3LvtPvVq8dBs,6011
|
|
118
|
+
testgen/template/gen_funny_cat_tests/gen_test_row_ct.sql,sha256=ahD6XldROKlFw1YehuW2M2hNIiPJc85mzhRl6U4XakI,3032
|
|
119
|
+
testgen/template/gen_funny_cat_tests/gen_test_row_ct_pct.sql,sha256=uG8ZC6HvBNcen06wXfEyIedEWeN5pXoIgFalqSH9ASo,3150
|
|
120
|
+
testgen/template/generation/gen_delete_old_tests.sql,sha256=u7RxhgjsI5EzLrwn9QwmeZ-yEeh6L7KGXdFjiBo-PNU,196
|
|
121
|
+
testgen/template/generation/gen_insert_test_suite.sql,sha256=a4mya6P24DMhrca1M06szeORMYhGHtFba8e-LHf79Rg,286
|
|
122
|
+
testgen/template/generation/gen_retrieve_or_insert_test_suite.sql,sha256=5z1yF1LUCnMh5anLWh2qbmRYbHdeE4jW1Ihb8aMOurA,2340
|
|
123
|
+
testgen/template/generation/gen_standard_test_type_list.sql,sha256=LBHz364v8z7xXNUcbIHkScLN75VXVut2ECGn-RpHMqA,404
|
|
124
|
+
testgen/template/generation/gen_standard_tests.sql,sha256=tkG55YQ-g3gNxq1gEbgB7A-Ls5mDKVt0L2mrfnZ3HUE,2569
|
|
125
|
+
testgen/template/get_entities/get_connection.sql,sha256=BAts0NUzajcJKmh07PB_8FNXKUco5BUWqfXU6No-IAY,377
|
|
126
|
+
testgen/template/get_entities/get_connections_list.sql,sha256=fZTDXR_ewUk8pgYZqwlyf0tcnPJ8K8rVmAUJniI1yqM,135
|
|
127
|
+
testgen/template/get_entities/get_latest.sql,sha256=039WJi9tbl-E7GeXuqac6BLiWwLTErJkICZo1HnWfOA,61
|
|
128
|
+
testgen/template/get_entities/get_profile.sql,sha256=FhLWgiZtOz6OwLXI1opDJyupg490jNW9kuVodLrfIJg,328
|
|
129
|
+
testgen/template/get_entities/get_profile_info.sql,sha256=7NLzTLevfLB_5wBTm9kb4tMK97RGFFh0TJWR0PRGEC8,496
|
|
130
|
+
testgen/template/get_entities/get_profile_list.sql,sha256=gS-ozI1QmHaTnptZqE0lhX1eMgHEUUaZ7K4XzmlbzMs,691
|
|
131
|
+
testgen/template/get_entities/get_profile_screen.sql,sha256=KjeUXz2-JMoBVlfohoQk2SCusOSbETdl1L4MwJk8hl0,14623
|
|
132
|
+
testgen/template/get_entities/get_project_list.sql,sha256=PAlgdm9lUaHur1WjHH2vA-hKsE1WYkfXb_M-zoP0Jbw,146
|
|
133
|
+
testgen/template/get_entities/get_table_group_list.sql,sha256=Sdz7h4Ire4DJFCcWQPD0xlxo-wyEnyjkh6ls9cYjigw,278
|
|
134
|
+
testgen/template/get_entities/get_test_generation_list.sql,sha256=AiOJrngZfHGiUDhCsvDt9rpEEq7bJKGQbjiCH5MJF2Y,732
|
|
135
|
+
testgen/template/get_entities/get_test_info.sql,sha256=BulQELseOa4Tpk1eDp6Kh74UOn4ohzY4JXG0n5CfniE,1509
|
|
136
|
+
testgen/template/get_entities/get_test_results_for_run_cli.sql,sha256=jTIzckdLxRZYLxDabqGrghLONf_l2n4weje3hmL9XtM,540
|
|
137
|
+
testgen/template/get_entities/get_test_run_list.sql,sha256=HZHC3f4iYFgeU0joP2m8PaTDgsnaizVEwYpi7PNxlqo,857
|
|
138
|
+
testgen/template/get_entities/get_test_suite.sql,sha256=noJgu0BF8caafUYEq9tUmFh22YHmDwIIUHA13drAt4k,309
|
|
139
|
+
testgen/template/get_entities/get_test_suite_list.sql,sha256=rfqw54-kKmxnH4OcTMLzOQiXE2oO1dbsxa9PEQ4pfUU,462
|
|
140
|
+
testgen/template/get_entities/list_test_types.sql,sha256=-_c_NGA3Q1oErdEkaZgQs_kxPnPppA1h0dTylQMZnAk,121
|
|
141
|
+
testgen/template/observability/get_event_data.sql,sha256=Zh5S7YGjmk2_eYWhhWnKS7GwKrvmWcRcZ1acLedYmUs,1077
|
|
142
|
+
testgen/template/observability/get_test_results.sql,sha256=6gVGH_QwNuI9p6B1V2QE9ATZOuE2fOX6OyqE_ZdsuQM,726
|
|
143
|
+
testgen/template/observability/update_test_results_exported_to_observability.sql,sha256=yizYovtJG69qkxXsw_rViIPMASm4gGfNtgCIg2FbzXw,437
|
|
144
|
+
testgen/template/parms/parms_profiling.sql,sha256=iQGWWHnCiScOTJZPVZW3VtJE0Vb40GP4CZdgSZwKBAk,1122
|
|
145
|
+
testgen/template/parms/parms_test_execution.sql,sha256=owu1vMPsnO2YUgab4-nCv4-jmLwKx1Nn6OR2onoJduU,581
|
|
146
|
+
testgen/template/parms/parms_test_gen.sql,sha256=Oyrdu35s4a_GhdTrTDBrivITyYJMDU0VvMkDlQeOFQo,765
|
|
147
|
+
testgen/template/profiling/contingency_columns.sql,sha256=Ox_FTrfsGQrqtj1wAHum78VGFIEc_hQCwjWfCQMjPUk,380
|
|
148
|
+
testgen/template/profiling/datatype_suggestions.sql,sha256=L7RiBifa6oLTWtPzkUMEmTmBiKQAepboNCiftaAtPlk,3254
|
|
149
|
+
testgen/template/profiling/functional_datatype.sql,sha256=JuZOPKeL3G7snB9c3YjLY3BTko8viXX70RhE6A8TI1k,24776
|
|
150
|
+
testgen/template/profiling/functional_tabletype_stage.sql,sha256=7KLAsisAkGnQOU_NcHslt6MPTz2o7GJDEVMAXM3bxzk,2492
|
|
151
|
+
testgen/template/profiling/functional_tabletype_update.sql,sha256=DhmBQ5cAmnz_8Wu0ZlSjFrxa5butF2KwMH8ylDnynCQ,371
|
|
152
|
+
testgen/template/profiling/pii_flag.sql,sha256=35gOwfNiG5IhgsdIO14G_3xa_NcGJO76aeMK91OdMMk,7690
|
|
153
|
+
testgen/template/profiling/profile_anomalies_screen_column.sql,sha256=oc71_E0G7PQbyghZqLcGkd88XYj6n_2PkVqkVU8S75Y,748
|
|
154
|
+
testgen/template/profiling/profile_anomalies_screen_multi_column.sql,sha256=bWyLo12a19VA-4eHUIAT6Bjz45YaSPpVBk2Kls9G-M4,2966
|
|
155
|
+
testgen/template/profiling/profile_anomalies_screen_table.sql,sha256=IYtKIS1ADuo0tULmkvu_8Jd9ix01INe0XzDfpqRbq-A,856
|
|
156
|
+
testgen/template/profiling/profile_anomalies_screen_table_dates.sql,sha256=3ccDl83hgbFsn8BTB71HVf-vDbxseXV2pPUhmGKBAv0,1135
|
|
157
|
+
testgen/template/profiling/profile_anomalies_screen_variants.sql,sha256=AePGz1wXWTTB85UYukcvsDQj1JQdRF0TA0wAHh39BXQ,1886
|
|
158
|
+
testgen/template/profiling/profile_anomaly_types_get.sql,sha256=m3Pnjsyim5u5HTBEurF-_GlI_O1d7O7ZNWRd5Gs9KRw,118
|
|
159
|
+
testgen/template/profiling/project_get_table_sample_count.sql,sha256=_GQfaOWDvbQvfriBSF9zz_VKzpiS4It6mkYqXL-TAwY,1073
|
|
160
|
+
testgen/template/profiling/project_profile_run_record_insert.sql,sha256=8qG0mCFDDmqfR-wS_chO7Vi0HmM728-G_1IW6bnIi6I,385
|
|
161
|
+
testgen/template/profiling/project_profile_run_record_update.sql,sha256=k_3zbM85jMfLtUv1R4igwo2bk8h65AOzYHy41MJNy10,225
|
|
162
|
+
testgen/template/profiling/project_profile_run_record_update_status.sql,sha256=DLshj-ZIbirUXbtCFsyTD-40SfAij8x6lbrcwUH4Ap4,159
|
|
163
|
+
testgen/template/profiling/project_update_profile_results_to_estimates.sql,sha256=DJfmmAWrDb9qKrl-h6CPw4c9axfuL-6-0GQwvyETTgQ,1864
|
|
164
|
+
testgen/template/profiling/refresh_anomalies.sql,sha256=ip4fuvBQClvaOtsm6_w_lTrn6fpU6qOF9WsQitFWUXY,1352
|
|
165
|
+
testgen/template/profiling/refresh_data_chars_from_profiling.sql,sha256=NPdS8LsJDvs2lZdz9PUyAd-JJZtQaA-oQZIw9NW5dJo,6285
|
|
166
|
+
testgen/template/profiling/secondary_profiling_columns.sql,sha256=VJBZCQHrsCpN3KEtsaTEcJDDQpvKWlXEswpMbpwZZxg,366
|
|
167
|
+
testgen/template/profiling/secondary_profiling_delete.sql,sha256=JJzk6AIgNJXJSp5FlmbvKKLqCViULx-6RHeA0-e8E_0,194
|
|
168
|
+
testgen/template/profiling/secondary_profiling_update.sql,sha256=gyjjvfWNBbZf1CCbHwJMF3DapSCQVZaSAzKym5s6nHQ,717
|
|
169
|
+
testgen/template/quick_start/populate_target_data.sql,sha256=-zyrxb0ZLKoTbr_HLuaEWiX6rIoHmCe98rNSphEsxkM,227693
|
|
170
|
+
testgen/template/quick_start/recreate_target_data_schema.sql,sha256=jHA4k8rRZndvl1jhpA-OiBzc_Bw3NTDL8I9VL2TOSLk,4707
|
|
171
|
+
testgen/template/quick_start/update_target_data.sql,sha256=qiNAb88iiVTVyNhKfw3Y7Yzhe19E37-LkHIuwbYMdBw,3399
|
|
172
|
+
testgen/template/updates/create_tmp_test_definition.sql,sha256=MN5WkoT5HbCDIksHZBhYGz2KV_A6Mqzyplf1lsPNkR0,663
|
|
173
|
+
testgen/template/updates/get_test_def_parms.sql,sha256=ISljYOqFVJxj9T9xsDvJZ3kLOs_U-UamtygCttAsb3A,1256
|
|
174
|
+
testgen/template/updates/populate_stg_test_definitions.sql,sha256=qz4lxxaNaNY5QVC7hbG8cT28aNdWQat72n00xQip_LQ,10843
|
|
175
|
+
testgen/template/validate_tests/ex_disable_tests_test_definitions.sql,sha256=yH1ySYZm0t7kPh55QPSWw2D-Mvp_Khn2QdaQFKWmtIs,146
|
|
176
|
+
testgen/template/validate_tests/ex_flag_tests_test_definitions.sql,sha256=RI8ITCcE-7UmtNoqaNJUA-CyQyV0szB2lAfNWxkDCpc,2789
|
|
177
|
+
testgen/template/validate_tests/ex_get_project_column_list_generic.sql,sha256=Ny5sgwDtNImYQAHd-EPQi-Fw4SjJSJc0aY5A-rQCNyU,170
|
|
178
|
+
testgen/template/validate_tests/ex_get_test_column_list_tg.sql,sha256=dwvVgcu4S3js8nZ04kBNXg9Za_vhmMSDyVktJ-n1CA8,2832
|
|
179
|
+
testgen/template/validate_tests/ex_write_test_val_errors.sql,sha256=CbciqmsDMUpLlOplgSc3xGfRr1RtKxbVMbCbyjbFiK8,825
|
|
180
|
+
testgen/ui/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
181
|
+
testgen/ui/app.py,sha256=awjrvAu2s-uuStXe1X4ewcTiqRtu-AJKi3fwbg42nLs,3056
|
|
182
|
+
testgen/ui/bootstrap.py,sha256=tXeVpHkd1dgVK2pDOw5hILEYzdsnmzOd2FQVYHVV_yg,3457
|
|
183
|
+
testgen/ui/session.py,sha256=S7vgXlj4JmmnaPpIPRSnAZ7t3zchmtkCvYtPLPCpg10,1115
|
|
184
|
+
testgen/ui/assets/dk_logo.svg,sha256=5z7woShuly4mE8kKfE9AsoE9nXcYi1Nysj5JbBvCmms,3769
|
|
185
|
+
testgen/ui/assets/question_mark.png,sha256=BienrA1I_0Pqx9YCXJ3ETMfWg2KN4gcg8LAEcMGLYiA,21896
|
|
186
|
+
testgen/ui/assets/scripts.js,sha256=Go09C_5ZhABxc_Bp_F26FEIUET6wk83JmKLhbDufSLY,1752
|
|
187
|
+
testgen/ui/assets/style.css,sha256=gI566EzlL01iK16tILcEQdlHiu7CQTmY-2CTgJ-D8fE,3698
|
|
188
|
+
testgen/ui/components/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
189
|
+
testgen/ui/components/frontend/index.html,sha256=wTKkNJNpHa8nyzW8AT3DTZ6IH71NsbANTDscNbprUso,619
|
|
190
|
+
testgen/ui/components/frontend/css/KFOlCnqEu92Fr1MmEU9fBBc4.woff2,sha256=sBlTgjRRQWbsdmU1nQl0AzWPikyZGQGYOSL7TVaYnx4,15920
|
|
191
|
+
testgen/ui/components/frontend/css/KFOlCnqEu92Fr1MmEU9fChc4EsA.woff2,sha256=fxyCmwyQ_WZKA7txSnT3012eOO4WhxBKvIrVvZyMy2w,11800
|
|
192
|
+
testgen/ui/components/frontend/css/KFOmCnqEu92Fr1Mu4mxK.woff2,sha256=9nNPgXcRLAg5uWH5bYE_yxidgbYOlsMyeMGYO29BlhU,15744
|
|
193
|
+
testgen/ui/components/frontend/css/KFOmCnqEu92Fr1Mu7GxKOzY.woff2,sha256=PCPrAt5rNOMPGM-3Fnq9gaLO39HaYN_LcZiVF6s_tDE,11872
|
|
194
|
+
testgen/ui/components/frontend/css/material-symbols-rounded.css,sha256=cXZJ-Qgx23oURxkfDUbBWlub8ruT1lvUzQaaeFYAtTs,631
|
|
195
|
+
testgen/ui/components/frontend/css/material-symbols-rounded.woff2,sha256=fLVmW9hBdIiq0Tiwt2ME6ZpnEP1J9QHhcyrtlFuEl9M,3917724
|
|
196
|
+
testgen/ui/components/frontend/css/roboto-font-faces.css,sha256=I0sLIunaThJBJG-R4xD_NjrIejGvw7tHBcwqehc4p74,1403
|
|
197
|
+
testgen/ui/components/frontend/css/shared.css,sha256=mzJ020gWtozJrhHFuI1NGZAclKo3U2fCCGWGXhLybbk,987
|
|
198
|
+
testgen/ui/components/frontend/img/dk_logo.svg,sha256=5z7woShuly4mE8kKfE9AsoE9nXcYi1Nysj5JbBvCmms,3769
|
|
199
|
+
testgen/ui/components/frontend/js/main.js,sha256=bbep0EJ6tzDkDDTMvXdfF4pbOywwkcZ3l2_1GxzPBBA,3271
|
|
200
|
+
testgen/ui/components/frontend/js/streamlit.js,sha256=Y-wbwzXOkwx-Mkn-zJt-KZ2khoqPOEGxsPpDJglHta4,579
|
|
201
|
+
testgen/ui/components/frontend/js/van.min.js,sha256=Rv5zb2GnvoQYgBfXLnjh0Jo4LneLvA9doaOt-mAphQ8,1729
|
|
202
|
+
testgen/ui/components/frontend/js/components/breadcrumbs.js,sha256=v0R6dG_SmhRnH4XbcAd7YkPgcNV2KdQcrbwpPP989vs,2103
|
|
203
|
+
testgen/ui/components/frontend/js/components/button.js,sha256=puiqSTbWU1BwkF5D0MXq0dCLzPi8cH78ugRughKWTnI,1468
|
|
204
|
+
testgen/ui/components/frontend/js/components/location.js,sha256=-dsKFgDU-szlBmTzL5AGK_SbzZYAUzGJm56SswLfSDI,1715
|
|
205
|
+
testgen/ui/components/frontend/js/components/select.js,sha256=McTX0TcPSTFb0V3_pAwRivTb1PYluPmsFobY5FymvTc,1942
|
|
206
|
+
testgen/ui/components/frontend/js/components/sidebar.js,sha256=KHVFT2mkgRx-REQ-FwPTfLEkzIKJQS7kv8iaN1MAgFM,12727
|
|
207
|
+
testgen/ui/components/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
208
|
+
testgen/ui/components/utils/callbacks.py,sha256=PA4jMhMv4r5gWdKynz4C1npiGKNXDkfMX5WrlXIJLsc,1812
|
|
209
|
+
testgen/ui/components/utils/component.py,sha256=dqorYdG1437FJzzxXVolWX67ESYX_GGrwKJA9GZCWZs,452
|
|
210
|
+
testgen/ui/components/widgets/__init__.py,sha256=bltIVmjBf4QMEQp5NiGGnn3LRDkGL6kvEKJqGGBNiaE,275
|
|
211
|
+
testgen/ui/components/widgets/breadcrumbs.py,sha256=KZ6BxCAkvy5Y7UaDvFCWHzntVDAo4KpaXM0D8ZlBctA,693
|
|
212
|
+
testgen/ui/components/widgets/location.py,sha256=PkmgkaVU4SqP4UMaPVi0obsapcEUTnN6H8bpM6LRioY,1998
|
|
213
|
+
testgen/ui/components/widgets/modal.py,sha256=u6RlTCnriDhlF3tFdXJiAHs0CPn33aZ4ZP27OOTmeYQ,3454
|
|
214
|
+
testgen/ui/components/widgets/sidebar.py,sha256=Jsj1_Pyg4uYpcja8fjWFF0s66mXGbnJjHdUTtap14nQ,1903
|
|
215
|
+
testgen/ui/navigation/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
216
|
+
testgen/ui/navigation/menu.py,sha256=Jfhm2BdicWVf8jNi610mLT3myfiML6MgshJwLrTNNJs,1211
|
|
217
|
+
testgen/ui/navigation/page.py,sha256=ZQsT7rQe50qykDBw0_yMZeyxvxyZrmMg9KrNkDUsFZo,515
|
|
218
|
+
testgen/ui/navigation/router.py,sha256=vhgkV8kjAHJO4c_DZc-Ox_6QGpJcTgxZFZ326nF_f68,1952
|
|
219
|
+
testgen/ui/queries/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
220
|
+
testgen/ui/queries/authentication_queries.py,sha256=e4a2FiaH_wgltHqWwvUf2zy0ipcPtugiVyfS9ok-uxs,1400
|
|
221
|
+
testgen/ui/queries/connection_queries.py,sha256=LB9uNJHnwFwCiS0AhPjPkkI9YqzHbJJJuh9bXyF0vtM,5113
|
|
222
|
+
testgen/ui/queries/profiling_queries.py,sha256=2FtpbJVExoo6ZrhiZhy5eqMjcapqnLWXzD5AtJZA2_M,6388
|
|
223
|
+
testgen/ui/queries/project_queries.py,sha256=Zl9mQW57fGxVSwayj9DaBPz-2swrmgGHtPBo9uG9n9o,247
|
|
224
|
+
testgen/ui/queries/table_group_queries.py,sha256=CwejFg6tbfkSNYSAIaXSnyIUHdo4txyZ4Wz3Nr-n66c,8977
|
|
225
|
+
testgen/ui/queries/test_definition_queries.py,sha256=ZCrrFwlZFxnC9OBlNd5KObshKl_eL5pbmFsq07hz03k,14770
|
|
226
|
+
testgen/ui/queries/test_run_queries.py,sha256=jM9gFtgt5freblnPL19vNMUw9aUZqrHQi0l3JXDOYHA,1226
|
|
227
|
+
testgen/ui/queries/test_suite_queries.py,sha256=8Hw1xD5r0j2Amx_qeza_RVAms-n7x-y4JU3okA-dR7o,6025
|
|
228
|
+
testgen/ui/scripts/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
229
|
+
testgen/ui/scripts/patch_streamlit.py,sha256=H-Upd_NA__ziRJACrhV7XifvHmZ72ZDji2c5w5VY_uk,4212
|
|
230
|
+
testgen/ui/services/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
231
|
+
testgen/ui/services/authentication_service.py,sha256=RbzMRfA_4pJvlff2M8-lhjzQHvEYJoirwdxE6k1_QaM,3435
|
|
232
|
+
testgen/ui/services/connection_service.py,sha256=NEl-E9jIQSjl2x5uxzOxn_OxkjA7GWu8INE3GB5UgTc,9106
|
|
233
|
+
testgen/ui/services/database_service.py,sha256=FBt_vJC2AGFw3aks_uajtNfdIJgBcPCOmDavtdQAPY4,10177
|
|
234
|
+
testgen/ui/services/form_service.py,sha256=JSZmhykGXhFff3dxbDx9GmiluGAnVbTireocsYvcvnU,35620
|
|
235
|
+
testgen/ui/services/javascript_service.py,sha256=FUSKYp2MZLbtFZjJLrAz29lV9EEfxpjND8fKFDkIZP4,1244
|
|
236
|
+
testgen/ui/services/query_service.py,sha256=5rckcKgxCQgfSGWx88ERatxIlzm7MGPLRuKJPGbWvXo,11486
|
|
237
|
+
testgen/ui/services/string_service.py,sha256=32adRdpB4y2mUS5rCD_Dg0ZSxIBEvyus72zrofYid90,299
|
|
238
|
+
testgen/ui/services/table_group_service.py,sha256=DUOu2LQX7GM3P2rEvN9zcs5ass9G25lIrhlr3gZ2nXI,5378
|
|
239
|
+
testgen/ui/services/test_definition_service.py,sha256=S7tZrnGfLdVdMmNCZ0PBIBB0MS1jxmDmAR2US9Yk2NM,4297
|
|
240
|
+
testgen/ui/services/test_run_service.py,sha256=WaojCJmdNsQAe8TwBUkvYPrEVfFz_8lzxhOEzDnF_-Y,379
|
|
241
|
+
testgen/ui/services/test_suite_service.py,sha256=uyblBmWyq2TBJZCxOfv5rCF1f5VRQqzXapXi7fPZz3I,2457
|
|
242
|
+
testgen/ui/services/toolbar_service.py,sha256=MVKxh5sXGT-PgAU2gtA4NHCKmll1I-1iUj4qSrO_ieQ,2753
|
|
243
|
+
testgen/ui/views/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
244
|
+
testgen/ui/views/app_log_modal.py,sha256=SLXDb3BADGZuAREUT7YWE_j7Zyppfsl5eaJoB8ietFA,3057
|
|
245
|
+
testgen/ui/views/connections.py,sha256=fbpkGAhF8h4fFkKWnDCYKebCDdlheqnthH-dJfkFsq0,2748
|
|
246
|
+
testgen/ui/views/connections_base.py,sha256=1djikHy0GlOlohWp4sdyqYiHQBeGhVSbbtyxpQd8bHA,16991
|
|
247
|
+
testgen/ui/views/login.py,sha256=WktRYVeCqXFJfdeMyRrVHemZkXYA8U0OMICicBC7nDU,1267
|
|
248
|
+
testgen/ui/views/not_found.py,sha256=T9YVPsWXouisJLxUxhclEyvjMWvDW_GKGnEDgE5yBMM,340
|
|
249
|
+
testgen/ui/views/overview.py,sha256=OGyn5BAQ3WSk1ei62fLgwImxAcX-xt77Vo_zMBaDCwI,1086
|
|
250
|
+
testgen/ui/views/profiling_anomalies.py,sha256=Z9Mtc1HPkF0Vab2kcIvf82jZhcJyilBfkBpgrlqDjYk,22492
|
|
251
|
+
testgen/ui/views/profiling_details.py,sha256=Z9RwzUVUnfChuwTIbyWxWdP6kvFTZJHLxnfIkkfeMl8,12481
|
|
252
|
+
testgen/ui/views/profiling_modal.py,sha256=G8hEH_IVOwR8TudX4B_PncjFxzvrZL4t6EqEk4sAFXE,1508
|
|
253
|
+
testgen/ui/views/profiling_results.py,sha256=RyBh_n_0cOA_TWFuBv9iylk4iedWR66SdDY-AZfRhP0,8816
|
|
254
|
+
testgen/ui/views/profiling_summary.py,sha256=Qc4An5Ztvch76cxdrz5l0M8xdbrrjGoYP1NmPkfZ5dc,6722
|
|
255
|
+
testgen/ui/views/project_settings.py,sha256=GvOun5iip1B06wBYsOP0xReTwWG85z8ozotGcx2ZNHk,2511
|
|
256
|
+
testgen/ui/views/table_groups.py,sha256=3UXR-9tuMYZcLY9g_0VxA-Zzzby1C9P4wamgSot24gU,24344
|
|
257
|
+
testgen/ui/views/test_definitions.py,sha256=xqdhwwfHrbOyTo93nkvld1lmpAC85LRSIoTz5Puc568,42597
|
|
258
|
+
testgen/ui/views/test_results.py,sha256=TW9IG_zcoSffgH8DJOUC3RssTUAKkrO_RVkxe_eDlDg,37734
|
|
259
|
+
testgen/ui/views/test_runs.py,sha256=LhfGmVP0S9EDPlFCqkWvMV6myElWyhfTs6LQ-1fdBYI,7994
|
|
260
|
+
testgen/ui/views/test_suites.py,sha256=9Ygxs6ZurlEK6y78JyIJ8RWq0VioQjhwRejVVB--gJc,23757
|
|
261
|
+
testgen/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
262
|
+
testgen/utils/plugins.py,sha256=N4QfO4RPsVgq3mT7S7wHXwdIhnJdf42xEJiHSYwtiSk,474
|
|
263
|
+
testgen/utils/singleton.py,sha256=SGXhoWi5ysUBP8JIvEiqOgMdoVRxf5T0EMR4lVNXIik,349
|
|
264
|
+
dataops_testgen-2.2.0.dist-info/LICENSE,sha256=jG2zQEdRNt88EgHUWPpXVWmOrOduUQRx7MnYV9YIPaw,11359
|
|
265
|
+
dataops_testgen-2.2.0.dist-info/METADATA,sha256=UCsmsYQmFsNYRxGU2YqCEVj8nlaTFaOrfEadBlyAKFY,13465
|
|
266
|
+
dataops_testgen-2.2.0.dist-info/NOTICE,sha256=7xKGrNnsBjujYkej346iJmt6ZRHtGWVoIEYOIDPF0wM,151
|
|
267
|
+
dataops_testgen-2.2.0.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
|
|
268
|
+
dataops_testgen-2.2.0.dist-info/entry_points.txt,sha256=p_cUNBfmAEDddv34Ez-YhNZzqWXNmL7Qnt0bYYqyFAk,49
|
|
269
|
+
dataops_testgen-2.2.0.dist-info/top_level.txt,sha256=7GaaMJq7vV2QzKgY8bZRnizSmZQe15Z23lTRTzjMnuk,8
|
|
270
|
+
dataops_testgen-2.2.0.dist-info/RECORD,,
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
testgen
|
testgen/__init__.py
ADDED
|
File without changes
|