aboutsummaryrefslogtreecommitdiffstats
path: root/yql/essentials/tests/common/test_framework/test_file_common.py
diff options
context:
space:
mode:
authorrobot-piglet <robot-piglet@yandex-team.com>2024-12-28 18:52:30 +0300
committerrobot-piglet <robot-piglet@yandex-team.com>2024-12-28 19:01:35 +0300
commit4e51cb9d47a86fee833396ad0cdfb8e84ec8166c (patch)
tree664643be2902fbbc085c4e39dde4cbe6aff2225b /yql/essentials/tests/common/test_framework/test_file_common.py
parentc3689e981be0dc1c9f79ac90f7d36d456124f782 (diff)
downloadydb-4e51cb9d47a86fee833396ad0cdfb8e84ec8166c.tar.gz
Intermediate changes
commit_hash:6fb24458a96f300f8c26c5a2e44bb97b05841ee9
Diffstat (limited to 'yql/essentials/tests/common/test_framework/test_file_common.py')
-rw-r--r--yql/essentials/tests/common/test_framework/test_file_common.py25
1 files changed, 15 insertions, 10 deletions
diff --git a/yql/essentials/tests/common/test_framework/test_file_common.py b/yql/essentials/tests/common/test_framework/test_file_common.py
index 84bb0cd50d..37d008759f 100644
--- a/yql/essentials/tests/common/test_framework/test_file_common.py
+++ b/yql/essentials/tests/common/test_framework/test_file_common.py
@@ -7,11 +7,13 @@ import cyson
import yql.essentials.providers.common.proto.gateways_config_pb2 as gateways_config_pb2
from google.protobuf import text_format
-from yql_utils import execute_sql, get_supported_providers, get_tables, get_files, get_http_files, \
+from yql_utils import execute, get_supported_providers, get_tables, get_files, get_http_files, \
get_pragmas, KSV_ATTR, is_xfail, get_param, YQLExecResult, yql_binary_path, do_custom_error_check
from yqlrun import YQLRun
-from test_utils import get_parameters_json, DATA_PATH, replace_vars
+from test_utils import get_parameters_json, replace_vars
+# FIXME dq usage
+from test_utils import DATA_PATH
def get_gateways_config(http_files, yql_http_file_server, force_blocks=False, is_hybrid=False, allow_llvm=True):
@@ -54,10 +56,10 @@ def check_provider(provider, config):
pytest.skip('%s provider is not supported here' % provider)
-def get_sql_query(provider, suite, case, config, data_path=None):
+# FIXME make data_path required (dq usage)
+def get_sql_query(provider, suite, case, config, data_path=None, template='.sql'):
if data_path is None:
data_path = DATA_PATH
-
pragmas = get_pragmas(config)
if get_param('TARGET_PLATFORM'):
@@ -67,7 +69,7 @@ def get_sql_query(provider, suite, case, config, data_path=None):
if get_param('TARGET_PLATFORM') and is_xfail(config):
pytest.skip('xfail is not supported on non-default target platform')
- program_sql = os.path.join(data_path, suite, '%s.sql' % case)
+ program_sql = os.path.join(data_path, suite, '%s%s' % (case, template))
with codecs.open(program_sql, encoding='utf-8') as program_file_descr:
sql_query = program_file_descr.read()
@@ -88,12 +90,14 @@ def get_sql_query(provider, suite, case, config, data_path=None):
def run_file_no_cache(provider, suite, case, cfg, config, yql_http_file_server,
- yqlrun_binary=None, extra_args=[], force_blocks=False, allow_llvm=True, data_path=None):
+ yqlrun_binary=None, extra_args=[], force_blocks=False, allow_llvm=True, data_path=None,
+ run_sql=True):
check_provider(provider, config)
+ # FIXME dq usage
if data_path is None:
data_path = DATA_PATH
- sql_query = get_sql_query(provider, suite, case, config, data_path)
+ sql_query = get_sql_query(provider, suite, case, config, data_path, template='.sql' if run_sql else '.yqls')
sql_query = replace_vars(sql_query, "yqlrun_var")
xfail = is_xfail(config)
@@ -123,7 +127,7 @@ def run_file_no_cache(provider, suite, case, cfg, config, yql_http_file_server,
udfs_dir=yql_binary_path('yql/essentials/tests/common/test_framework/udfs_deps')
)
- res, tables_res = execute_sql(
+ res, tables_res = execute(
yqlrun,
program=sql_query,
input_tables=in_tables,
@@ -131,6 +135,7 @@ def run_file_no_cache(provider, suite, case, cfg, config, yql_http_file_server,
files=files,
urls=http_files_urls,
check_error=not xfail,
+ run_sql=run_sql,
verbose=True,
parameters=parameters)
@@ -156,12 +161,12 @@ def run_file_no_cache(provider, suite, case, cfg, config, yql_http_file_server,
def run_file(provider, suite, case, cfg, config, yql_http_file_server, yqlrun_binary=None,
- extra_args=[], force_blocks=False, allow_llvm=True, data_path=None):
+ extra_args=[], force_blocks=False, allow_llvm=True, data_path=None, run_sql=True):
if (suite, case, cfg) not in run_file.cache:
run_file.cache[(suite, case, cfg)] = \
run_file_no_cache(provider, suite, case, cfg, config, yql_http_file_server,
yqlrun_binary, extra_args, force_blocks=force_blocks, allow_llvm=allow_llvm,
- data_path=data_path)
+ data_path=data_path, run_sql=run_sql)
return run_file.cache[(suite, case, cfg)]