test/main.c

Mon, 28 Jul 2014 14:36:25 +0200

author
Mike Becker <universe@uap-core.de>
date
Mon, 28 Jul 2014 14:36:25 +0200
changeset 185
a48428642b4e
parent 180
2185f19dcc45
child 192
1e51558b9d09
permissions
-rw-r--r--

added stack implementation + added g++ config and added some fixes for C++

     1 /*
     2  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
     3  *
     4  * Copyright 2014 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"
    47 UCX_EXTERN UCX_TEST(testTestSuitePositive) {
    48     UCX_TEST_BEGIN
    49     UCX_TEST_ASSERT(2*2 == 4, "the test framework fails");
    50     UCX_TEST_END
    51 }
    53 UCX_EXTERN UCX_TEST(testTestSuiteNegative) {
    54     UCX_TEST_BEGIN
    55     UCX_TEST_ASSERT(2*(-2) == 4, "the test framework works");
    56     UCX_TEST_END
    57 }
    59 UCX_EXTERN UCX_TEST_SUBROUTINE(testTestSuiteRoutineRoutine, float f) {
    60     UCX_TEST_ASSERT(f == 3.14f, "calling routine in a routine fails");
    61 }
    63 UCX_EXTERN UCX_TEST_SUBROUTINE(testTestSuiteRoutine2Param, int i, float f) {
    64     UCX_TEST_ASSERT(i == 42, "two parameter routine fails");
    65     UCX_TEST_CALL_SUBROUTINE(testTestSuiteRoutineRoutine, f);
    66 }
    68 UCX_EXTERN UCX_TEST_SUBROUTINE(testTestSuiteRoutineSuccess, int* i) {
    69     *i += 2;
    70     UCX_TEST_ASSERT(*i==4, "the test framework fails");
    71 }
    73 UCX_EXTERN UCX_TEST_SUBROUTINE(testTestSuiteRoutineFailure, int* i) {
    74     *i += 2;
    75     // Next test shall fail!
    76     UCX_TEST_ASSERT(*i==4, "the test framework works");
    77 }
    79 UCX_EXTERN UCX_TEST(testTestSuiteRoutinePositive) {
    80     int i = 2;
    81     UCX_TEST_BEGIN
    82     UCX_TEST_CALL_SUBROUTINE(testTestSuiteRoutineSuccess, &i);
    83     UCX_TEST_ASSERT(i==4, "the test framework fails");
    84     UCX_TEST_END
    85 }
    87 UCX_EXTERN UCX_TEST(testTestSuiteRoutineNegative) {
    88     int i = 0;
    89     UCX_TEST_BEGIN
    90     UCX_TEST_CALL_SUBROUTINE(testTestSuiteRoutineFailure, &i);
    91     UCX_TEST_ASSERT(1, "the test framework fails");
    92     UCX_TEST_END
    93 }
    95 UCX_EXTERN UCX_TEST(testTestSuiteRoutineMultiparam) {
    96     UCX_TEST_BEGIN
    97     UCX_TEST_CALL_SUBROUTINE(testTestSuiteRoutine2Param, 42, 3.14f);
    98     UCX_TEST_END
    99 }
   101 int main(int argc, char **argv) {
   102     printf("UCX Tests\n---------\n");
   104     printf("\nUcxTestSuite tests (2 failures are intended!)\n");
   105     UcxTestSuite* suite = ucx_test_suite_new();
   106     ucx_test_register(suite, testTestSuitePositive);
   107     ucx_test_register(suite, testTestSuiteNegative);
   108     ucx_test_register(suite, testTestSuiteRoutinePositive);
   109     ucx_test_register(suite, testTestSuiteRoutineNegative);
   110     ucx_test_register(suite, testTestSuiteRoutineMultiparam);
   111     ucx_test_run(suite, stdout);
   112     if (suite->failure == 2 && suite->success == 3) {
   113         ucx_test_suite_free(suite);
   115         printf("\nLibrary function tests\n");
   116         suite = ucx_test_suite_new();
   117         /* UcxAllocator Tests */
   118         ucx_test_register(suite, test_ucx_default_allocator);
   120         /* sstring Tests */
   121         ucx_test_register(suite, test_sstr);
   122         ucx_test_register(suite, test_sstr_len);
   123         ucx_test_register(suite, test_sstrcmp);
   124         ucx_test_register(suite, test_sstrcasecmp);
   125         ucx_test_register(suite, test_sstrcat);
   126         ucx_test_register(suite, test_sstrchr_sstrrchr);
   127         ucx_test_register(suite, test_sstrsplit);
   128         ucx_test_register(suite, test_sstrtrim);
   129         ucx_test_register(suite, test_sstrprefixsuffix);
   131         /* UcxLogger Tests */
   132         ucx_test_register(suite, test_ucx_logger_new);
   133         ucx_test_register(suite, test_ucx_logger_log);
   135         /* UcxList Tests */
   136         ucx_test_register(suite, test_ucx_list_append);
   137         ucx_test_register(suite, test_ucx_list_prepend);
   138         ucx_test_register(suite, test_ucx_list_equals);
   139         ucx_test_register(suite, test_ucx_list_concat);
   140         ucx_test_register(suite, test_ucx_list_size);
   141         ucx_test_register(suite, test_ucx_list_first);
   142         ucx_test_register(suite, test_ucx_list_last);
   143         ucx_test_register(suite, test_ucx_list_get);
   144         ucx_test_register(suite, test_ucx_list_indexof);
   145         ucx_test_register(suite, test_ucx_list_find);
   146         ucx_test_register(suite, test_ucx_list_contains);
   147         ucx_test_register(suite, test_ucx_list_remove);
   148         ucx_test_register(suite, test_ucx_list_clone);
   149         ucx_test_register(suite, test_ucx_list_sort);
   151         /* UcxMemPool Tests */
   152         ucx_test_register(suite, test_ucx_mempool_new);
   153         ucx_test_register(suite, test_ucx_mempool_malloc);
   154         ucx_test_register(suite, test_ucx_mempool_malloc_with_chcap);
   155         ucx_test_register(suite, test_ucx_mempool_calloc);
   156         ucx_test_register(suite, test_ucx_mempool_free);
   157         ucx_test_register(suite, test_ucx_mempool_set_destr);
   158         ucx_test_register(suite, test_ucx_mempool_reg_destr);
   159         ucx_test_register(suite, test_ucx_mempool_realloc);
   161         /* UcxStack Tests */
   162         ucx_test_register(suite, test_ucx_stack_init);
   163         ucx_test_register(suite, test_ucx_stack_malloc);
   164         ucx_test_register(suite, test_ucx_stack_calloc);
   165         ucx_test_register(suite, test_ucx_stack_free);
   166         ucx_test_register(suite, test_ucx_stack_realloc);
   167         ucx_test_register(suite, test_ucx_stack_pop);
   169         /* UcxMap Tests */
   170         ucx_test_register(suite, test_ucx_map_new);
   171         ucx_test_register(suite, test_ucx_key);
   172         ucx_test_register(suite, test_ucx_map_put);
   173         ucx_test_register(suite, test_ucx_map_get);
   174         ucx_test_register(suite, test_ucx_map_remove);
   175         ucx_test_register(suite, test_ucx_map_iterator);
   176         ucx_test_register(suite, test_ucx_map_iterator_chain);
   177         ucx_test_register(suite, test_ucx_map_clone);
   178         ucx_test_register(suite, test_ucx_map_rehash);
   180         /* UcxPropertiesParser Tests */
   181         ucx_test_register(suite, test_ucx_properties_new);
   182         ucx_test_register(suite, test_ucx_properties_next);
   183         ucx_test_register(suite, test_ucx_properties_next_multi);
   184         ucx_test_register(suite, test_ucx_properties_next_part);
   185         ucx_test_register(suite, test_ucx_properties_next_long);
   186         ucx_test_register(suite, test_ucx_properties2map);
   187         ucx_test_register(suite, test_ucx_properties_load);
   188         ucx_test_register(suite, test_ucx_properties_store);
   190         /* UcxBuffer Tests */
   191         ucx_test_register(suite, test_ucx_buffer_new);
   192         ucx_test_register(suite, test_ucx_buffer_new_prealloc);
   193         ucx_test_register(suite, test_ucx_buffer_eof);
   194         ucx_test_register(suite, test_ucx_buffer_seek_set);
   195         ucx_test_register(suite, test_ucx_buffer_seek_cur);
   196         ucx_test_register(suite, test_ucx_buffer_seek_end);
   197         ucx_test_register(suite, test_ucx_buffer_seek_oob);
   198         ucx_test_register(suite, test_ucx_buffer_seek_invalid);
   199         ucx_test_register(suite, test_ucx_buffer_seek_overflow);
   200         ucx_test_register(suite, test_ucx_buffer_putc);
   201         ucx_test_register(suite, test_ucx_buffer_putc_ae);
   202         ucx_test_register(suite, test_ucx_buffer_putc_oob);
   203         ucx_test_register(suite, test_ucx_buffer_putc_oobae);
   204         ucx_test_register(suite, test_ucx_buffer_putc_size);
   205         ucx_test_register(suite, test_ucx_buffer_getc);
   206         ucx_test_register(suite, test_ucx_buffer_read);
   207         ucx_test_register(suite, test_ucx_buffer_read_oob);
   208         ucx_test_register(suite, test_ucx_buffer_extract);
   209         ucx_test_register(suite, test_ucx_buffer_extract_oob);
   210         ucx_test_register(suite, test_ucx_buffer_extract_overflow);
   211         ucx_test_register(suite, test_ucx_buffer_extend);
   212         ucx_test_register(suite, test_ucx_buffer_write);
   213         ucx_test_register(suite, test_ucx_buffer_write_oob);
   214         ucx_test_register(suite, test_ucx_buffer_write_ax);
   216         /* Utils Tests*/
   217         ucx_test_register(suite, test_ucx_fprintf);
   218         ucx_test_register(suite, test_ucx_asprintf);
   219         ucx_test_register(suite, test_ucx_stream_copy);
   221         ucx_test_run(suite, stdout);
   222         fflush(stdout);
   223         ucx_test_suite_free(suite);
   225         return EXIT_SUCCESS;
   226     } else {
   227         ucx_test_suite_free(suite);
   228         return EXIT_FAILURE;
   229     }
   230 }

mercurial