Refactor: test: wrapper for destroy_lttng_session
[lttng-tools.git] / tests / regression / ust / exit-fast / test_exit-fast.py
CommitLineData
ee28adfb
JG
1#!/usr/bin/env python3
2#
3# Copyright (C) - 2013 Jérémie Galarneau <jeremie.galarneau@efficios.com>
4#
5# This program is free software; you can redistribute it and/or modify it
6# under the terms of the GNU General Public License, version 2 only, as
7# published by the Free Software Foundation.
8#
9# This program is distributed in the hope that it will be useful, but WITHOUT
10# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
12# more details.
13#
14# You should have received a copy of the GNU General Public License along with
15# this program; if not, write to the Free Software Foundation, Inc., 51
16# Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
17
18import os
19import subprocess
20import re
21import shutil
22import sys
23
24test_path = os.path.dirname(os.path.abspath(__file__)) + "/"
25test_utils_path = test_path
26for i in range(4):
27 test_utils_path = os.path.dirname(test_utils_path)
28test_utils_path = test_utils_path + "/utils"
29sys.path.append(test_utils_path)
30from test_utils import *
31
32
33normal_exit_message = "exit-fast tracepoint normal exit"
34suicide_exit_message = "exit-fast tracepoint suicide"
35NR_TESTS = 5
36current_test = 1
37print("1..{0}".format(NR_TESTS))
38
39# Check if a sessiond is running... bail out if none found.
40if session_daemon_alive() == 0:
41 bail("No sessiond running. Please make sure you are running this test with the \"run\" shell script and verify that the lttng tools are properly installed.")
42
43session_info = create_session()
44enable_ust_tracepoint_event(session_info, "ust_tests_exitfast*")
45start_session(session_info)
46
47test_env = os.environ.copy()
48test_env["LTTNG_UST_REGISTER_TIMEOUT"] = "-1"
49
50exit_fast_process = subprocess.Popen(test_path + "exit-fast", stdout=subprocess.PIPE, stderr=subprocess.PIPE, env=test_env)
51
52if sys.version_info >= (3, 3):
53 try:
54 exit_fast_process.wait(5)
55 except TimeoutExpired:
56 exit_fast_process.kill()
57 bail("Failed to run exit-fast test application.")
58else:
59 exit_fast_process.wait()
60
61print_test_result(exit_fast_process.returncode == 0, current_test, "Test application exited normally")
62current_test += 1
63
64exit_fast_process = subprocess.Popen([test_path + "exit-fast", "suicide"], stdout=subprocess.PIPE, stderr=subprocess.PIPE, env=test_env)
65
66if sys.version_info >= (3, 3):
67 try:
68 exit_fast_process.wait(5)
69 except TimeoutExpired:
70 exit_fast_process.kill()
71 bail("Failed to run exit-fast test application in suicide mode.")
72else:
73 exit_fast_process.wait()
74
75stop_session(session_info)
76
77# Check both events (normal exit and suicide messages) are present in the resulting trace
78try:
79 babeltrace_process = subprocess.Popen(["babeltrace", session_info.trace_path], stdout=subprocess.PIPE, stderr=subprocess.PIPE)
80except FileNotFoundError:
81 bail("Could not open babeltrace. Please make sure it is installed.")
82
83event_lines = []
84for event_line in babeltrace_process.stdout:
85 event_line = event_line.decode('utf-8').replace("\n", "")
86 event_lines.append(event_line)
87babeltrace_process.wait()
88
89print_test_result(babeltrace_process.returncode == 0, current_test, "Resulting trace is readable")
90current_test += 1
91
92if babeltrace_process.returncode != 0:
93 bail("Unreadable trace; can't proceed with analysis.")
94
95print_test_result(len(event_lines) == 2, current_test, "Correct number of events found in resulting trace")
96current_test += 1
97
98if len(event_lines) != 2:
99 bail("Unexpected number of events found in resulting trace (" + session_info.trace_path + ")." )
100
101match = re.search(r".*message = \"(.*)\"", event_lines[0])
102print_test_result(match is not None and match.group(1) == normal_exit_message, current_test,\
103 "Tracepoint message generated during normal exit run is present in trace and has the expected value")
104current_test += 1
105
106match = re.search(r".*message = \"(.*)\"", event_lines[1])
107print_test_result(match is not None and match.group(1) == suicide_exit_message, current_test,\
108 "Tracepoint message generated during suicide run is present in trace and has the expected value")
109current_test += 1
110
111shutil.rmtree(session_info.tmp_directory)
This page took 0.029687 seconds and 4 git commands to generate.