olaf@142: /* olaf@142: * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER. olaf@142: * olaf@142: * Copyright 2013 Olaf Wintermann. All rights reserved. olaf@142: * olaf@142: * Redistribution and use in source and binary forms, with or without olaf@142: * modification, are permitted provided that the following conditions are met: olaf@142: * olaf@142: * 1. Redistributions of source code must retain the above copyright olaf@142: * notice, this list of conditions and the following disclaimer. olaf@142: * olaf@142: * 2. Redistributions in binary form must reproduce the above copyright olaf@142: * notice, this list of conditions and the following disclaimer in the olaf@142: * documentation and/or other materials provided with the distribution. olaf@142: * olaf@142: * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" olaf@142: * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE olaf@142: * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE olaf@142: * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE olaf@142: * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR olaf@142: * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF olaf@142: * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS olaf@142: * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN olaf@142: * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) olaf@142: * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE olaf@142: * POSSIBILITY OF SUCH DAMAGE. olaf@142: */ olaf@142: olaf@142: #include "utils_tests.h" olaf@142: #include "ucx/buffer.h" olaf@142: olaf@142: UCX_TEST(test_ucx_fprintf) { olaf@142: UcxBuffer *b1 = ucx_buffer_new(NULL, 32, UCX_BUFFER_AUTOEXTEND); olaf@142: UcxBuffer *b2 = ucx_buffer_new(NULL, 4096, UCX_BUFFER_AUTOEXTEND); olaf@142: olaf@142: char *teststr1 = (char*)calloc(1, 1024); olaf@142: char *teststr2 = (char*)calloc(1, 1024); olaf@142: memset(teststr1, 'a', 1023); olaf@142: memset(teststr2, 'b', 1023); olaf@142: olaf@142: UCX_TEST_BEGIN olaf@142: olaf@142: ucx_fprintf(b1, (write_func)ucx_buffer_write, "Hello %s", "World"); olaf@142: UCX_TEST_ASSERT(!strcmp(b1->space, "Hello World"), "wrong content in b1"); olaf@142: ucx_fprintf(b1, (write_func)ucx_buffer_write, "\nend.\n"); olaf@142: UCX_TEST_ASSERT(!strcmp(b1->space, "Hello World\nend.\n"), olaf@142: "wrong content in b1 after second fprintf"); olaf@142: olaf@147: ucx_bprintf(b2, "%s%s", teststr1, teststr2); olaf@145: UCX_TEST_ASSERT(b2->pos == 2046, "wrong length"); olaf@142: UCX_TEST_ASSERT(!memcmp(b2->space, teststr1, 1023), olaf@142: "wrong first half in b2"); olaf@142: UCX_TEST_ASSERT(!memcmp(b2->space+1023, teststr2, 1023), olaf@142: "wrong second half in b2"); olaf@142: olaf@142: UCX_TEST_END olaf@145: olaf@145: ucx_buffer_free(b1); olaf@145: ucx_buffer_free(b2); olaf@147: free(teststr1); olaf@147: free(teststr2); olaf@142: } olaf@142: olaf@142: UCX_TEST(test_ucx_asprintf) { olaf@142: char *teststr1 = (char*)calloc(1, 1024); olaf@142: char *teststr2 = (char*)calloc(1, 1024); olaf@142: memset(teststr1, 'a', 1023); olaf@142: memset(teststr2, 'b', 1023); olaf@142: UcxAllocator *a = ucx_default_allocator(); olaf@142: olaf@142: UCX_TEST_BEGIN olaf@142: olaf@142: sstr_t s1 = ucx_asprintf(a, "int: %d\nHello %s!", 123, "World"); olaf@142: UCX_TEST_ASSERT(s1.ptr, "s1.ptr is NULL"); olaf@142: UCX_TEST_ASSERT(s1.length == 21, "wrong length"); olaf@142: UCX_TEST_ASSERT(!sstrcmp(s1, S("int: 123\nHello World!")), "wrong content"); olaf@142: free(s1.ptr); olaf@142: olaf@142: sstr_t s2 = ucx_asprintf(a, "%s%s", teststr1, teststr2); olaf@145: UCX_TEST_ASSERT(s2.ptr, "s2.ptr is NULL"); olaf@145: UCX_TEST_ASSERT(s2.length == 2046, "wrong length"); olaf@142: UCX_TEST_ASSERT(!memcmp(s2.ptr, teststr1, 1023), olaf@142: "wrong first half in s2"); olaf@142: UCX_TEST_ASSERT(!memcmp(s2.ptr+1023, teststr2, 1023), olaf@142: "wrong second half in s2"); olaf@145: free(s2.ptr); olaf@142: olaf@142: UCX_TEST_END olaf@147: olaf@147: free(teststr1); olaf@147: free(teststr2); olaf@142: }