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 <queues/job_queue.h>
27 #include <queues/event_queue.h>
28 #include <queues/send_queue.h>
29 #include <config/configuration_manager.h>
30 #include <sa/ike_sa_manager.h>
31 #include <network/socket.h>
32 #include <utils/logger_manager.h>
33 #include <utils/allocator.h>
34 #include <utils/tester.h>
35 #include <testcases/linked_list_test.h>
36 #include <testcases/thread_pool_test.h>
37 #include <testcases/job_queue_test.h>
38 #include <testcases/event_queue_test.h>
39 #include <testcases/send_queue_test.h>
40 #include <testcases/socket_test.h>
41 #include <testcases/sender_test.h>
42 #include <testcases/scheduler_test.h>
43 #include <testcases/receiver_test.h>
44 #include <testcases/ike_sa_id_test.h>
45 #include <testcases/ike_sa_test.h>
46 #include <testcases/ike_sa_manager_test.h>
47 #include <testcases/generator_test.h>
48 #include <testcases/parser_test.h>
49 #include <testcases/packet_test.h>
50 #include <testcases/diffie_hellman_test.h>
51 #include <testcases/hasher_test.h>
52 #include <testcases/hmac_test.h>
53 #include <testcases/prf_plus_test.h>
54 #include <testcases/aes_cbc_crypter_test.h>
55 #include <testcases/hmac_signer_test.h>
57 /* output for test messages */
61 * Test for linked_list_t
63 test_t linked_list_test
= {test_linked_list
,"Linked List"};
66 * Test for linked_list_t with iterator
68 test_t iterator_test
= {test_linked_list_iterator
,"Linked List Iterator"};
71 * Test for linked_list_t insert and remove
73 test_t linked_list_insert_and_remove_test
= {test_linked_list_insert_and_remove
,"Linked List Insert and remove"};
76 * Test for event_queue_t
78 test_t event_queue_test
= {test_event_queue
,"Event-Queue"};
81 * Test 1 for job_queue_t
83 test_t job_queue_test1
= {test_job_queue
,"Job-Queue"};
86 * Test 1 for linked_list_t
88 test_t send_queue_test
= {test_send_queue
,"Send-Queue"};
93 test_t socket_test
= {test_socket
,"Socket"};
96 * Test for thread_pool_t
98 test_t thread_pool_test
= {test_thread_pool
,"Thread Pool"};
103 test_t sender_test
= {test_sender
,"Sender"};
106 * Test for scheduler_t
108 test_t scheduler_test
= {test_scheduler
,"Scheduler"};
111 * Test for receiver_t
113 test_t receiver_test
= {test_receiver
,"Receiver"};
116 * Test for ike_sa_id_t
118 test_t ike_sa_id_test
= {test_ike_sa_id
,"IKE_SA-Identifier"};
123 test_t ike_sa_test
= {test_ike_sa
,"IKE_SA"};
127 * Test for ike_sa_manager_t
129 test_t ike_sa_manager_test
= {test_ike_sa_manager
, "IKE_SA-Manager"};
131 test_t generator_test1
= {test_generator_with_header_payload
,"Generator: header payload"};
132 test_t generator_test2
= {test_generator_with_transform_attribute
,"Generator: transform attribute"};
133 test_t generator_test3
= {test_generator_with_transform_substructure
,"Generator: transform substructure"};
134 test_t generator_test4
= {test_generator_with_proposal_substructure
,"Generator: proposal substructure"};
135 test_t generator_test5
= {test_generator_with_sa_payload
,"Generator: Message with SA Payload"};
136 test_t generator_test6
= {test_generator_with_ke_payload
,"Generator: KE Payload"};
137 test_t generator_test7
= {test_generator_with_notify_payload
,"Generator: Notify Payload"};
138 test_t generator_test8
= {test_generator_with_nonce_payload
,"Generator: Nonce Payload"};
142 * Parser test for ike header
144 test_t parser_test1
= {test_parser_with_header_payload
, "Parser: header payload"};
148 * Parser test for ike security association
150 test_t parser_test2
= {test_parser_with_sa_payload
, "Parser: sa payload"};
153 * Parser test for ike nonce payload
155 test_t parser_test3
= {test_parser_with_nonce_payload
, "Parser: nonce payload"};
158 * Parser test for ike nonce payload
160 test_t parser_test4
= {test_parser_with_ke_payload
, "Parser: key exchange payload"};
163 * Parser test for ike notify payload
165 test_t parser_test5
= {test_parser_with_notify_payload
, "Parser: notify payload"};
171 test_t packet_test
= {test_packet
,"Packet"};
177 test_t diffie_hellman_test
= {test_diffie_hellman
,"Diffie Hellman"};
180 * Test for sha1 hasher
182 test_t sha1_hasher_test
= {test_sha1_hasher
,"SHA1 hasher"};
185 * Test for md5 hasher
187 test_t md5_hasher_test
= {test_md5_hasher
,"MD5 hasher"};
192 test_t hmac_test1
= {test_hmac_sha1
, "HMAC using SHA1"};
193 test_t hmac_test2
= {test_hmac_md5
, "HMAC using MD5"};
198 test_t prf_plus_test
= {test_prf_plus
, "prf+"};
201 * Test for AES CBC crypter
203 test_t aes_cbc_crypter_test
= {test_aes_cbc_crypter
, "AES CBC"};
206 * Test for hmac signer with MD5
208 test_t hmac_signer_test1
= {test_hmac_md5_signer
, "HMAC MD5 signer test"};
211 * Test for hmac signer with SHA1
213 test_t hmac_signer_test2
= {test_hmac_sha1_signer
, "HMAC SHA1 signer test"};
219 job_queue_t
*global_job_queue
;
224 event_queue_t
*global_event_queue
;
229 send_queue_t
*global_send_queue
;
232 * Global configuration_manager
234 configuration_manager_t
*global_configuration_manager
;
237 * Global configuration_manager
239 ike_sa_manager_t
*global_ike_sa_manager
;
244 socket_t
*global_socket
;
250 logger_manager_t
*global_logger_manager
;
254 FILE * test_output
= stderr
;
256 test_t
*all_tests
[] ={
259 &linked_list_insert_and_remove_test
,
283 &ike_sa_manager_test
,
285 &diffie_hellman_test
,
291 &aes_cbc_crypter_test
,
296 global_logger_manager
= logger_manager_create(0);
298 global_socket
= socket_create(4600);
300 global_job_queue
= job_queue_create();
301 global_event_queue
= event_queue_create();
302 global_send_queue
= send_queue_create();
303 global_configuration_manager
= configuration_manager_create();
304 global_ike_sa_manager
= ike_sa_manager_create();
306 global_logger_manager
->disable_logger_level(global_logger_manager
,TESTER
,FULL
);
307 //global_logger_manager->enable_logger_level(global_logger_manager,TESTER,RAW);
309 tester_t
*tester
= tester_create(test_output
, FALSE
);
312 tester
->perform_tests(tester
,all_tests
);
313 // tester->perform_test(tester,&hmac_signer_test2);
317 tester
->destroy(tester
);
321 global_configuration_manager
->destroy(global_configuration_manager
);
322 global_ike_sa_manager
->destroy(global_ike_sa_manager
);
324 /* Destroy all queues */
325 global_job_queue
->destroy(global_job_queue
);
326 global_event_queue
->destroy(global_event_queue
);
327 global_send_queue
->destroy(global_send_queue
);
329 global_socket
->destroy(global_socket
);
331 global_logger_manager
->destroy(global_logger_manager
);
333 #ifdef LEAK_DETECTIVE
334 /* Leaks are reported on stderr */
335 report_memory_leaks(void);