sl@0
|
1 |
/*
|
sl@0
|
2 |
** 2007 March 29
|
sl@0
|
3 |
**
|
sl@0
|
4 |
** The author disclaims copyright to this source code. In place of
|
sl@0
|
5 |
** a legal notice, here is a blessing:
|
sl@0
|
6 |
**
|
sl@0
|
7 |
** May you do good and not evil.
|
sl@0
|
8 |
** May you find forgiveness for yourself and forgive others.
|
sl@0
|
9 |
** May you share freely, never taking more than you give.
|
sl@0
|
10 |
**
|
sl@0
|
11 |
*************************************************************************
|
sl@0
|
12 |
**
|
sl@0
|
13 |
** This file contains obscure tests of the C-interface required
|
sl@0
|
14 |
** for completeness. Test code is written in C for these cases
|
sl@0
|
15 |
** as there is not much point in binding to Tcl.
|
sl@0
|
16 |
**
|
sl@0
|
17 |
** $Id: test9.c,v 1.6 2008/07/11 13:53:55 drh Exp $
|
sl@0
|
18 |
*/
|
sl@0
|
19 |
#include "sqliteInt.h"
|
sl@0
|
20 |
#include "tcl.h"
|
sl@0
|
21 |
#include <stdlib.h>
|
sl@0
|
22 |
#include <string.h>
|
sl@0
|
23 |
|
sl@0
|
24 |
/*
|
sl@0
|
25 |
** c_collation_test
|
sl@0
|
26 |
*/
|
sl@0
|
27 |
static int c_collation_test(
|
sl@0
|
28 |
ClientData clientData, /* Pointer to sqlite3_enable_XXX function */
|
sl@0
|
29 |
Tcl_Interp *interp, /* The TCL interpreter that invoked this command */
|
sl@0
|
30 |
int objc, /* Number of arguments */
|
sl@0
|
31 |
Tcl_Obj *CONST objv[] /* Command arguments */
|
sl@0
|
32 |
){
|
sl@0
|
33 |
const char *zErrFunction = "N/A";
|
sl@0
|
34 |
sqlite3 *db;
|
sl@0
|
35 |
|
sl@0
|
36 |
int rc;
|
sl@0
|
37 |
if( objc!=1 ){
|
sl@0
|
38 |
Tcl_WrongNumArgs(interp, 1, objv, "");
|
sl@0
|
39 |
return TCL_ERROR;
|
sl@0
|
40 |
}
|
sl@0
|
41 |
|
sl@0
|
42 |
/* Open a database. */
|
sl@0
|
43 |
rc = sqlite3_open(":memory:", &db);
|
sl@0
|
44 |
if( rc!=SQLITE_OK ){
|
sl@0
|
45 |
zErrFunction = "sqlite3_open";
|
sl@0
|
46 |
goto error_out;
|
sl@0
|
47 |
}
|
sl@0
|
48 |
|
sl@0
|
49 |
rc = sqlite3_create_collation(db, "collate", 456, 0, 0);
|
sl@0
|
50 |
if( rc!=SQLITE_MISUSE ){
|
sl@0
|
51 |
sqlite3_close(db);
|
sl@0
|
52 |
zErrFunction = "sqlite3_create_collation";
|
sl@0
|
53 |
goto error_out;
|
sl@0
|
54 |
}
|
sl@0
|
55 |
|
sl@0
|
56 |
sqlite3_close(db);
|
sl@0
|
57 |
return TCL_OK;
|
sl@0
|
58 |
|
sl@0
|
59 |
error_out:
|
sl@0
|
60 |
Tcl_ResetResult(interp);
|
sl@0
|
61 |
Tcl_AppendResult(interp, "Error testing function: ", zErrFunction, 0);
|
sl@0
|
62 |
return TCL_ERROR;
|
sl@0
|
63 |
}
|
sl@0
|
64 |
|
sl@0
|
65 |
/*
|
sl@0
|
66 |
** c_realloc_test
|
sl@0
|
67 |
*/
|
sl@0
|
68 |
static int c_realloc_test(
|
sl@0
|
69 |
ClientData clientData, /* Pointer to sqlite3_enable_XXX function */
|
sl@0
|
70 |
Tcl_Interp *interp, /* The TCL interpreter that invoked this command */
|
sl@0
|
71 |
int objc, /* Number of arguments */
|
sl@0
|
72 |
Tcl_Obj *CONST objv[] /* Command arguments */
|
sl@0
|
73 |
){
|
sl@0
|
74 |
void *p;
|
sl@0
|
75 |
const char *zErrFunction = "N/A";
|
sl@0
|
76 |
|
sl@0
|
77 |
if( objc!=1 ){
|
sl@0
|
78 |
Tcl_WrongNumArgs(interp, 1, objv, "");
|
sl@0
|
79 |
return TCL_ERROR;
|
sl@0
|
80 |
}
|
sl@0
|
81 |
|
sl@0
|
82 |
p = sqlite3_malloc(5);
|
sl@0
|
83 |
if( !p ){
|
sl@0
|
84 |
zErrFunction = "sqlite3_malloc";
|
sl@0
|
85 |
goto error_out;
|
sl@0
|
86 |
}
|
sl@0
|
87 |
|
sl@0
|
88 |
/* Test that realloc()ing a block of memory to a negative size is
|
sl@0
|
89 |
** the same as free()ing that memory.
|
sl@0
|
90 |
*/
|
sl@0
|
91 |
p = sqlite3_realloc(p, -1);
|
sl@0
|
92 |
if( p ){
|
sl@0
|
93 |
zErrFunction = "sqlite3_realloc";
|
sl@0
|
94 |
goto error_out;
|
sl@0
|
95 |
}
|
sl@0
|
96 |
|
sl@0
|
97 |
return TCL_OK;
|
sl@0
|
98 |
|
sl@0
|
99 |
error_out:
|
sl@0
|
100 |
Tcl_ResetResult(interp);
|
sl@0
|
101 |
Tcl_AppendResult(interp, "Error testing function: ", zErrFunction, 0);
|
sl@0
|
102 |
return TCL_ERROR;
|
sl@0
|
103 |
}
|
sl@0
|
104 |
|
sl@0
|
105 |
|
sl@0
|
106 |
/*
|
sl@0
|
107 |
** c_misuse_test
|
sl@0
|
108 |
*/
|
sl@0
|
109 |
static int c_misuse_test(
|
sl@0
|
110 |
ClientData clientData, /* Pointer to sqlite3_enable_XXX function */
|
sl@0
|
111 |
Tcl_Interp *interp, /* The TCL interpreter that invoked this command */
|
sl@0
|
112 |
int objc, /* Number of arguments */
|
sl@0
|
113 |
Tcl_Obj *CONST objv[] /* Command arguments */
|
sl@0
|
114 |
){
|
sl@0
|
115 |
const char *zErrFunction = "N/A";
|
sl@0
|
116 |
sqlite3 *db = 0;
|
sl@0
|
117 |
int rc;
|
sl@0
|
118 |
|
sl@0
|
119 |
if( objc!=1 ){
|
sl@0
|
120 |
Tcl_WrongNumArgs(interp, 1, objv, "");
|
sl@0
|
121 |
return TCL_ERROR;
|
sl@0
|
122 |
}
|
sl@0
|
123 |
|
sl@0
|
124 |
/* Open a database. Then close it again. We need to do this so that
|
sl@0
|
125 |
** we have a "closed database handle" to pass to various API functions.
|
sl@0
|
126 |
*/
|
sl@0
|
127 |
rc = sqlite3_open(":memory:", &db);
|
sl@0
|
128 |
if( rc!=SQLITE_OK ){
|
sl@0
|
129 |
zErrFunction = "sqlite3_open";
|
sl@0
|
130 |
goto error_out;
|
sl@0
|
131 |
}
|
sl@0
|
132 |
sqlite3_close(db);
|
sl@0
|
133 |
|
sl@0
|
134 |
|
sl@0
|
135 |
rc = sqlite3_errcode(db);
|
sl@0
|
136 |
if( rc!=SQLITE_MISUSE ){
|
sl@0
|
137 |
zErrFunction = "sqlite3_errcode";
|
sl@0
|
138 |
goto error_out;
|
sl@0
|
139 |
}
|
sl@0
|
140 |
|
sl@0
|
141 |
rc = sqlite3_prepare(db, 0, 0, 0, 0);
|
sl@0
|
142 |
if( rc!=SQLITE_MISUSE ){
|
sl@0
|
143 |
zErrFunction = "sqlite3_prepare";
|
sl@0
|
144 |
goto error_out;
|
sl@0
|
145 |
}
|
sl@0
|
146 |
|
sl@0
|
147 |
rc = sqlite3_prepare_v2(db, 0, 0, 0, 0);
|
sl@0
|
148 |
if( rc!=SQLITE_MISUSE ){
|
sl@0
|
149 |
zErrFunction = "sqlite3_prepare_v2";
|
sl@0
|
150 |
goto error_out;
|
sl@0
|
151 |
}
|
sl@0
|
152 |
|
sl@0
|
153 |
#ifndef SQLITE_OMIT_UTF16
|
sl@0
|
154 |
rc = sqlite3_prepare16(db, 0, 0, 0, 0);
|
sl@0
|
155 |
if( rc!=SQLITE_MISUSE ){
|
sl@0
|
156 |
zErrFunction = "sqlite3_prepare16";
|
sl@0
|
157 |
goto error_out;
|
sl@0
|
158 |
}
|
sl@0
|
159 |
rc = sqlite3_prepare16_v2(db, 0, 0, 0, 0);
|
sl@0
|
160 |
if( rc!=SQLITE_MISUSE ){
|
sl@0
|
161 |
zErrFunction = "sqlite3_prepare16_v2";
|
sl@0
|
162 |
goto error_out;
|
sl@0
|
163 |
}
|
sl@0
|
164 |
#endif
|
sl@0
|
165 |
|
sl@0
|
166 |
return TCL_OK;
|
sl@0
|
167 |
|
sl@0
|
168 |
error_out:
|
sl@0
|
169 |
Tcl_ResetResult(interp);
|
sl@0
|
170 |
Tcl_AppendResult(interp, "Error testing function: ", zErrFunction, 0);
|
sl@0
|
171 |
return TCL_ERROR;
|
sl@0
|
172 |
}
|
sl@0
|
173 |
|
sl@0
|
174 |
/*
|
sl@0
|
175 |
** Register commands with the TCL interpreter.
|
sl@0
|
176 |
*/
|
sl@0
|
177 |
int Sqlitetest9_Init(Tcl_Interp *interp){
|
sl@0
|
178 |
static struct {
|
sl@0
|
179 |
char *zName;
|
sl@0
|
180 |
Tcl_ObjCmdProc *xProc;
|
sl@0
|
181 |
void *clientData;
|
sl@0
|
182 |
} aObjCmd[] = {
|
sl@0
|
183 |
{ "c_misuse_test", c_misuse_test, 0 },
|
sl@0
|
184 |
{ "c_realloc_test", c_realloc_test, 0 },
|
sl@0
|
185 |
{ "c_collation_test", c_collation_test, 0 },
|
sl@0
|
186 |
};
|
sl@0
|
187 |
int i;
|
sl@0
|
188 |
for(i=0; i<sizeof(aObjCmd)/sizeof(aObjCmd[0]); i++){
|
sl@0
|
189 |
Tcl_CreateObjCommand(interp, aObjCmd[i].zName,
|
sl@0
|
190 |
aObjCmd[i].xProc, aObjCmd[i].clientData, 0);
|
sl@0
|
191 |
}
|
sl@0
|
192 |
return TCL_OK;
|
sl@0
|
193 |
}
|