4 * @brief Main for all tests
9 * Copyright (C) 2005 Jan Hutter, Martin Willi
10 * Hochschule fuer Technik Rapperswil
12 * This program is free software; you can redistribute it and/or modify it
13 * under the terms of the GNU General Public License as published by the
14 * Free Software Foundation; either version 2 of the License, or (at your
15 * option) any later version. See <http://www.fsf.org/copyleft/gpl.txt>.
17 * This program is distributed in the hope that it will be useful, but
18 * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
19 * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
26 #include "allocator.h"
28 #include "job_queue.h"
29 #include "event_queue.h"
30 #include "send_queue.h"
32 #include "tests/linked_list_test.h"
33 #include "tests/thread_pool_test.h"
34 #include "tests/job_queue_test.h"
35 #include "tests/event_queue_test.h"
36 #include "tests/send_queue_test.h"
37 #include "tests/socket_test.h"
38 #include "tests/sender_test.h"
39 #include "tests/scheduler_test.h"
40 #include "tests/receiver_test.h"
41 #include "tests/ike_sa_id_test.h"
42 #include "tests/ike_sa_test.h"
43 #include "tests/ike_sa_manager_test.h"
44 #include "tests/generator_test.h"
47 /* output for test messages */
51 * Test for linked_list_t
53 test_t linked_list_test
= {test_linked_list
,"Linked List"};
56 * Test for linked_list_t with iterator
58 test_t linked_list_iterator_test
= {test_linked_list_iterator
,"Linked List Iterator"};
61 * Test for linked_list_t insert and remove
63 test_t linked_list_insert_and_remove_test
= {test_linked_list_insert_and_remove
,"Linked List Insert and remove"};
66 * Test for event_queue_t
68 test_t event_queue_test
= {test_event_queue
,"Event-Queue"};
71 * Test 1 for job_queue_t
73 test_t job_queue_test1
= {test_job_queue
,"Job-Queue"};
76 * Test 1 for linked_list_t
78 test_t send_queue_test
= {test_send_queue
,"Send-Queue"};
83 test_t socket_test
= {test_socket
,"Socket"};
86 * Test for thread_pool_t
88 test_t thread_pool_test
= {test_thread_pool
,"Thread Pool"};
93 test_t sender_test
= {test_sender
,"Sender"};
96 * Test for scheduler_t
98 test_t scheduler_test
= {test_scheduler
,"Scheduler"};
101 * Test for receiver_t
103 test_t receiver_test
= {test_receiver
,"Receiver"};
106 * Test for ike_sa_id_t
108 test_t ike_sa_id_test
= {test_ike_sa_id
,"IKE_SA-Identifier"};
113 test_t ike_sa_test
= {test_ike_sa
,"IKE_SA"};
117 * Test for ike_sa_manager_t
119 test_t ike_sa_manager_test
= {test_ike_sa_manager
, "IKE_SA-Manager"};
122 * Test for generator_t
124 test_t generator_test1
= {test_generator_with_unsupported_payload
,"Generator: unsupported payload"};
127 * Test 2 for generator_t
129 test_t generator_test2
= {test_generator_with_header_payload
,"Generator: header payload"};
134 job_queue_t
*global_job_queue
;
139 event_queue_t
*global_event_queue
;
144 send_queue_t
*global_send_queue
;
149 socket_t
*global_socket
;
153 FILE * test_output
= stderr
;
155 test_t
*all_tests
[] ={
157 &linked_list_iterator_test
,
158 &linked_list_insert_and_remove_test
,
171 &ike_sa_manager_test
,
175 global_socket
= socket_create(4600);
177 global_job_queue
= job_queue_create();
178 global_event_queue
= event_queue_create();
179 global_send_queue
= send_queue_create();
181 tester_t
*tester
= tester_create(test_output
, FALSE
);
183 /*tester->perform_tests(tester,all_tests);*/
184 tester
->perform_test(tester
,&generator_test2
);
186 tester
->destroy(tester
);
188 /* Destroy all queues */
189 global_job_queue
->destroy(global_job_queue
);
190 global_event_queue
->destroy(global_event_queue
);
191 global_send_queue
->destroy(global_send_queue
);
193 global_socket
->destroy(global_socket
);
195 #ifdef LEAK_DETECTIVE
196 /* Leaks are reported on stderr */
197 report_memory_leaks();