]> git.ozlabs.org Git - ccan/blobdiff - junkcode/dongre.avinash@gmail.com-clibutils/test/t_c_slist.c
junkcode: upload via website.
[ccan] / junkcode / dongre.avinash@gmail.com-clibutils / test / t_c_slist.c
diff --git a/junkcode/dongre.avinash@gmail.com-clibutils/test/t_c_slist.c b/junkcode/dongre.avinash@gmail.com-clibutils/test/t_c_slist.c
new file mode 100644 (file)
index 0000000..7c8337c
--- /dev/null
@@ -0,0 +1,121 @@
+/** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** **\r
+ *  This file is part of clib library\r
+ *  Copyright (C) 2011 Avinash Dongre ( dongre.avinash@gmail.com )\r
+ *\r
+ *  Permission is hereby granted, free of charge, to any person obtaining a copy\r
+ *  of this software and associated documentation files (the "Software"), to deal\r
+ *  in the Software without restriction, including without limitation the rights\r
+ *  to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r
+ *  copies of the Software, and to permit persons to whom the Software is\r
+ *  furnished to do so, subject to the following conditions:\r
+ * \r
+ *  The above copyright notice and this permission notice shall be included in\r
+ *  all copies or substantial portions of the Software.\r
+ * \r
+ *  THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r
+ *  IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r
+ *  FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r
+ *  AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r
+ *  LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r
+ *  OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\r
+ *  THE SOFTWARE.\r
+ ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** **/\r
+\r
+#include "c_lib.h"\r
+\r
+#include <stdlib.h>\r
+#include <string.h>\r
+#include <stdio.h>\r
+#include <assert.h>\r
+\r
+static void \r
+free_element ( void *ptr ) {\r
+    if ( ptr )\r
+        free ( ptr);\r
+}\r
+\r
+void\r
+add_elements_to_list( struct clib_slist* ll, int x, int y ) {\r
+    int i = 0;\r
+    for ( i = x; i <= y; i++ ) { \r
+        int *v = ( int *) malloc ( sizeof ( int ));\r
+        memcpy ( v, &i, sizeof ( int ));\r
+        push_back_clib_slist ( ll, v , sizeof(v));\r
+        free ( v );\r
+    }\r
+}\r
+void\r
+print_e ( void *ptr ) {\r
+    if ( ptr )\r
+        printf ( "%d\n", *(int*)ptr);\r
+}\r
+\r
+static int \r
+compare_element ( void *left, void *right ) {\r
+    int *l = (int*) left;\r
+    int *r = (int*) right;\r
+    return *l == *r ;\r
+}\r
+\r
+\r
+void\r
+test_clib_slist() {\r
+    int i = 0;\r
+    int *v;\r
+    void* outValue;\r
+    struct clib_slist* list = new_clib_slist(free_element,compare_element);\r
+\r
+    add_elements_to_list(list,1, 10 );\r
+    for_each_clib_slist(list, print_e);\r
+\r
+    i = 55;\r
+    v = ( int *) malloc ( sizeof ( int ));\r
+    memcpy ( v, &i, sizeof ( int ));\r
+    insert_clib_slist(list,5, v,sizeof(v));\r
+    free ( v );\r
+    for_each_clib_slist(list, print_e);\r
+\r
+    remove_clib_slist(list,5);\r
+    for_each_clib_slist(list, print_e);\r
+\r
+    remove_clib_slist(list,0);\r
+    for_each_clib_slist(list, print_e);\r
+\r
+    remove_clib_slist(list,100);\r
+    for_each_clib_slist(list, print_e);\r
+\r
+    i = 1;\r
+    v = ( int *) malloc ( sizeof ( int ));\r
+    memcpy ( v, &i, sizeof ( int ));\r
+    insert_clib_slist(list,1,v,sizeof(v));\r
+    free ( v );\r
+    for_each_clib_slist(list, print_e);\r
+\r
+    i = 11;\r
+    v = ( int *) malloc ( sizeof ( int ));\r
+    memcpy ( v, &i, sizeof ( int ));\r
+    insert_clib_slist(list,11,v,sizeof(v));\r
+    free ( v );\r
+    for_each_clib_slist(list, print_e);\r
+\r
+    i = 12;\r
+    v = ( int *) malloc ( sizeof ( int ));\r
+    memcpy ( v, &i, sizeof ( int ));\r
+    insert_clib_slist(list,200,v,sizeof(v));\r
+    free ( v );\r
+    for_each_clib_slist(list, print_e);\r
+\r
+    remove_clib_slist(list,list->size);\r
+    for_each_clib_slist(list, print_e);\r
+\r
+    i = 10;\r
+    if ( clib_true == find_clib_slist ( list, &i, &outValue)) {\r
+        assert ( i == *(int*)outValue );\r
+        free ( outValue );\r
+    }\r
+    i = 100;\r
+    assert ( clib_false == find_clib_slist ( list, &i, &outValue));\r
+\r
+    delete_clib_slist ( list );\r
+\r
+}\r