mirror of
https://github.com/GreptimeTeam/greptimedb.git
synced 2026-09-13 17:02:15 +00:00
Backport #8651, #8937, #8986 and #9005. Preserve the five v1.2 routine cases and map tooling checks into the release CI workflow. Signed-off-by: discord9 <55937128+discord9@users.noreply.github.com>
94 lines
3.9 KiB
Python
94 lines
3.9 KiB
Python
#!/usr/bin/env python3
|
|
# Copyright 2023 Greptime Team
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
# you may not use this file except in compliance with the License.
|
|
# You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# 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.
|
|
|
|
"""Regression coverage for the outer OTLP lifecycle."""
|
|
|
|
import importlib.util
|
|
import json
|
|
import sys
|
|
import tempfile
|
|
import unittest
|
|
from pathlib import Path
|
|
from types import SimpleNamespace
|
|
from unittest.mock import patch
|
|
|
|
|
|
RUNNER_PATH = Path(__file__).resolve().parents[2] / ".github/scripts/query-regression-run.py"
|
|
SPEC = importlib.util.spec_from_file_location("query_regression_outer_otlp_under_test", RUNNER_PATH)
|
|
assert SPEC is not None and SPEC.loader is not None
|
|
runner = importlib.util.module_from_spec(SPEC)
|
|
sys.modules[SPEC.name] = runner
|
|
SPEC.loader.exec_module(runner)
|
|
|
|
|
|
class OtlpTraceOuterLifecycleTest(unittest.TestCase):
|
|
def test_stops_base_before_candidate_and_wires_rust_commands(self) -> None:
|
|
events: list[str] = []
|
|
commands: list[list[str]] = []
|
|
|
|
def run(command, **_kwargs):
|
|
commands.append(command)
|
|
phase = command[1]
|
|
events.append(phase)
|
|
output = Path(command[command.index("--output") + 1])
|
|
output.write_text(json.dumps({"status": "ok", "targets": []}))
|
|
return SimpleNamespace(returncode=0)
|
|
|
|
def start(target, component, _procs):
|
|
events.append(f"start:{target.name}:{component}")
|
|
|
|
def stop(target, component, _procs):
|
|
events.append(f"stop:{target.name}:{component}")
|
|
|
|
args = SimpleNamespace(http_timeout="1", otelgen_bin=Path("otelgen"))
|
|
ports = list(range(10000, 10016))
|
|
with (
|
|
tempfile.TemporaryDirectory() as tmpdir,
|
|
patch.object(runner, "allocate_ports", return_value=ports),
|
|
patch.object(runner, "start_component", side_effect=start),
|
|
patch.object(runner, "stop_component", side_effect=stop),
|
|
patch.object(runner.subprocess, "run", side_effect=run),
|
|
):
|
|
root = Path(tmpdir)
|
|
self.assertEqual(
|
|
runner.run_otlp_case(args, Path("case.toml"), root, Path("base-bin"), Path("candidate-bin"), Path("fixture"), Path("runner")),
|
|
0,
|
|
)
|
|
expected = [
|
|
[
|
|
"runner", "run-otlp-target", "--case", "case.toml", "--fixture-generator", "fixture",
|
|
"--otelgen-bin", "otelgen", "--http-port", "10004", "--target-name", "base",
|
|
"--work-dir", str(root / "base"), "--output", str(root / "base" / "report.json"), "--http-timeout", "1",
|
|
],
|
|
[
|
|
"runner", "run-otlp-target", "--case", "case.toml", "--fixture-generator", "fixture",
|
|
"--otelgen-bin", "otelgen", "--http-port", "10012", "--target-name", "candidate",
|
|
"--work-dir", str(root / "candidate"), "--output", str(root / "candidate" / "report.json"), "--http-timeout", "1",
|
|
],
|
|
[
|
|
"runner", "finalize-otlp", "--case", "case.toml", "--fixture-generator", "fixture",
|
|
"--base-result", str(root / "base" / "report.json"),
|
|
"--candidate-result", str(root / "candidate" / "report.json"),
|
|
"--output", str(root / "query-regression-report.json"),
|
|
],
|
|
]
|
|
self.assertEqual(commands, expected)
|
|
|
|
self.assertLess(events.index("stop:base:metasrv"), events.index("start:candidate:metasrv"))
|
|
|
|
|
|
if __name__ == "__main__":
|
|
unittest.main()
|