test/main.c

Tue, 27 Oct 2015 15:29:34 +0100

author
Mike Becker <universe@uap-core.de>
date
Tue, 27 Oct 2015 15:29:34 +0100
changeset 214
2bc19726c340
parent 206
58b77eb51afd
child 223
e18884bbad48
permissions
-rw-r--r--

added sstrstr() function + improved sstrsplit variants by using sstrprefix()

     1 /*
     2  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
     3  *
     4  * Copyright 2015 Olaf Wintermann. All rights reserved.
     5  *
     6  * Redistribution and use in source and binary forms, with or without
     7  * modification, are permitted provided that the following conditions are met:
     8  *
     9  *   1. Redistributions of source code must retain the above copyright
    10  *      notice, this list of conditions and the following disclaimer.
    11  *
    12  *   2. Redistributions in binary form must reproduce the above copyright
    13  *      notice, this list of conditions and the following disclaimer in the
    14  *      documentation and/or other materials provided with the distribution.
    15  *
    16  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
    17  * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
    18  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
    19  * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
    20  * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
    21  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
    22  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
    23  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
    24  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
    25  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
    26  * POSSIBILITY OF SUCH DAMAGE.
    27  */
    29 #include <stdio.h>
    30 #include <stdlib.h>
    32 #include "ucx/test.h"
    34 #include "main.h"
    36 #include "allocator_tests.h"
    37 #include "logging_tests.h"
    38 #include "list_tests.h"
    39 #include "string_tests.h"
    40 #include "mpool_tests.h"
    41 #include "stack_tests.h"
    42 #include "map_tests.h"
    43 #include "prop_tests.h"
    44 #include "buffer_tests.h"
    45 #include "utils_tests.h"
    46 #include "avl_tests.h"
    48 UCX_EXTERN UCX_TEST(testTestSuitePositive) {
    49     UCX_TEST_BEGIN
    50     UCX_TEST_ASSERT(2*2 == 4, "the test framework fails");
    51     UCX_TEST_END
    52 }
    54 UCX_EXTERN UCX_TEST(testTestSuiteNegative) {
    55     UCX_TEST_BEGIN
    56     UCX_TEST_ASSERT(2*(-2) == 4, "the test framework works");
    57     UCX_TEST_END
    58 }
    60 UCX_EXTERN UCX_TEST_SUBROUTINE(testTestSuiteRoutineRoutine, float f) {
    61     UCX_TEST_ASSERT(f == 3.14f, "calling routine in a routine fails");
    62 }
    64 UCX_EXTERN UCX_TEST_SUBROUTINE(testTestSuiteRoutine2Param, int i, float f) {
    65     UCX_TEST_ASSERT(i == 42, "two parameter routine fails");
    66     UCX_TEST_CALL_SUBROUTINE(testTestSuiteRoutineRoutine, f);
    67 }
    69 UCX_EXTERN UCX_TEST_SUBROUTINE(testTestSuiteRoutineSuccess, int* i) {
    70     *i += 2;
    71     UCX_TEST_ASSERT(*i==4, "the test framework fails");
    72 }
    74 UCX_EXTERN UCX_TEST_SUBROUTINE(testTestSuiteRoutineFailure, int* i) {
    75     *i += 2;
    76     // Next test shall fail!
    77     UCX_TEST_ASSERT(*i==4, "the test framework works");
    78 }
    80 UCX_EXTERN UCX_TEST(testTestSuiteRoutinePositive) {
    81     int i = 2;
    82     UCX_TEST_BEGIN
    83     UCX_TEST_CALL_SUBROUTINE(testTestSuiteRoutineSuccess, &i);
    84     UCX_TEST_ASSERT(i==4, "the test framework fails");
    85     UCX_TEST_END
    86 }
    88 UCX_EXTERN UCX_TEST(testTestSuiteRoutineNegative) {
    89     int i = 0;
    90     UCX_TEST_BEGIN
    91     UCX_TEST_CALL_SUBROUTINE(testTestSuiteRoutineFailure, &i);
    92     UCX_TEST_ASSERT(1, "the test framework fails");
    93     UCX_TEST_END
    94 }
    96 UCX_EXTERN UCX_TEST(testTestSuiteRoutineMultiparam) {
    97     UCX_TEST_BEGIN
    98     UCX_TEST_CALL_SUBROUTINE(testTestSuiteRoutine2Param, 42, 3.14f);
    99     UCX_TEST_END
   100 }
   102 int main(int argc, char **argv) {
   103     printf("UCX Tests\n---------\n");
   105     printf("\nUcxTestSuite tests (2 failures are intended!)\n");
   106     UcxTestSuite* suite = ucx_test_suite_new();
   107     ucx_test_register(suite, testTestSuitePositive);
   108     ucx_test_register(suite, testTestSuiteNegative);
   109     ucx_test_register(suite, testTestSuiteRoutinePositive);
   110     ucx_test_register(suite, testTestSuiteRoutineNegative);
   111     ucx_test_register(suite, testTestSuiteRoutineMultiparam);
   112     ucx_test_run(suite, stdout);
   113     if (suite->failure == 2 && suite->success == 3) {
   114         ucx_test_suite_free(suite);
   116         printf("\nLibrary function tests\n");
   117         suite = ucx_test_suite_new();
   118         /* UcxAllocator Tests */
   119         ucx_test_register(suite, test_ucx_default_allocator);
   121         /* sstring Tests */
   122         ucx_test_register(suite, test_sstr);
   123         ucx_test_register(suite, test_sstr_len);
   124         ucx_test_register(suite, test_sstrcmp);
   125         ucx_test_register(suite, test_sstrcasecmp);
   126         ucx_test_register(suite, test_sstrcat);
   127         ucx_test_register(suite, test_sstrchr_sstrrchr);
   128         ucx_test_register(suite, test_sstrstr);
   129         ucx_test_register(suite, test_sstrsplit);
   130         ucx_test_register(suite, test_sstrtrim);
   131         ucx_test_register(suite, test_sstrprefixsuffix);
   133         /* UcxLogger Tests */
   134         ucx_test_register(suite, test_ucx_logger_new);
   135         ucx_test_register(suite, test_ucx_logger_log);
   137         /* UcxList Tests */
   138         ucx_test_register(suite, test_ucx_list_append);
   139         ucx_test_register(suite, test_ucx_list_prepend);
   140         ucx_test_register(suite, test_ucx_list_equals);
   141         ucx_test_register(suite, test_ucx_list_concat);
   142         ucx_test_register(suite, test_ucx_list_size);
   143         ucx_test_register(suite, test_ucx_list_first);
   144         ucx_test_register(suite, test_ucx_list_last);
   145         ucx_test_register(suite, test_ucx_list_get);
   146         ucx_test_register(suite, test_ucx_list_indexof);
   147         ucx_test_register(suite, test_ucx_list_find);
   148         ucx_test_register(suite, test_ucx_list_contains);
   149         ucx_test_register(suite, test_ucx_list_remove);
   150         ucx_test_register(suite, test_ucx_list_clone);
   151         ucx_test_register(suite, test_ucx_list_sort);
   153         /* UcxMemPool Tests */
   154         ucx_test_register(suite, test_ucx_mempool_new);
   155         ucx_test_register(suite, test_ucx_mempool_malloc);
   156         ucx_test_register(suite, test_ucx_mempool_malloc_with_chcap);
   157         ucx_test_register(suite, test_ucx_mempool_calloc);
   158         ucx_test_register(suite, test_ucx_mempool_free);
   159         ucx_test_register(suite, test_ucx_mempool_set_destr);
   160         ucx_test_register(suite, test_ucx_mempool_reg_destr);
   161         ucx_test_register(suite, test_ucx_mempool_realloc);
   163         /* UcxStack Tests */
   164         ucx_test_register(suite, test_ucx_stack_init);
   165         ucx_test_register(suite, test_ucx_stack_malloc);
   166         ucx_test_register(suite, test_ucx_stack_calloc);
   167         ucx_test_register(suite, test_ucx_stack_free);
   168         ucx_test_register(suite, test_ucx_stack_realloc);
   169         ucx_test_register(suite, test_ucx_stack_pop);
   171         /* UcxMap Tests */
   172         ucx_test_register(suite, test_ucx_map_new);
   173         ucx_test_register(suite, test_ucx_key);
   174         ucx_test_register(suite, test_ucx_map_put);
   175         ucx_test_register(suite, test_ucx_map_get);
   176         ucx_test_register(suite, test_ucx_map_remove);
   177         ucx_test_register(suite, test_ucx_map_clear);
   178         ucx_test_register(suite, test_ucx_map_iterator);
   179         ucx_test_register(suite, test_ucx_map_iterator_chain);
   180         ucx_test_register(suite, test_ucx_map_clone);
   181         ucx_test_register(suite, test_ucx_map_rehash);
   183         /* UcxPropertiesParser Tests */
   184         ucx_test_register(suite, test_ucx_properties_new);
   185         ucx_test_register(suite, test_ucx_properties_next);
   186         ucx_test_register(suite, test_ucx_properties_next_multi);
   187         ucx_test_register(suite, test_ucx_properties_next_part);
   188         ucx_test_register(suite, test_ucx_properties_next_long);
   189         ucx_test_register(suite, test_ucx_properties2map);
   190         ucx_test_register(suite, test_ucx_properties_load);
   191         ucx_test_register(suite, test_ucx_properties_store);
   193         /* UcxBuffer Tests */
   194         ucx_test_register(suite, test_ucx_buffer_new);
   195         ucx_test_register(suite, test_ucx_buffer_new_prealloc);
   196         ucx_test_register(suite, test_ucx_buffer_eof);
   197         ucx_test_register(suite, test_ucx_buffer_seek_set);
   198         ucx_test_register(suite, test_ucx_buffer_seek_cur);
   199         ucx_test_register(suite, test_ucx_buffer_seek_end);
   200         ucx_test_register(suite, test_ucx_buffer_seek_oob);
   201         ucx_test_register(suite, test_ucx_buffer_seek_invalid);
   202         ucx_test_register(suite, test_ucx_buffer_seek_overflow);
   203         ucx_test_register(suite, test_ucx_buffer_putc);
   204         ucx_test_register(suite, test_ucx_buffer_putc_ae);
   205         ucx_test_register(suite, test_ucx_buffer_putc_oob);
   206         ucx_test_register(suite, test_ucx_buffer_putc_oobae);
   207         ucx_test_register(suite, test_ucx_buffer_putc_size);
   208         ucx_test_register(suite, test_ucx_buffer_getc);
   209         ucx_test_register(suite, test_ucx_buffer_read);
   210         ucx_test_register(suite, test_ucx_buffer_read_oob);
   211         ucx_test_register(suite, test_ucx_buffer_extract);
   212         ucx_test_register(suite, test_ucx_buffer_extract_oob);
   213         ucx_test_register(suite, test_ucx_buffer_extract_overflow);
   214         ucx_test_register(suite, test_ucx_buffer_extend);
   215         ucx_test_register(suite, test_ucx_buffer_write);
   216         ucx_test_register(suite, test_ucx_buffer_write_oob);
   217         ucx_test_register(suite, test_ucx_buffer_write_ax);
   219         /* Utils Tests*/
   220         ucx_test_register(suite, test_ucx_fprintf);
   221         ucx_test_register(suite, test_ucx_asprintf);
   222         ucx_test_register(suite, test_ucx_stream_copy);
   224         /* AVL Tests */
   225         ucx_test_register(suite, test_ucx_avl_put);
   226         ucx_test_register(suite, test_ucx_avl_remove);
   228         ucx_test_run(suite, stdout);
   229         fflush(stdout);
   230         ucx_test_suite_free(suite);
   232         return EXIT_SUCCESS;
   233     } else {
   234         ucx_test_suite_free(suite);
   235         return EXIT_FAILURE;
   236     }
   237 }

mercurial