First public contribution.
4 ** The author disclaims copyright to this source code. In place of
5 ** a legal notice, here is a blessing:
7 ** May you do good and not evil.
8 ** May you find forgiveness for yourself and forgive others.
9 ** May you share freely, never taking more than you give.
11 *************************************************************************
13 ** This file contains obscure tests of the C-interface required
14 ** for completeness. Test code is written in C for these cases
15 ** as there is not much point in binding to Tcl.
17 ** $Id: test9.c,v 1.6 2008/07/11 13:53:55 drh Exp $
19 #include "sqliteInt.h"
27 static int c_collation_test(
28 ClientData clientData, /* Pointer to sqlite3_enable_XXX function */
29 Tcl_Interp *interp, /* The TCL interpreter that invoked this command */
30 int objc, /* Number of arguments */
31 Tcl_Obj *CONST objv[] /* Command arguments */
33 const char *zErrFunction = "N/A";
38 Tcl_WrongNumArgs(interp, 1, objv, "");
42 /* Open a database. */
43 rc = sqlite3_open(":memory:", &db);
45 zErrFunction = "sqlite3_open";
49 rc = sqlite3_create_collation(db, "collate", 456, 0, 0);
50 if( rc!=SQLITE_MISUSE ){
52 zErrFunction = "sqlite3_create_collation";
60 Tcl_ResetResult(interp);
61 Tcl_AppendResult(interp, "Error testing function: ", zErrFunction, 0);
68 static int c_realloc_test(
69 ClientData clientData, /* Pointer to sqlite3_enable_XXX function */
70 Tcl_Interp *interp, /* The TCL interpreter that invoked this command */
71 int objc, /* Number of arguments */
72 Tcl_Obj *CONST objv[] /* Command arguments */
75 const char *zErrFunction = "N/A";
78 Tcl_WrongNumArgs(interp, 1, objv, "");
82 p = sqlite3_malloc(5);
84 zErrFunction = "sqlite3_malloc";
88 /* Test that realloc()ing a block of memory to a negative size is
89 ** the same as free()ing that memory.
91 p = sqlite3_realloc(p, -1);
93 zErrFunction = "sqlite3_realloc";
100 Tcl_ResetResult(interp);
101 Tcl_AppendResult(interp, "Error testing function: ", zErrFunction, 0);
109 static int c_misuse_test(
110 ClientData clientData, /* Pointer to sqlite3_enable_XXX function */
111 Tcl_Interp *interp, /* The TCL interpreter that invoked this command */
112 int objc, /* Number of arguments */
113 Tcl_Obj *CONST objv[] /* Command arguments */
115 const char *zErrFunction = "N/A";
120 Tcl_WrongNumArgs(interp, 1, objv, "");
124 /* Open a database. Then close it again. We need to do this so that
125 ** we have a "closed database handle" to pass to various API functions.
127 rc = sqlite3_open(":memory:", &db);
129 zErrFunction = "sqlite3_open";
135 rc = sqlite3_errcode(db);
136 if( rc!=SQLITE_MISUSE ){
137 zErrFunction = "sqlite3_errcode";
141 rc = sqlite3_prepare(db, 0, 0, 0, 0);
142 if( rc!=SQLITE_MISUSE ){
143 zErrFunction = "sqlite3_prepare";
147 rc = sqlite3_prepare_v2(db, 0, 0, 0, 0);
148 if( rc!=SQLITE_MISUSE ){
149 zErrFunction = "sqlite3_prepare_v2";
153 #ifndef SQLITE_OMIT_UTF16
154 rc = sqlite3_prepare16(db, 0, 0, 0, 0);
155 if( rc!=SQLITE_MISUSE ){
156 zErrFunction = "sqlite3_prepare16";
159 rc = sqlite3_prepare16_v2(db, 0, 0, 0, 0);
160 if( rc!=SQLITE_MISUSE ){
161 zErrFunction = "sqlite3_prepare16_v2";
169 Tcl_ResetResult(interp);
170 Tcl_AppendResult(interp, "Error testing function: ", zErrFunction, 0);
175 ** Register commands with the TCL interpreter.
177 int Sqlitetest9_Init(Tcl_Interp *interp){
180 Tcl_ObjCmdProc *xProc;
183 { "c_misuse_test", c_misuse_test, 0 },
184 { "c_realloc_test", c_realloc_test, 0 },
185 { "c_collation_test", c_collation_test, 0 },
188 for(i=0; i<sizeof(aObjCmd)/sizeof(aObjCmd[0]); i++){
189 Tcl_CreateObjCommand(interp, aObjCmd[i].zName,
190 aObjCmd[i].xProc, aObjCmd[i].clientData, 0);