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/generator_test.h"
46 /* output for test messages */
50 * Test for linked_list_t
52 test_t linked_list_test
= {test_linked_list
,"Linked List"};
55 * Test for linked_list_t with iterator
57 test_t linked_list_iterator_test
= {test_linked_list_iterator
,"Linked List Iterator"};
60 * Test for linked_list_t insert and remove
62 test_t linked_list_insert_and_remove_test
= {test_linked_list_insert_and_remove
,"Linked List Insert and remove"};
65 * Test for event_queue_t
67 test_t event_queue_test
= {test_event_queue
,"Event-Queue"};
70 * Test 1 for job_queue_t
72 test_t job_queue_test1
= {test_job_queue
,"Job-Queue"};
75 * Test 1 for linked_list_t
77 test_t send_queue_test
= {test_send_queue
,"Send-Queue"};
82 test_t socket_test
= {test_socket
,"Socket"};
85 * Test for thread_pool_t
87 test_t thread_pool_test
= {test_thread_pool
,"Thread Pool"};
92 test_t sender_test
= {test_sender
,"Sender"};
95 * Test for scheduler_t
97 test_t scheduler_test
= {test_scheduler
,"Scheduler"};
100 * Test for receiver_t
102 test_t receiver_test
= {test_receiver
,"Receiver"};
105 * Test for ike_sa_id_t
107 test_t ike_sa_id_test
= {test_ike_sa_id
,"IKE_SA-Identifier"};
112 test_t ike_sa_test
= {test_ike_sa
,"IKE_SA"};
116 * Test for generator_t
118 test_t generator_test
= {test_generator_with_unsupported_payload
,"Generator: unsupported payload"};
123 job_queue_t
*global_job_queue
;
128 event_queue_t
*global_event_queue
;
133 send_queue_t
*global_send_queue
;
138 socket_t
*global_socket
;
142 FILE * test_output
= stderr
;
144 test_t
*all_tests
[] ={
146 &linked_list_iterator_test
,
147 &linked_list_insert_and_remove_test
,
162 global_socket
= socket_create(4600);
164 global_job_queue
= job_queue_create();
165 global_event_queue
= event_queue_create();
166 global_send_queue
= send_queue_create();
168 tester_t
*tester
= tester_create(test_output
, FALSE
);
170 tester
->perform_tests(tester
,all_tests
);
171 /* tester->perform_test(tester,&scheduler_test); */
173 tester
->destroy(tester
);
175 /* Destroy all queues */
176 global_job_queue
->destroy(global_job_queue
);
177 global_event_queue
->destroy(global_event_queue
);
178 global_send_queue
->destroy(global_send_queue
);
180 global_socket
->destroy(global_socket
);
182 #ifdef LEAK_DETECTIVE
183 /* Leaks are reported on stderr */
184 report_memory_leaks();