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.
27 #include <sys/types.h>
31 #include <bin/lttng-sessiond/session.h>
32 #include <bin/lttng-sessiond/ust-app.h>
33 #include <common/sessiond-comm/sessiond-comm.h>
34 #include <common/common.h>
36 #define SESSION1 "test1"
38 #define MAX_SESSIONS 10000
39 #define RANDOM_STRING_LEN 11
41 /* Number of TAP tests in this file */
44 static struct ltt_session_list
*session_list
;
47 int lttng_opt_quiet
= 1;
48 int lttng_opt_verbose
= 0;
50 int ust_consumerd32_fd
;
51 int ust_consumerd64_fd
;
53 static const char alphanum
[] =
55 "ABCDEFGHIJKLMNOPQRSTUVWXYZ"
56 "abcdefghijklmnopqrstuvwxyz";
57 static char random_string
[RANDOM_STRING_LEN
];
60 * Return random string of 10 characters.
63 static char *get_random_string(void)
67 for (i
= 0; i
< RANDOM_STRING_LEN
- 1; i
++) {
68 random_string
[i
] = alphanum
[rand() % (sizeof(alphanum
) - 1)];
71 random_string
[RANDOM_STRING_LEN
- 1] = '\0';
77 * Return 0 if session name is found, else -1
79 static int find_session_name(char *name
)
81 struct ltt_session
*iter
;
83 cds_list_for_each_entry(iter
, &session_list
->head
, list
) {
84 if (strcmp(iter
->name
, name
) == 0) {
92 static int session_list_count(void)
95 struct ltt_session
*iter
;
97 cds_list_for_each_entry(iter
, &session_list
->head
, list
) {
104 * Empty session list manually.
106 static void empty_session_list(void)
108 struct ltt_session
*iter
, *tmp
;
110 cds_list_for_each_entry_safe(iter
, tmp
, &session_list
->head
, list
) {
111 cds_list_del(&iter
->list
);
115 /* Session list must be 0 */
116 assert(!session_list_count());
120 * Test creation of 1 session
122 static int create_one_session(char *name
)
126 ret
= session_create(name
, geteuid(), getegid());
127 if (ret
== LTTNG_OK
) {
129 ret
= find_session_name(name
);
131 /* Session not found by name */
132 printf("session not found after creation\n");
139 if (ret
== LTTNG_ERR_EXIST_SESS
) {
140 printf("(session already exists) ");
149 * Test deletion of 1 session
151 static int destroy_one_session(struct ltt_session
*session
)
154 char session_name
[NAME_MAX
];
156 strncpy(session_name
, session
->name
, sizeof(session
->name
));
157 session_name
[sizeof(session_name
) - 1] = '\0';
159 ret
= session_destroy(session
);
160 if (ret
== LTTNG_OK
) {
161 ret
= find_session_name(session_name
);
163 /* Success, -1 means that the sesion is NOT found */
175 * This test is supposed to fail at the second create call. If so, return 0 for
176 * test success, else -1.
178 static int two_session_same_name(void)
181 struct ltt_session
*sess
;
183 ret
= create_one_session(SESSION1
);
189 sess
= session_find_by_name(SESSION1
);
199 void test_session_list(void)
201 session_list
= session_get_list();
202 ok(session_list
!= NULL
, "Session list: not NULL");
205 void test_create_one_session(void)
207 ok(create_one_session(SESSION1
) == 0,
208 "Create session: %s",
212 void test_validate_session(void)
214 struct ltt_session
*tmp
;
216 tmp
= session_find_by_name(SESSION1
);
219 "Validating session: session found");
221 ok(tmp
->kernel_session
== NULL
&&
223 "Validating session: basic sanity check");
229 void test_destroy_session(void)
231 struct ltt_session
*tmp
;
233 tmp
= session_find_by_name(SESSION1
);
236 "Destroying session: session found");
238 ok(destroy_one_session(tmp
) == 0,
239 "Destroying session: %s destroyed",
243 void test_duplicate_session(void)
245 ok(two_session_same_name() == 0,
246 "Duplicate session creation");
249 void test_bogus_session_param(void)
251 ok(create_one_session(NULL
) < 0,
252 "Create session with bogus param: NULL should fail");
254 ok(session_list_count() == 0,
255 "Create session with bogus param: session list empty");
258 void test_large_session_number(void)
260 int ret
, i
, failed
= 0;
261 struct ltt_session
*iter
, *tmp
;
263 for (i
= 0; i
< MAX_SESSIONS
; i
++) {
264 char *tmp_name
= get_random_string();
265 ret
= create_one_session(tmp_name
);
267 diag("session %d (name: %s) creation failed", i
, tmp_name
);
273 "Large sessions number: created %u sessions",
278 for (i
= 0; i
< MAX_SESSIONS
; i
++) {
279 cds_list_for_each_entry_safe(iter
, tmp
, &session_list
->head
, list
) {
280 ret
= destroy_one_session(iter
);
282 diag("session %d destroy failed", i
);
288 ok(failed
== 0 && session_list_count() == 0,
289 "Large sessions number: destroyed %u sessions",
293 int main(int argc
, char **argv
)
295 plan_tests(NUM_TESTS
);
297 diag("Sessions unit tests");
301 test_create_one_session();
303 test_validate_session();
305 test_destroy_session();
307 test_duplicate_session();
309 empty_session_list();
311 test_bogus_session_param();
313 test_large_session_number();
315 return exit_status();
This page took 0.035624 seconds and 4 git commands to generate.