test/main.c

Sun, 21 Jan 2018 14:10:59 +0100

author
Mike Becker <universe@uap-core.de>
date
Sun, 21 Jan 2018 14:10:59 +0100
changeset 273
9c1591b3c4a4
parent 259
2f5dea574a75
child 283
c3b6ff227481
permissions
-rw-r--r--

fixes return value for multiplication with zero in ucx_szmul

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

mercurial