diff options
| author | robot-ydb-importer <[email protected]> | 2024-11-22 16:22:45 +0300 |
|---|---|---|
| committer | robot-ydb-importer <[email protected]> | 2024-11-22 16:37:54 +0300 |
| commit | e2791d7cb5f6c16065070c3e36286399908c3f56 (patch) | |
| tree | 3fe608c5d15b25f183591f075dee49bfd6a83dde /library/python/testing | |
| parent | 145d1a017c8b4a1d1d2d900d87df267373c7479e (diff) | |
YDB Import 625
commit_hash:bbf24592c367fa158fbc53e041fe367374d0750e
Diffstat (limited to 'library/python/testing')
3 files changed, 163 insertions, 0 deletions
diff --git a/library/python/testing/custom_linter_util/tests/test_params.py b/library/python/testing/custom_linter_util/tests/test_params.py new file mode 100644 index 00000000000..025bb3eef22 --- /dev/null +++ b/library/python/testing/custom_linter_util/tests/test_params.py @@ -0,0 +1,83 @@ +import json + +from library.python.testing.custom_linter_util import linter_params +from yatest.common import work_path + + +SOURCE_ROOT = "TEST_SOURCE_ROOT" +PROJECT_PATH = "TEST_PROJECT_PATH" +OUTPUT_PATH = "TEST_OUTPUT_PATH" +REPORT_FILE = "TEST_REPORT_FILE" +LINT_NAME = "important-lint" +DEPS = { + "dep1": "/path/to/dep1", + "dep2": "/path/to/dep2", +} +GLOBAL_RESOURCES = { + "TOOL1_GLOBAL_RESOURCES": "/path/to/resource1", + "TOOL2_GLOBAL_RESOURCES": "/path/to/resource2", +} +CONFIGS = ["path/to/config1", "path/to/config2"] +EXTRA_PARAMS = { + "var1": "val1", + "var2": "val2", +} +FILES = ["file1.cpp", "file2.cpp"] + +EXPECTED = linter_params.LinterArgs( + source_root=SOURCE_ROOT, + project_path=PROJECT_PATH, + output_path=OUTPUT_PATH, + report_file=REPORT_FILE, + lint_name=LINT_NAME, + depends=DEPS, + global_resources=GLOBAL_RESOURCES, + configs=CONFIGS, + extra_params=EXTRA_PARAMS, + files=FILES, +) + + +def test_cmd_line_params(): + raw_args = [ + "--source-root", SOURCE_ROOT, + "--project-path", PROJECT_PATH, + "--output-path", OUTPUT_PATH, + "--report-file", REPORT_FILE, + "--lint-name", LINT_NAME, + ] + for rel, abs in DEPS.items(): + raw_args += ["--depends", ":".join([rel, abs])] + for var, path in GLOBAL_RESOURCES.items(): + raw_args += ["--global-resource", ":".join([var, path])] + for cfg in CONFIGS: + raw_args += ["--config", cfg] + for var, val in EXTRA_PARAMS.items(): + raw_args += ["--extra-param", "=".join([var, val])] + raw_args += FILES + + got = linter_params.get_params(raw_args) + + assert got == EXPECTED + + +def test_json_params(): + params_file = work_path("params.josn") + params = { + "source_root": SOURCE_ROOT, + "project_path": PROJECT_PATH, + "output_path": OUTPUT_PATH, + "report_file": REPORT_FILE, + "lint_name": LINT_NAME, + "depends": DEPS, + "global_resources": GLOBAL_RESOURCES, + "configs": CONFIGS, + "extra_params": EXTRA_PARAMS, + "files": FILES, + } + with open(params_file, "w") as f: + json.dump(params, f) + + got = linter_params.get_params(["--params", params_file]) + + assert got == EXPECTED diff --git a/library/python/testing/custom_linter_util/tests/test_reporter.py b/library/python/testing/custom_linter_util/tests/test_reporter.py new file mode 100644 index 00000000000..81bfa3c9ef0 --- /dev/null +++ b/library/python/testing/custom_linter_util/tests/test_reporter.py @@ -0,0 +1,68 @@ +import json + +from library.python.testing.custom_linter_util.reporter import LintReport, LintStatus +from yatest.common import output_path, context + + +def dump_and_load(report): + report_file = output_path(context.test_name) + report.dump(report_file=report_file) + with open(report_file) as f: + return json.load(f) + + +def test_empty_report(): + report = LintReport() + got = dump_and_load(report) + assert got == {"report": {}} + + +def test_good_test(): + report = LintReport() + report.add("file.cpp", LintStatus.GOOD) + + got = dump_and_load(report) + + assert got == { + "report": { + "file.cpp": { + "status": "GOOD", + "message": "", + "elapsed": 0.0, + } + } + } + + +def test_skipped_test(): + report = LintReport() + report.add("file.cpp", LintStatus.SKIPPED, "Generated file", elapsed=1.0) + + got = dump_and_load(report) + + assert got == { + "report": { + "file.cpp": { + "status": "SKIPPED", + "message": "Generated file", + "elapsed": 1.0, + } + } + } + + +def test_failed_test(): + report = LintReport() + report.add("file.cpp", LintStatus.FAIL, "Test failed", elapsed=2.0) + + got = dump_and_load(report) + + assert got == { + "report": { + "file.cpp": { + "status": "FAIL", + "message": "Test failed", + "elapsed": 2.0, + } + } + } diff --git a/library/python/testing/custom_linter_util/tests/ya.make b/library/python/testing/custom_linter_util/tests/ya.make new file mode 100644 index 00000000000..1fde32d937a --- /dev/null +++ b/library/python/testing/custom_linter_util/tests/ya.make @@ -0,0 +1,12 @@ +PY3TEST() + +TEST_SRCS( + test_params.py + test_reporter.py +) + +PEERDIR( + library/python/testing/custom_linter_util +) + +END() |
