Tests: adjust type declaration test count
[lttng-tools.git] / tests / regression / ust / type-declarations / test_type_declarations.py
CommitLineData
10b56aef
MD
1#!/usr/bin/env python3
2#
3# Copyright (C) - 2014 Geneviève Bastien <gbastien@versatic.net>
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
4881bba8 32NR_TESTS = 10
10b56aef
MD
33current_test = 1
34print("1..{0}".format(NR_TESTS))
35
36# Check if a sessiond is running... bail out if none found.
37if session_daemon_alive() == 0:
38 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.")
39
40session_info = create_session()
41enable_ust_tracepoint_event(session_info, "ust_tests_td*")
42start_session(session_info)
43
44test_env = os.environ.copy()
45test_env["LTTNG_UST_REGISTER_TIMEOUT"] = "-1"
46
47td_process = subprocess.Popen(test_path + "type-declarations", stdout=subprocess.PIPE, stderr=subprocess.PIPE, env=test_env)
b6e2447a 48td_process.wait()
10b56aef
MD
49
50print_test_result(td_process.returncode == 0, current_test, "Test application exited normally")
51current_test += 1
52
53stop_session(session_info)
54
55# Check event fields using type declarations are present
56try:
57 babeltrace_process = subprocess.Popen(["babeltrace", session_info.trace_path], stdout=subprocess.PIPE, stderr=subprocess.PIPE)
58except FileNotFoundError:
59 bail("Could not open babeltrace. Please make sure it is installed.")
60
61event_lines = []
62for event_line in babeltrace_process.stdout:
63 event_line = event_line.decode('utf-8').replace("\n", "")
64 event_lines.append(event_line)
65babeltrace_process.wait()
66
67print_test_result(babeltrace_process.returncode == 0, current_test, "Resulting trace is readable")
68current_test += 1
69
70if babeltrace_process.returncode != 0:
71 bail("Unreadable trace; can't proceed with analysis.")
72
358f4691 73print_test_result(len(event_lines) == 5, current_test, "Correct number of events found in resulting trace")
10b56aef
MD
74current_test += 1
75
358f4691 76if len(event_lines) != 5:
10b56aef
MD
77 bail("Unexpected number of events found in resulting trace (" + session_info.trace_path + ")." )
78
79match = re.search(r".*ust_tests_td:(.*):.*enumfield = \( \"(.*)\" :.*enumfield_bis = \( \"(.*)\" :.*enumfield_third = .*:.*", event_lines[0])
80print_test_result(match is not None and match.group(1) == "tptest", current_test,\
81 "First tracepoint is present")
82current_test += 1
83
84print_test_result(match is not None and match.group(2) == "zero", current_test,\
85 "First tracepoint's enum value maps to zero")
86current_test += 1
87
88print_test_result(match is not None and match.group(3) == "one", current_test,\
89 "First tracepoint's second enum value maps to one")
90current_test += 1
91
92match = re.search(r".*ust_tests_td:(.*):.*enumfield = \( \"(.*)\" :.*", event_lines[1])
93print_test_result(match is not None and match.group(1) == "tptest_bis", current_test,\
94 "Second tracepoint is present")
95current_test += 1
96
97print_test_result(match is not None and match.group(2) == "zero", current_test,\
98 "Second tracepoint's enum value maps to zero")
99current_test += 1
100
101match = re.search(r".*ust_tests_td:(.*):.*enumfield = \( \"(.*)\" :.*enumfield_bis = \( \"(.*)\" .*", event_lines[2])
102
103print_test_result(match is not None and match.group(2) == "one", current_test,\
104 "Third tracepoint's enum value maps to one")
358f4691
PP
105current_test += 1
106
107print_test_result('{ zero = ( "zero" : container = 0 ), two = ( "two" : container = 2 ), three = ( "three" : container = 3 ), fifteen = ( "ten_to_twenty" : container = 15 ), twenty_one = ( "twenty_one" : container = 21 ) }' in event_lines[4],
108 current_test, 'Auto-incrementing enum values are correct')
10b56aef
MD
109
110shutil.rmtree(session_info.tmp_directory)
This page took 0.030715 seconds and 5 git commands to generate.