Skip to content

Commit 70c541c

Browse files
committed
draft revert old test_start_interactive
1 parent 21f3f17 commit 70c541c

File tree

2 files changed

+51
-15
lines changed

2 files changed

+51
-15
lines changed

test/integration/running/test_running.py

+27-15
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,11 @@
1010
import yaml
1111
from retry import retry
1212

13-
from utils import (ProcessTextPipe, config_name, control_socket,
14-
extract_status, initial_snap, initial_xlog,
15-
kill_child_process, lib_path, log_file, log_path, pid_file,
16-
pipe_wait_all, run_command_and_get_output, run_path,
17-
wait_file, wait_instance_start, wait_instance_stop,
18-
wait_string_in_file)
13+
from utils import (config_name, control_socket, extract_status, initial_snap,
14+
initial_xlog, kill_child_process, lib_path, log_file,
15+
log_path, pid_file, run_command_and_get_output, run_path,
16+
wait_file, wait_for_lines_in_output, wait_instance_start,
17+
wait_instance_stop, wait_string_in_file)
1918

2019

2120
def test_running_base_functionality(tt_cmd, tmpdir_with_cfg):
@@ -936,22 +935,35 @@ def test_start_interactive(tt_cmd, tmp_path):
936935
tmp_path /= "multi_inst_app"
937936
shutil.copytree(test_app_path_src, tmp_path)
938937

939-
with ProcessTextPipe((tt_cmd, "start", "-i"), tmp_path) as instance_process:
940-
pipe_wait_all(
941-
instance_process,
938+
start_cmd = [tt_cmd, "start", "-i"]
939+
instance_process = subprocess.Popen(
940+
start_cmd,
941+
cwd=tmp_path,
942+
stderr=subprocess.STDOUT,
943+
stdout=subprocess.PIPE,
944+
text=True
945+
)
946+
try:
947+
wait_for_lines_in_output(instance_process.stdout, [
942948
"multi_inst_app:router custom init file...",
943949
"multi_inst_app:router multi_inst_app:router",
944950
"multi_inst_app:master multi_inst_app:master",
945951
"multi_inst_app:replica multi_inst_app:replica",
946952
"multi_inst_app:stateboard unknown instance",
947-
)
953+
])
954+
948955
instance_process.send_signal(signal.SIGTERM)
949-
pipe_wait_all(
950-
instance_process,
956+
957+
wait_for_lines_in_output(instance_process.stdout, [
951958
"multi_inst_app:router stopped",
952959
"multi_inst_app:master stopped",
953960
"multi_inst_app:replica stopped",
954961
"multi_inst_app:stateboard stopped",
955-
line_timeout=5
956-
)
957-
assert instance_process.Stop(tt_cmd, "stop", "--yes", timeout=5) == 0
962+
])
963+
964+
# Make sure no log dir created.
965+
assert not (tmp_path / "var" / "log").exists()
966+
967+
finally:
968+
run_command_and_get_output([tt_cmd, "stop", "--yes"], cwd=tmp_path)
969+
assert instance_process.wait(5) == 0

test/utils.py

+24
Original file line numberDiff line numberDiff line change
@@ -557,6 +557,30 @@ def wait_string_in_file(file, text):
557557
assert found
558558

559559

560+
def wait_for_lines_in_output(stdout, expected_lines: list):
561+
output = ""
562+
retries = 10
563+
while True:
564+
line = stdout.readline()
565+
if line == "":
566+
if retries == 0:
567+
break
568+
time.sleep(0.2)
569+
retries -= 1
570+
else:
571+
retries = 10
572+
output += line
573+
for expected in expected_lines:
574+
if expected in line:
575+
expected_lines.remove(expected)
576+
break
577+
578+
if len(expected_lines) == 0:
579+
break
580+
581+
return output
582+
583+
560584
class ProcessTextPipe(subprocess.Popen):
561585
__cwd: str | Path
562586

0 commit comments

Comments
 (0)