]> code.citadel.org Git - citadel.git/blobdiff - libcitadel/tests/stringbuf_test.c
* start a unit-test-suite with http://cunit.sourceforge.net/ So far only some basics...
[citadel.git] / libcitadel / tests / stringbuf_test.c
diff --git a/libcitadel/tests/stringbuf_test.c b/libcitadel/tests/stringbuf_test.c
new file mode 100644 (file)
index 0000000..48143b8
--- /dev/null
@@ -0,0 +1,320 @@
+
+/*
+ *  CUnit - A Unit testing framework library for C.
+ *  Copyright (C) 2001  Anil Kumar
+ *  
+ *  This library is free software; you can redistribute it and/or
+ *  modify it under the terms of the GNU Library General Public
+ *  License as published by the Free Software Foundation; either
+ *  version 2 of the License, or (at your option) any later version.
+ *
+ *  This library 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
+ *  Library General Public License for more details.
+ *
+ *  You should have received a copy of the GNU Library General Public
+ *  License along with this library; if not, write to the Free Software
+ *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
+ */
+
+#include <stdio.h>
+#include <stdlib.h>
+#include <string.h>
+
+#include "stringbuf_test.h"
+#include "../lib/libcitadel.h"
+
+static int success_init(void) { return 0; }
+static int success_clean(void) { return 0; }
+
+static void testSuccess1(void) { CU_ASSERT(1); }
+static void testSuccess2(void) { CU_ASSERT(1); }
+static void testSuccess3(void) { CU_ASSERT(1); }
+
+static int group_failure_init(void) { return 1;}
+static int group_failure_clean(void) { return 1; }
+
+static void testGroupFailure1(void) { CU_ASSERT(0); }
+static void testGroupFailure2(void) { CU_ASSERT(2); }
+
+static void testfailure1(void) { CU_ASSERT(12 <= 10); }
+static void testfailure2(void) { CU_ASSERT(2); }
+static void testfailure3(void) { CU_ASSERT(3); }
+/*
+static void test1(void)
+{
+       CU_ASSERT((char *)2 != "THis is positive test.");
+       CU_ASSERT((char *)2 == "THis is negative test. test 1");
+}
+
+static void test2(void)
+{
+       CU_ASSERT((char *)2 != "THis is positive test.");
+       CU_ASSERT((char *)3 == "THis is negative test. test 2");
+}
+*/
+static void TestCreateBuf(void)
+{
+       StrBuf *Buf;
+       StrBuf *Buf2;
+       long len;
+       long i;
+
+       Buf = NewStrBuf();
+       CU_ASSERT(Buf != NULL);
+       FreeStrBuf(&Buf);
+
+       CU_ASSERT(Buf == NULL);
+       Buf = NewStrBufPlain(HKEY("ABC"));
+       CU_ASSERT(StrLength(Buf) == 3);
+       CU_ASSERT_NSTRING_EQUAL("ABC", ChrPtr(Buf), 3);
+
+       len = StrLength(Buf);
+       for (i=0; i< 500; i ++)
+       {
+               StrBufAppendBufPlain(Buf, HKEY("ABC"), 0);
+               len += 3;
+               CU_ASSERT(StrLength(Buf) == len);               
+       }       
+       StrBufShrinkToFit(Buf, 1);
+       FreeStrBuf(&Buf);
+       CU_ASSERT(Buf == NULL);
+       
+       Buf = NewStrBufPlain(HKEY("ABC"));
+       len = StrLength(Buf);
+       for (i=0; i< 500; i ++)
+       {
+               StrBufAppendPrintf(Buf, "%s", "ABC");
+               len += 3;
+               CU_ASSERT(StrLength(Buf) == len);               
+       }
+       StrBufShrinkToFit(Buf, 1);
+
+       Buf2 = NewStrBufDup(Buf);
+       CU_ASSERT(StrLength(Buf) == StrLength(Buf2));           
+       
+       CU_ASSERT_NSTRING_EQUAL(ChrPtr(Buf2), ChrPtr(Buf), StrLength(Buf2));
+       
+       CU_ASSERT(StrBufIsNumber(Buf) == 0);
+
+       FlushStrBuf(Buf2);
+       CU_ASSERT(StrLength(Buf2) == 0);
+
+       FLUSHStrBuf(Buf);
+       CU_ASSERT(StrLength(Buf) == 0);
+
+       FreeStrBuf(&Buf);
+       FreeStrBuf(&Buf2);
+       CU_ASSERT(Buf == NULL);
+       CU_ASSERT(Buf2 == NULL);
+
+
+       Buf = NewStrBufPlain(HKEY("123456"));
+       CU_ASSERT(StrBufIsNumber(Buf) == 1);
+
+       
+       
+}
+
+static void testSuccessAssertTrue(void)
+{
+       CU_ASSERT_TRUE(CU_TRUE);
+       CU_ASSERT_TRUE(!CU_FALSE);
+}
+
+static void testSuccessAssertFalse(void)
+{
+       CU_ASSERT_FALSE(CU_FALSE);
+       CU_ASSERT_FALSE(!CU_TRUE);
+}
+
+static void testSuccessAssertEqual(void)
+{
+       CU_ASSERT_EQUAL(10, 10);
+       CU_ASSERT_EQUAL(0, 0);
+       CU_ASSERT_EQUAL(0, -0);
+       CU_ASSERT_EQUAL(-12, -12);
+}
+
+static void testSuccessAssertNotEqual(void)
+{
+       CU_ASSERT_NOT_EQUAL(10, 11);
+       CU_ASSERT_NOT_EQUAL(0, -1);
+       CU_ASSERT_NOT_EQUAL(-12, -11);
+}
+
+static void testSuccessAssertPtrEqual(void)
+{
+       CU_ASSERT_PTR_EQUAL((void*)0x100, (void*)0x100);
+}
+
+static void testSuccessAssertPtrNotEqual(void)
+{
+       CU_ASSERT_PTR_NOT_EQUAL((void*)0x100, (void*)0x101);
+}
+
+static void testSuccessAssertPtrNull(void)
+{
+       CU_ASSERT_PTR_NULL(NULL);
+       CU_ASSERT_PTR_NULL(0x0);
+}
+
+static void testSuccessAssertPtrNotNull(void)
+{
+       CU_ASSERT_PTR_NOT_NULL((void*)0x23);
+}
+
+static void testSuccessAssertStringEqual(void)
+{
+       char str1[] = "test" ;
+       char str2[] = "test" ;
+
+       CU_ASSERT_STRING_EQUAL(str1, str2);
+}
+
+static void testSuccessAssertStringNotEqual(void)
+{
+       char str1[] = "test" ;
+       char str2[] = "testtsg" ;
+
+       CU_ASSERT_STRING_NOT_EQUAL(str1, str2);
+}
+
+static void testSuccessAssertNStringEqual(void)
+{
+       char str1[] = "test" ;
+       char str2[] = "testgfsg" ;
+
+       CU_ASSERT_NSTRING_EQUAL(str1, str2, strlen(str1));
+       CU_ASSERT_NSTRING_EQUAL(str1, str1, strlen(str1));
+       CU_ASSERT_NSTRING_EQUAL(str1, str1, strlen(str1) + 1);
+}
+
+static void testSuccessAssertNStringNotEqual(void)
+{
+       char str1[] = "test" ;
+       char str2[] = "teet" ;
+       char str3[] = "testgfsg" ;
+
+       CU_ASSERT_NSTRING_NOT_EQUAL(str1, str2, 3);
+       CU_ASSERT_NSTRING_NOT_EQUAL(str1, str3, strlen(str1) + 1);
+}
+
+static void testSuccessAssertDoubleEqual(void)
+{
+       CU_ASSERT_DOUBLE_EQUAL(10, 10.0001, 0.0001);
+       CU_ASSERT_DOUBLE_EQUAL(10, 10.0001, -0.0001);
+       CU_ASSERT_DOUBLE_EQUAL(-10, -10.0001, 0.0001);
+       CU_ASSERT_DOUBLE_EQUAL(-10, -10.0001, -0.0001);
+}
+
+static void testSuccessAssertDoubleNotEqual(void)
+{
+       CU_ASSERT_DOUBLE_NOT_EQUAL(10, 10.001, 0.0001);
+       CU_ASSERT_DOUBLE_NOT_EQUAL(10, 10.001, -0.0001);
+       CU_ASSERT_DOUBLE_NOT_EQUAL(-10, -10.001, 0.0001);
+       CU_ASSERT_DOUBLE_NOT_EQUAL(-10, -10.001, -0.0001);
+}
+
+static void AddTests(void)
+{
+       CU_pSuite pGroup = NULL;
+       CU_pTest pTest = NULL;
+
+       pGroup = CU_add_suite("Sucess", success_init, success_clean);
+       pTest = CU_add_test(pGroup, "testSuccess1", testSuccess1);
+       pTest = CU_add_test(pGroup, "testSuccess2", testSuccess2);
+       pTest = CU_add_test(pGroup, "testSuccess3", testSuccess3);
+       
+       pGroup = CU_add_suite("failure", NULL, NULL);
+       pTest = CU_add_test(pGroup, "testfailure1", testfailure1);
+       pTest = CU_add_test(pGroup, "testfailure2", testfailure2);
+       pTest = CU_add_test(pGroup, "testfailure3", testfailure3);
+
+       pGroup = CU_add_suite("group_failure", group_failure_init, group_failure_clean);
+       pTest = CU_add_test(pGroup, "testGroupFailure1", testGroupFailure1);
+       pTest = CU_add_test(pGroup, "testGroupFailure2", testGroupFailure2);
+}
+
+static void AddStrBufSimlpeTests(void)
+{
+       CU_pSuite pGroup = NULL;
+       CU_pTest pTest = NULL;
+
+       pGroup = CU_add_suite("TestStringBufSimpleAppenders", NULL, NULL);
+       pTest = CU_add_test(pGroup, "testCreateBuf", TestCreateBuf);
+
+
+
+/*
+       pGroup = CU_add_suite("TestBooleanAssert", NULL, NULL);
+       pTest = CU_add_test(pGroup, "testSuccessAssertTrue", testSuccessAssertTrue);
+       pTest = CU_add_test(pGroup, "testSuccessAssertFalse", testSuccessAssertFalse);
+
+       pGroup = CU_add_suite("TestEqualityAssert", NULL, NULL);
+       pTest = CU_add_test(pGroup, "testSuccessAssertEqual", testSuccessAssertEqual);
+       pTest = CU_add_test(pGroup, "testSuccessAssertNotEqual", testSuccessAssertNotEqual);
+
+       pGroup = CU_add_suite("TestPointerAssert", NULL, NULL);
+       pTest = CU_add_test(pGroup, "testSuccessAssertPtrEqual", testSuccessAssertPtrEqual);
+       pTest = CU_add_test(pGroup, "testSuccessAssertPtrNotEqual", testSuccessAssertPtrNotEqual);
+
+       pGroup = CU_add_suite("TestNullnessAssert", NULL, NULL);
+       pTest = CU_add_test(pGroup, "testSuccessAssertPtrNull", testSuccessAssertPtrNull);
+       pTest = CU_add_test(pGroup, "testSuccessAssertPtrNotNull", testSuccessAssertPtrNotNull);
+
+       pGroup = CU_add_suite("TestStringAssert", NULL, NULL);
+       pTest = CU_add_test(pGroup, "testSuccessAssertStringEqual", testSuccessAssertStringEqual);
+       pTest = CU_add_test(pGroup, "testSuccessAssertStringNotEqual", testSuccessAssertStringNotEqual);
+
+       pGroup = CU_add_suite("TestNStringAssert", NULL, NULL);
+       pTest = CU_add_test(pGroup, "testSuccessAssertNStringEqual", testSuccessAssertNStringEqual);
+       pTest = CU_add_test(pGroup, "testSuccessAssertNStringNotEqual", testSuccessAssertNStringNotEqual);
+
+       pGroup = CU_add_suite("TestDoubleAssert", NULL, NULL);
+       pTest = CU_add_test(pGroup, "testSuccessAssertDoubleEqual", testSuccessAssertDoubleEqual);
+       pTest = CU_add_test(pGroup, "testSuccessAssertDoubleNotEqual", testSuccessAssertDoubleNotEqual);
+*/
+}
+
+
+int main(int argc, char* argv[])
+{
+       setvbuf(stdout, NULL, _IONBF, 0);
+
+       StartLibCitadel(8);
+       if (argc > 1) {
+               CU_BOOL Run = CU_FALSE ;
+
+               CU_set_output_filename("TestAutomated");
+               if (CU_initialize_registry()) {
+                       printf("\nInitialize of test Registry failed.");
+               }
+
+               if (!strcmp("--test", argv[1])) {
+                       Run = CU_TRUE ;
+                       AddTests();
+               }
+               else if (!strcmp("--atest", argv[1])) {
+                       Run = CU_TRUE ;
+                       AddStrBufSimlpeTests();
+               }
+               else if (!strcmp("--alltest", argv[1])) {
+                       Run = CU_TRUE ;
+                       AddTests();
+//                     AddAssertTests();
+               }
+               
+               if (CU_TRUE == Run) {
+                       //CU_console_run_tests();
+    printf("\nTests completed with return value %d.\n", CU_basic_run_tests());
+
+                       ///CU_automated_run_tests();
+               }
+
+               CU_cleanup_registry();
+       }
+
+       return 0;
+}