123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288 |
- /*
- * Copyright (C) 2009 Mamadou Diop.
- *
- * Contact: Mamadou Diop <diopmamadou(at)doubango.org>
- *
- * This file is part of Open Source Doubango Framework.
- *
- * DOUBANGO is free software: you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation, either version 3 of the License, or
- * (at your option) any later version.
- *
- * DOUBANGO is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with DOUBANGO.
- *
- */
- #include "stdafx.h"
- #include <string.h>
- #include <stdlib.h>
- #include <assert.h>
- #include "tsk.h"
- #if defined(WIN32) || defined(_WIN32) || defined(_WIN32_WCE)
- # define strdup _strdup
- #endif
- #define LOOP 1
- #define RUN_TEST_ALL 0
- #define RUN_TEST_LISTS 1
- #define RUN_TEST_HEAP 0
- #define RUN_TEST_STRINGS 0
- #define RUN_TEST_URL 0
- #define RUN_TEST_THREADS 0
- #define RUN_TEST_MUTEX 0
- #define RUN_TEST_CONDWAIT 0
- #define RUN_TEST_SEMAPHORE 0
- #define RUN_TEST_SAFEOBJECT 0
- #define RUN_TEST_OBJECT 0
- #define RUN_TEST_PARAMS 0
- #define RUN_TEST_OPTIONS 0
- #define RUN_TEST_TIMER 0
- #define RUN_TEST_RUNNABLE 0
- #define RUN_TEST_BUFFER 0
- #define RUN_TEST_MD5 0
- #define RUN_TEST_SHA1 0
- #define RUN_TEST_BASE64 0
- #define RUN_TEST_UUID 0
- #define RUN_TEST_FSM 0
- #if RUN_TEST_LISTS || RUN_TEST_ALL
- #include "test_lists.h"
- #endif
- #if RUN_TEST_HEAP || RUN_TEST_ALL
- #include "test_heap.h"
- #endif
- #if RUN_TEST_STRINGS || RUN_TEST_ALL
- #include "test_strings.h"
- #endif
- #if RUN_TEST_URL || RUN_TEST_ALL
- #include "test_url.h"
- #endif
- #if RUN_TEST_THREADS || RUN_TEST_ALL
- #include "test_threads.h"
- #endif
- #if RUN_TEST_MUTEX || RUN_TEST_ALL
- #include "test_mutex.h"
- #endif
- #if RUN_TEST_CONDWAIT || RUN_TEST_ALL
- #include "test_condwait.h"
- #endif
- #if RUN_TEST_SEMAPHORE || RUN_TEST_ALL
- #include "test_semaphore.h"
- #endif
- #if RUN_TEST_SAFEOBJECT || RUN_TEST_ALL
- //#include "test_safeobject.h"
- #endif
- #if RUN_TEST_OBJECT || RUN_TEST_ALL
- #include "test_object.h"
- #endif
- #if RUN_TEST_PARAMS || RUN_TEST_ALL
- #include "test_params.h"
- #endif
- #if RUN_TEST_OPTIONS || RUN_TEST_ALL
- #include "test_options.h"
- #endif
- #if RUN_TEST_TIMER || RUN_TEST_ALL
- #include "test_timer.h"
- #endif
- #if RUN_TEST_RUNNABLE || RUN_TEST_ALL
- #include "test_runnable.h"
- #endif
- #if RUN_TEST_BUFFER || RUN_TEST_ALL
- #include "test_buffer.h"
- #endif
- #if RUN_TEST_MD5 || RUN_TEST_ALL
- #include "test_md5.h"
- #endif
- #if RUN_TEST_SHA1 || RUN_TEST_ALL
- #include "test_sha1.h"
- #endif
- #if RUN_TEST_BASE64 || RUN_TEST_ALL
- #include "test_base64.h"
- #endif
- #if RUN_TEST_UUID || RUN_TEST_ALL
- #include "test_uuid.h"
- #endif
- #if RUN_TEST_FSM || RUN_TEST_ALL
- #include "test_fsm.h"
- #endif
- #ifdef _WIN32_WCE
- int _tmain(int argc, _TCHAR* argv[])
- #else
- int main()
- #endif
- {
- do {
- int y, x;
- for(y = 0; y < 16; ++y) {
- printf("{");
- for(x = 0; x < 16; ++x) {
- printf("%d, ", (2 * ( y / 8 ) + ( x / 8 )));
- }
- printf("}\n");
- }
- /* Print copyright information */
- printf("Doubango Project\nCopyright (C) 2009 Mamadou Diop \n\n");
- #if RUN_TEST_LISTS || RUN_TEST_ALL
- /* linked lists */
- test_basic_list();
- printf("\n\n");
- test_complex_list();
- printf("\n\n");
- test_filtered_list();
- printf("\n\n");
- #endif
- #if RUN_TEST_HEAP || RUN_TEST_ALL
- /* heap */
- test_heap();
- printf("\n\n");
- #endif
- #if RUN_TEST_STRINGS || RUN_TEST_ALL
- /* strings */
- test_strings();
- printf("\n\n");
- #endif
- #if RUN_TEST_URL || RUN_TEST_ALL
- /* url */
- test_url();
- printf("\n\n");
- #endif
- #if RUN_TEST_THREADS || RUN_TEST_ALL
- /* threads */
- test_threads();
- printf("\n\n");
- #endif
- #if RUN_TEST_MUTEX || RUN_TEST_ALL
- /* mutex */
- test_mutex();
- printf("\n\n");
- #endif
- #if RUN_TEST_CONDWAIT || RUN_TEST_ALL
- /* condwait */
- test_condwait();
- printf("\n\n");
- #endif
- #if RUN_TEST_SEMAPHORE || RUN_TEST_ALL
- /* semaphore */
- test_semaphore();
- printf("\n\n");
- #endif
- #if RUN_TEST_SAFEOBJECT || RUN_TEST_ALL
- /* safe object */
- //test_safeobject();
- printf("\n\n");
- #endif
- #if RUN_TEST_OBJECT || RUN_TEST_ALL
- /* object */
- //test_object();
- printf("\n\n");
- #endif
- #if RUN_TEST_PARAMS || RUN_TEST_ALL
- /* parameters */
- test_params();
- printf("\n\n");
- #endif
- #if RUN_TEST_OPTIONS || RUN_TEST_ALL
- /* options */
- test_options();
- printf("\n\n");
- #endif
- #if RUN_TEST_TIMER || RUN_TEST_ALL
- /* timer */
- test_timer();
- printf("\n\n");
- #endif
- #if RUN_TEST_RUNNABLE || RUN_TEST_ALL
- /* test runnable. */
- test_runnable();
- printf("\n\n");
- #endif
- #if RUN_TEST_BUFFER || RUN_TEST_ALL
- /* test buffer */
- test_buffer();
- #endif
- #if RUN_TEST_MD5 || RUN_TEST_ALL
- /* test md5 and hmac_md5 */
- test_md5();
- test_hmac_md5();
- #endif
- #if RUN_TEST_SHA1 || RUN_TEST_ALL
- /* test sha1 and hmac_sha-1 */
- test_sha1();
- test_hmac_sha1();
- #endif
- #if RUN_TEST_BASE64 || RUN_TEST_ALL
- /* test base64 encoding/decoding */
- test_base64();
- #endif
- #if RUN_TEST_UUID || RUN_TEST_ALL
- /* test fake UUID (version5) */
- test_uuid();
- #endif
- #if RUN_TEST_FSM || RUN_TEST_ALL
- /* test FSM */
- test_fsm();
- #endif
- }
- while(LOOP);
- getchar();
- return 0;
- }
|