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
27 #include "allocator.h"
29 #include "job_queue.h"
30 #include "event_queue.h"
31 #include "send_queue.h"
33 #include "tests/linked_list_test.h"
34 #include "tests/thread_pool_test.h"
35 #include "tests/job_queue_test.h"
36 #include "tests/event_queue_test.h"
37 #include "tests/send_queue_test.h"
38 #include "tests/socket_test.h"
39 #include "tests/sender_test.h"
40 #include "tests/scheduler_test.h"
41 #include "tests/receiver_test.h"
42 #include "tests/ike_sa_id_test.h"
43 #include "tests/ike_sa_test.h"
44 #include "tests/ike_sa_manager_test.h"
45 #include "tests/generator_test.h"
46 #include "tests/parser_test.h"
47 #include "tests/packet_test.h"
50 /* output for test messages */
54 * Test for linked_list_t
56 test_t linked_list_test
= {test_linked_list
,"Linked List"};
59 * Test for linked_list_t with iterator
61 test_t linked_list_iterator_test
= {test_linked_list_iterator
,"Linked List Iterator"};
64 * Test for linked_list_t insert and remove
66 test_t linked_list_insert_and_remove_test
= {test_linked_list_insert_and_remove
,"Linked List Insert and remove"};
69 * Test for event_queue_t
71 test_t event_queue_test
= {test_event_queue
,"Event-Queue"};
74 * Test 1 for job_queue_t
76 test_t job_queue_test1
= {test_job_queue
,"Job-Queue"};
79 * Test 1 for linked_list_t
81 test_t send_queue_test
= {test_send_queue
,"Send-Queue"};
86 test_t socket_test
= {test_socket
,"Socket"};
89 * Test for thread_pool_t
91 test_t thread_pool_test
= {test_thread_pool
,"Thread Pool"};
96 test_t sender_test
= {test_sender
,"Sender"};
99 * Test for scheduler_t
101 test_t scheduler_test
= {test_scheduler
,"Scheduler"};
104 * Test for receiver_t
106 test_t receiver_test
= {test_receiver
,"Receiver"};
109 * Test for ike_sa_id_t
111 test_t ike_sa_id_test
= {test_ike_sa_id
,"IKE_SA-Identifier"};
116 test_t ike_sa_test
= {test_ike_sa
,"IKE_SA"};
120 * Test for ike_sa_manager_t
122 test_t ike_sa_manager_test
= {test_ike_sa_manager
, "IKE_SA-Manager"};
125 * Test for generator_t
127 test_t generator_test1
= {test_generator_with_unsupported_payload
,"Generator: unsupported payload"};
130 * Test 2 for generator_t
132 test_t generator_test2
= {test_generator_with_header_payload
,"Generator: header payload"};
135 * Test 2 for generator_t
137 test_t parser_test
= {test_parser_with_header_payload
, "Parser: header payload"};
143 test_t packet_test
= {test_packet
,"Packet"};
149 job_queue_t
*global_job_queue
;
154 event_queue_t
*global_event_queue
;
159 send_queue_t
*global_send_queue
;
164 socket_t
*global_socket
;
170 logger_t
*global_logger
;
174 FILE * test_output
= stderr
;
176 test_t
*all_tests
[] ={
178 &linked_list_iterator_test
,
179 &linked_list_insert_and_remove_test
,
193 &ike_sa_manager_test
,
197 global_logger
= logger_create("Tester",ALL
);
199 global_socket
= socket_create(4600);
201 global_job_queue
= job_queue_create();
202 global_event_queue
= event_queue_create();
203 global_send_queue
= send_queue_create();
207 tester_t
*tester
= tester_create(test_output
, FALSE
);
209 tester
->perform_tests(tester
,all_tests
);
210 /*tester->perform_test(tester,&parser_test); */
212 tester
->destroy(tester
);
215 /* Destroy all queues */
216 global_job_queue
->destroy(global_job_queue
);
217 global_event_queue
->destroy(global_event_queue
);
218 global_send_queue
->destroy(global_send_queue
);
220 global_socket
->destroy(global_socket
);
222 global_logger
->destroy(global_logger
);
224 #ifdef LEAK_DETECTIVE
225 /* Leaks are reported on stderr */
226 report_memory_leaks(void);