|
10 | 10 | import yaml
|
11 | 11 | from retry import retry
|
12 | 12 |
|
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) |
19 | 18 |
|
20 | 19 |
|
21 | 20 | def test_running_base_functionality(tt_cmd, tmpdir_with_cfg):
|
@@ -936,22 +935,35 @@ def test_start_interactive(tt_cmd, tmp_path):
|
936 | 935 | tmp_path /= "multi_inst_app"
|
937 | 936 | shutil.copytree(test_app_path_src, tmp_path)
|
938 | 937 |
|
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, [ |
942 | 948 | "multi_inst_app:router custom init file...",
|
943 | 949 | "multi_inst_app:router multi_inst_app:router",
|
944 | 950 | "multi_inst_app:master multi_inst_app:master",
|
945 | 951 | "multi_inst_app:replica multi_inst_app:replica",
|
946 | 952 | "multi_inst_app:stateboard unknown instance",
|
947 |
| - ) |
| 953 | + ]) |
| 954 | + |
948 | 955 | instance_process.send_signal(signal.SIGTERM)
|
949 |
| - pipe_wait_all( |
950 |
| - instance_process, |
| 956 | + |
| 957 | + wait_for_lines_in_output(instance_process.stdout, [ |
951 | 958 | "multi_inst_app:router stopped",
|
952 | 959 | "multi_inst_app:master stopped",
|
953 | 960 | "multi_inst_app:replica stopped",
|
954 | 961 | "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 |
0 commit comments