2 * Copyright (c) 2011 David Goulet <david.goulet@polymtl.ca>
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * as published by the Free Software Foundation; only version 2
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
14 * You should have received a copy of the GNU General Public License along
15 * with this program; if not, write to the Free Software Foundation, Inc.,
16 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
26 #include <sys/types.h>
31 #include <bin/lttng-sessiond/session.h>
32 #include <bin/lttng-sessiond/ust-app.h>
33 #include <bin/lttng-sessiond/ht-cleanup.h>
34 #include <bin/lttng-sessiond/health-sessiond.h>
35 #include <common/sessiond-comm/sessiond-comm.h>
36 #include <common/common.h>
38 #define SESSION1 "test1"
40 #define MAX_SESSIONS 10000
41 #define RANDOM_STRING_LEN 11
43 /* Number of TAP tests in this file */
46 struct health_app
*health_sessiond
;
47 static struct ltt_session_list
*session_list
;
48 static pthread_t ht_cleanup_thread
;
51 int lttng_opt_quiet
= 1;
52 int lttng_opt_verbose
= 0;
55 int ust_consumerd32_fd
;
56 int ust_consumerd64_fd
;
58 static const char alphanum
[] =
60 "ABCDEFGHIJKLMNOPQRSTUVWXYZ"
61 "abcdefghijklmnopqrstuvwxyz";
62 static char random_string
[RANDOM_STRING_LEN
];
65 * Return random string of 10 characters.
68 static char *get_random_string(void)
72 for (i
= 0; i
< RANDOM_STRING_LEN
- 1; i
++) {
73 random_string
[i
] = alphanum
[rand() % (sizeof(alphanum
) - 1)];
76 random_string
[RANDOM_STRING_LEN
- 1] = '\0';
82 * Return 0 if session name is found, else -1
84 static int find_session_name(char *name
)
86 struct ltt_session
*iter
;
88 cds_list_for_each_entry(iter
, &session_list
->head
, list
) {
89 if (strcmp(iter
->name
, name
) == 0) {
97 static int session_list_count(void)
100 struct ltt_session
*iter
;
102 cds_list_for_each_entry(iter
, &session_list
->head
, list
) {
109 * Empty session list manually.
111 static void empty_session_list(void)
113 struct ltt_session
*iter
, *tmp
;
115 cds_list_for_each_entry_safe(iter
, tmp
, &session_list
->head
, list
) {
116 session_destroy(iter
);
119 /* Session list must be 0 */
120 assert(!session_list_count());
124 * Test creation of 1 session
126 static int create_one_session(char *name
)
130 ret
= session_create(name
, geteuid(), getegid());
131 if (ret
== LTTNG_OK
) {
133 ret
= find_session_name(name
);
135 /* Session not found by name */
136 printf("session not found after creation\n");
143 if (ret
== LTTNG_ERR_EXIST_SESS
) {
144 printf("(session already exists) ");
153 * Test deletion of 1 session
155 static int destroy_one_session(struct ltt_session
*session
)
158 char session_name
[NAME_MAX
];
160 strncpy(session_name
, session
->name
, sizeof(session
->name
));
161 session_name
[sizeof(session_name
) - 1] = '\0';
163 ret
= session_destroy(session
);
164 if (ret
== LTTNG_OK
) {
165 ret
= find_session_name(session_name
);
167 /* Success, -1 means that the sesion is NOT found */
179 * This test is supposed to fail at the second create call. If so, return 0 for
180 * test success, else -1.
182 static int two_session_same_name(void)
185 struct ltt_session
*sess
;
187 ret
= create_one_session(SESSION1
);
193 sess
= session_find_by_name(SESSION1
);
203 void test_session_list(void)
205 session_list
= session_get_list();
206 ok(session_list
!= NULL
, "Session list: not NULL");
209 void test_create_one_session(void)
211 ok(create_one_session(SESSION1
) == 0,
212 "Create session: %s",
216 void test_validate_session(void)
218 struct ltt_session
*tmp
;
220 tmp
= session_find_by_name(SESSION1
);
223 "Validating session: session found");
225 ok(tmp
->kernel_session
== NULL
&&
227 "Validating session: basic sanity check");
233 void test_destroy_session(void)
235 struct ltt_session
*tmp
;
237 tmp
= session_find_by_name(SESSION1
);
240 "Destroying session: session found");
242 ok(destroy_one_session(tmp
) == 0,
243 "Destroying session: %s destroyed",
247 void test_duplicate_session(void)
249 ok(two_session_same_name() == 0,
250 "Duplicate session creation");
253 void test_bogus_session_param(void)
255 ok(create_one_session(NULL
) < 0,
256 "Create session with bogus param: NULL should fail");
258 ok(session_list_count() == 0,
259 "Create session with bogus param: session list empty");
262 void test_large_session_number(void)
264 int ret
, i
, failed
= 0;
265 struct ltt_session
*iter
, *tmp
;
267 for (i
= 0; i
< MAX_SESSIONS
; i
++) {
268 char *tmp_name
= get_random_string();
269 ret
= create_one_session(tmp_name
);
271 diag("session %d (name: %s) creation failed", i
, tmp_name
);
277 "Large sessions number: created %u sessions",
282 for (i
= 0; i
< MAX_SESSIONS
; i
++) {
283 cds_list_for_each_entry_safe(iter
, tmp
, &session_list
->head
, list
) {
284 ret
= destroy_one_session(iter
);
286 diag("session %d destroy failed", i
);
292 ok(failed
== 0 && session_list_count() == 0,
293 "Large sessions number: destroyed %u sessions",
297 int main(int argc
, char **argv
)
299 plan_tests(NUM_TESTS
);
301 health_sessiond
= health_app_create(NR_HEALTH_SESSIOND_TYPES
);
302 assert(!init_ht_cleanup_thread(&ht_cleanup_thread
));
304 diag("Sessions unit tests");
306 rcu_register_thread();
310 test_create_one_session();
312 test_validate_session();
314 test_destroy_session();
316 test_duplicate_session();
318 empty_session_list();
320 test_bogus_session_param();
322 test_large_session_number();
324 rcu_unregister_thread();
325 assert(!fini_ht_cleanup_thread(&ht_cleanup_thread
));
327 return exit_status();