os/persistentdata/persistentstorage/sqlite3api/TEST/SRC/test_func.c
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
/*
sl@0
     2
** 2008 March 19
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
** Code for testing all sorts of SQLite interfaces.  This code
sl@0
    13
** implements new SQL functions used by the test scripts.
sl@0
    14
**
sl@0
    15
** $Id: test_func.c,v 1.13 2008/08/28 02:26:07 drh Exp $
sl@0
    16
*/
sl@0
    17
#include "sqlite3.h"
sl@0
    18
#include "tcl.h"
sl@0
    19
#include <stdlib.h>
sl@0
    20
#include <string.h>
sl@0
    21
#include <assert.h>
sl@0
    22
sl@0
    23
sl@0
    24
/*
sl@0
    25
** Allocate nByte bytes of space using sqlite3_malloc(). If the
sl@0
    26
** allocation fails, call sqlite3_result_error_nomem() to notify
sl@0
    27
** the database handle that malloc() has failed.
sl@0
    28
*/
sl@0
    29
static void *testContextMalloc(sqlite3_context *context, int nByte){
sl@0
    30
  char *z = sqlite3_malloc(nByte);
sl@0
    31
  if( !z && nByte>0 ){
sl@0
    32
    sqlite3_result_error_nomem(context);
sl@0
    33
  }
sl@0
    34
  return z;
sl@0
    35
}
sl@0
    36
sl@0
    37
/*
sl@0
    38
** This function generates a string of random characters.  Used for
sl@0
    39
** generating test data.
sl@0
    40
*/
sl@0
    41
static void randStr(sqlite3_context *context, int argc, sqlite3_value **argv){
sl@0
    42
  static const unsigned char zSrc[] = 
sl@0
    43
     "abcdefghijklmnopqrstuvwxyz"
sl@0
    44
     "ABCDEFGHIJKLMNOPQRSTUVWXYZ"
sl@0
    45
     "0123456789"
sl@0
    46
     ".-!,:*^+=_|?/<> ";
sl@0
    47
  int iMin, iMax, n, r, i;
sl@0
    48
  unsigned char zBuf[1000];
sl@0
    49
sl@0
    50
  /* It used to be possible to call randstr() with any number of arguments,
sl@0
    51
  ** but now it is registered with SQLite as requiring exactly 2.
sl@0
    52
  */
sl@0
    53
  assert(argc==2);
sl@0
    54
sl@0
    55
  iMin = sqlite3_value_int(argv[0]);
sl@0
    56
  if( iMin<0 ) iMin = 0;
sl@0
    57
  if( iMin>=sizeof(zBuf) ) iMin = sizeof(zBuf)-1;
sl@0
    58
  iMax = sqlite3_value_int(argv[1]);
sl@0
    59
  if( iMax<iMin ) iMax = iMin;
sl@0
    60
  if( iMax>=sizeof(zBuf) ) iMax = sizeof(zBuf)-1;
sl@0
    61
  n = iMin;
sl@0
    62
  if( iMax>iMin ){
sl@0
    63
    sqlite3_randomness(sizeof(r), &r);
sl@0
    64
    r &= 0x7fffffff;
sl@0
    65
    n += r%(iMax + 1 - iMin);
sl@0
    66
  }
sl@0
    67
  assert( n<sizeof(zBuf) );
sl@0
    68
  sqlite3_randomness(n, zBuf);
sl@0
    69
  for(i=0; i<n; i++){
sl@0
    70
    zBuf[i] = zSrc[zBuf[i]%(sizeof(zSrc)-1)];
sl@0
    71
  }
sl@0
    72
  zBuf[n] = 0;
sl@0
    73
  sqlite3_result_text(context, (char*)zBuf, n, SQLITE_TRANSIENT);
sl@0
    74
}
sl@0
    75
sl@0
    76
/*
sl@0
    77
** The following two SQL functions are used to test returning a text
sl@0
    78
** result with a destructor. Function 'test_destructor' takes one argument
sl@0
    79
** and returns the same argument interpreted as TEXT. A destructor is
sl@0
    80
** passed with the sqlite3_result_text() call.
sl@0
    81
**
sl@0
    82
** SQL function 'test_destructor_count' returns the number of outstanding 
sl@0
    83
** allocations made by 'test_destructor';
sl@0
    84
**
sl@0
    85
** WARNING: Not threadsafe.
sl@0
    86
*/
sl@0
    87
static int test_destructor_count_var = 0;
sl@0
    88
static void destructor(void *p){
sl@0
    89
  char *zVal = (char *)p;
sl@0
    90
  assert(zVal);
sl@0
    91
  zVal--;
sl@0
    92
  sqlite3_free(zVal);
sl@0
    93
  test_destructor_count_var--;
sl@0
    94
}
sl@0
    95
static void test_destructor(
sl@0
    96
  sqlite3_context *pCtx, 
sl@0
    97
  int nArg,
sl@0
    98
  sqlite3_value **argv
sl@0
    99
){
sl@0
   100
  char *zVal;
sl@0
   101
  int len;
sl@0
   102
  
sl@0
   103
  test_destructor_count_var++;
sl@0
   104
  assert( nArg==1 );
sl@0
   105
  if( sqlite3_value_type(argv[0])==SQLITE_NULL ) return;
sl@0
   106
  len = sqlite3_value_bytes(argv[0]); 
sl@0
   107
  zVal = testContextMalloc(pCtx, len+3);
sl@0
   108
  if( !zVal ){
sl@0
   109
    return;
sl@0
   110
  }
sl@0
   111
  zVal[len+1] = 0;
sl@0
   112
  zVal[len+2] = 0;
sl@0
   113
  zVal++;
sl@0
   114
  memcpy(zVal, sqlite3_value_text(argv[0]), len);
sl@0
   115
  sqlite3_result_text(pCtx, zVal, -1, destructor);
sl@0
   116
}
sl@0
   117
#ifndef SQLITE_OMIT_UTF16
sl@0
   118
static void test_destructor16(
sl@0
   119
  sqlite3_context *pCtx, 
sl@0
   120
  int nArg,
sl@0
   121
  sqlite3_value **argv
sl@0
   122
){
sl@0
   123
  char *zVal;
sl@0
   124
  int len;
sl@0
   125
  
sl@0
   126
  test_destructor_count_var++;
sl@0
   127
  assert( nArg==1 );
sl@0
   128
  if( sqlite3_value_type(argv[0])==SQLITE_NULL ) return;
sl@0
   129
  len = sqlite3_value_bytes16(argv[0]); 
sl@0
   130
  zVal = testContextMalloc(pCtx, len+3);
sl@0
   131
  if( !zVal ){
sl@0
   132
    return;
sl@0
   133
  }
sl@0
   134
  zVal[len+1] = 0;
sl@0
   135
  zVal[len+2] = 0;
sl@0
   136
  zVal++;
sl@0
   137
  memcpy(zVal, sqlite3_value_text16(argv[0]), len);
sl@0
   138
  sqlite3_result_text16(pCtx, zVal, -1, destructor);
sl@0
   139
}
sl@0
   140
#endif
sl@0
   141
static void test_destructor_count(
sl@0
   142
  sqlite3_context *pCtx, 
sl@0
   143
  int nArg,
sl@0
   144
  sqlite3_value **argv
sl@0
   145
){
sl@0
   146
  sqlite3_result_int(pCtx, test_destructor_count_var);
sl@0
   147
}
sl@0
   148
sl@0
   149
/*
sl@0
   150
** Routines for testing the sqlite3_get_auxdata() and sqlite3_set_auxdata()
sl@0
   151
** interface.
sl@0
   152
**
sl@0
   153
** The test_auxdata() SQL function attempts to register each of its arguments
sl@0
   154
** as auxiliary data.  If there are no prior registrations of aux data for
sl@0
   155
** that argument (meaning the argument is not a constant or this is its first
sl@0
   156
** call) then the result for that argument is 0.  If there is a prior
sl@0
   157
** registration, the result for that argument is 1.  The overall result
sl@0
   158
** is the individual argument results separated by spaces.
sl@0
   159
*/
sl@0
   160
static void free_test_auxdata(void *p) {sqlite3_free(p);}
sl@0
   161
static void test_auxdata(
sl@0
   162
  sqlite3_context *pCtx, 
sl@0
   163
  int nArg,
sl@0
   164
  sqlite3_value **argv
sl@0
   165
){
sl@0
   166
  int i;
sl@0
   167
  char *zRet = testContextMalloc(pCtx, nArg*2);
sl@0
   168
  if( !zRet ) return;
sl@0
   169
  memset(zRet, 0, nArg*2);
sl@0
   170
  for(i=0; i<nArg; i++){
sl@0
   171
    char const *z = (char*)sqlite3_value_text(argv[i]);
sl@0
   172
    if( z ){
sl@0
   173
      int n;
sl@0
   174
      char *zAux = sqlite3_get_auxdata(pCtx, i);
sl@0
   175
      if( zAux ){
sl@0
   176
        zRet[i*2] = '1';
sl@0
   177
        assert( strcmp(zAux,z)==0 );
sl@0
   178
      }else {
sl@0
   179
        zRet[i*2] = '0';
sl@0
   180
      }
sl@0
   181
      n = strlen(z) + 1;
sl@0
   182
      zAux = testContextMalloc(pCtx, n);
sl@0
   183
      if( zAux ){
sl@0
   184
        memcpy(zAux, z, n);
sl@0
   185
        sqlite3_set_auxdata(pCtx, i, zAux, free_test_auxdata);
sl@0
   186
      }
sl@0
   187
      zRet[i*2+1] = ' ';
sl@0
   188
    }
sl@0
   189
  }
sl@0
   190
  sqlite3_result_text(pCtx, zRet, 2*nArg-1, free_test_auxdata);
sl@0
   191
}
sl@0
   192
sl@0
   193
/*
sl@0
   194
** A function to test error reporting from user functions. This function
sl@0
   195
** returns a copy of its first argument as the error message.  If the
sl@0
   196
** second argument exists, it becomes the error code.
sl@0
   197
*/
sl@0
   198
static void test_error(
sl@0
   199
  sqlite3_context *pCtx, 
sl@0
   200
  int nArg,
sl@0
   201
  sqlite3_value **argv
sl@0
   202
){
sl@0
   203
  sqlite3_result_error(pCtx, (char*)sqlite3_value_text(argv[0]), -1);
sl@0
   204
  if( nArg==2 ){
sl@0
   205
    sqlite3_result_error_code(pCtx, sqlite3_value_int(argv[1]));
sl@0
   206
  }
sl@0
   207
}
sl@0
   208
sl@0
   209
/*
sl@0
   210
** Implementation of the counter(X) function.  If X is an integer
sl@0
   211
** constant, then the first invocation will return X.  The second X+1.
sl@0
   212
** and so forth.  Can be used (for example) to provide a sequence number
sl@0
   213
** in a result set.
sl@0
   214
*/
sl@0
   215
static void counterFunc(
sl@0
   216
  sqlite3_context *pCtx,   /* Function context */
sl@0
   217
  int nArg,                /* Number of function arguments */
sl@0
   218
  sqlite3_value **argv     /* Values for all function arguments */
sl@0
   219
){
sl@0
   220
  int *pCounter = (int*)sqlite3_get_auxdata(pCtx, 0);
sl@0
   221
  if( pCounter==0 ){
sl@0
   222
    pCounter = sqlite3_malloc( sizeof(*pCounter) );
sl@0
   223
    if( pCounter==0 ){
sl@0
   224
      sqlite3_result_error_nomem(pCtx);
sl@0
   225
      return;
sl@0
   226
    }
sl@0
   227
    *pCounter = sqlite3_value_int(argv[0]);
sl@0
   228
    sqlite3_set_auxdata(pCtx, 0, pCounter, sqlite3_free);
sl@0
   229
  }else{
sl@0
   230
    ++*pCounter;
sl@0
   231
  }
sl@0
   232
  sqlite3_result_int(pCtx, *pCounter);
sl@0
   233
}
sl@0
   234
sl@0
   235
sl@0
   236
/*
sl@0
   237
** This function takes two arguments.  It performance UTF-8/16 type
sl@0
   238
** conversions on the first argument then returns a copy of the second
sl@0
   239
** argument.
sl@0
   240
**
sl@0
   241
** This function is used in cases such as the following:
sl@0
   242
**
sl@0
   243
**      SELECT test_isolation(x,x) FROM t1;
sl@0
   244
**
sl@0
   245
** We want to verify that the type conversions that occur on the
sl@0
   246
** first argument do not invalidate the second argument.
sl@0
   247
*/
sl@0
   248
static void test_isolation(
sl@0
   249
  sqlite3_context *pCtx, 
sl@0
   250
  int nArg,
sl@0
   251
  sqlite3_value **argv
sl@0
   252
){
sl@0
   253
#ifndef SQLITE_OMIT_UTF16
sl@0
   254
  sqlite3_value_text16(argv[0]);
sl@0
   255
  sqlite3_value_text(argv[0]);
sl@0
   256
  sqlite3_value_text16(argv[0]);
sl@0
   257
  sqlite3_value_text(argv[0]);
sl@0
   258
#endif
sl@0
   259
  sqlite3_result_value(pCtx, argv[1]);
sl@0
   260
}
sl@0
   261
sl@0
   262
/*
sl@0
   263
** Invoke an SQL statement recursively.  The function result is the 
sl@0
   264
** first column of the first row of the result set.
sl@0
   265
*/
sl@0
   266
static void test_eval(
sl@0
   267
  sqlite3_context *pCtx, 
sl@0
   268
  int nArg,
sl@0
   269
  sqlite3_value **argv
sl@0
   270
){
sl@0
   271
  sqlite3_stmt *pStmt;
sl@0
   272
  int rc;
sl@0
   273
  sqlite3 *db = sqlite3_context_db_handle(pCtx);
sl@0
   274
  const char *zSql;
sl@0
   275
sl@0
   276
  zSql = (char*)sqlite3_value_text(argv[0]);
sl@0
   277
  rc = sqlite3_prepare_v2(db, zSql, -1, &pStmt, 0);
sl@0
   278
  if( rc==SQLITE_OK ){
sl@0
   279
    rc = sqlite3_step(pStmt);
sl@0
   280
    if( rc==SQLITE_ROW ){
sl@0
   281
      sqlite3_result_value(pCtx, sqlite3_column_value(pStmt, 0));
sl@0
   282
    }
sl@0
   283
    rc = sqlite3_finalize(pStmt);
sl@0
   284
  }
sl@0
   285
  if( rc ){
sl@0
   286
    char *zErr;
sl@0
   287
    assert( pStmt==0 );
sl@0
   288
    zErr = sqlite3_mprintf("sqlite3_prepare_v2() error: %s",sqlite3_errmsg(db));
sl@0
   289
    sqlite3_result_text(pCtx, zErr, -1, sqlite3_free);
sl@0
   290
    sqlite3_result_error_code(pCtx, rc);
sl@0
   291
  }
sl@0
   292
}
sl@0
   293
sl@0
   294
sl@0
   295
static int registerTestFunctions(sqlite3 *db){
sl@0
   296
  static const struct {
sl@0
   297
     char *zName;
sl@0
   298
     signed char nArg;
sl@0
   299
     unsigned char eTextRep; /* 1: UTF-16.  0: UTF-8 */
sl@0
   300
     void (*xFunc)(sqlite3_context*,int,sqlite3_value **);
sl@0
   301
  } aFuncs[] = {
sl@0
   302
    { "randstr",               2, SQLITE_UTF8, randStr    },
sl@0
   303
    { "test_destructor",       1, SQLITE_UTF8, test_destructor},
sl@0
   304
#ifndef SQLITE_OMIT_UTF16
sl@0
   305
    { "test_destructor16",     1, SQLITE_UTF8, test_destructor16},
sl@0
   306
#endif
sl@0
   307
    { "test_destructor_count", 0, SQLITE_UTF8, test_destructor_count},
sl@0
   308
    { "test_auxdata",         -1, SQLITE_UTF8, test_auxdata},
sl@0
   309
    { "test_error",            1, SQLITE_UTF8, test_error},
sl@0
   310
    { "test_error",            2, SQLITE_UTF8, test_error},
sl@0
   311
    { "test_eval",             1, SQLITE_UTF8, test_eval},
sl@0
   312
    { "test_isolation",        2, SQLITE_UTF8, test_isolation},
sl@0
   313
    { "test_counter",          1, SQLITE_UTF8, counterFunc},
sl@0
   314
  };
sl@0
   315
  int i;
sl@0
   316
sl@0
   317
  for(i=0; i<sizeof(aFuncs)/sizeof(aFuncs[0]); i++){
sl@0
   318
    sqlite3_create_function(db, aFuncs[i].zName, aFuncs[i].nArg,
sl@0
   319
        aFuncs[i].eTextRep, 0, aFuncs[i].xFunc, 0, 0);
sl@0
   320
  }
sl@0
   321
  return SQLITE_OK;
sl@0
   322
}
sl@0
   323
sl@0
   324
/*
sl@0
   325
** TCLCMD:  autoinstall_test_functions
sl@0
   326
**
sl@0
   327
** Invoke this TCL command to use sqlite3_auto_extension() to cause
sl@0
   328
** the standard set of test functions to be loaded into each new
sl@0
   329
** database connection.
sl@0
   330
*/
sl@0
   331
static int autoinstall_test_funcs(
sl@0
   332
  void * clientData,
sl@0
   333
  Tcl_Interp *interp,
sl@0
   334
  int objc,
sl@0
   335
  Tcl_Obj *CONST objv[]
sl@0
   336
){
sl@0
   337
  extern int Md5_Register(sqlite3*);
sl@0
   338
  int rc = sqlite3_auto_extension((void*)registerTestFunctions);
sl@0
   339
  if( rc==SQLITE_OK ){
sl@0
   340
    rc = sqlite3_auto_extension((void*)Md5_Register);
sl@0
   341
  }
sl@0
   342
  Tcl_SetObjResult(interp, Tcl_NewIntObj(rc));
sl@0
   343
  return TCL_OK;
sl@0
   344
}
sl@0
   345
sl@0
   346
/*
sl@0
   347
** A bogus step function and finalizer function.
sl@0
   348
*/
sl@0
   349
static void tStep(sqlite3_context *a, int b, sqlite3_value **c){}
sl@0
   350
static void tFinal(sqlite3_context *a){}
sl@0
   351
sl@0
   352
sl@0
   353
/*
sl@0
   354
** tclcmd:  abuse_create_function
sl@0
   355
**
sl@0
   356
** Make various calls to sqlite3_create_function that do not have valid
sl@0
   357
** parameters.  Verify that the error condition is detected and reported.
sl@0
   358
*/
sl@0
   359
static int abuse_create_function(
sl@0
   360
  void * clientData,
sl@0
   361
  Tcl_Interp *interp,
sl@0
   362
  int objc,
sl@0
   363
  Tcl_Obj *CONST objv[]
sl@0
   364
){
sl@0
   365
  extern int getDbPointer(Tcl_Interp*, const char*, sqlite3**);
sl@0
   366
  sqlite3 *db;
sl@0
   367
  int rc;
sl@0
   368
  int mxArg;
sl@0
   369
sl@0
   370
  if( getDbPointer(interp, Tcl_GetString(objv[1]), &db) ) return TCL_ERROR;
sl@0
   371
sl@0
   372
  rc = sqlite3_create_function(db, "tx", 1, SQLITE_UTF8, 0, tStep,tStep,tFinal);
sl@0
   373
  if( rc!=SQLITE_ERROR ) goto abuse_err;
sl@0
   374
  if( sqlite3_errcode(db)!=SQLITE_ERROR ) goto abuse_err;
sl@0
   375
  if( strcmp(sqlite3_errmsg(db), "bad parameters")!=0 ) goto abuse_err;
sl@0
   376
sl@0
   377
  rc = sqlite3_create_function(db, "tx", 1, SQLITE_UTF8, 0, tStep, tStep, 0);
sl@0
   378
  if( rc!=SQLITE_ERROR ) goto abuse_err;
sl@0
   379
  if( sqlite3_errcode(db)!=SQLITE_ERROR ) goto abuse_err;
sl@0
   380
  if( strcmp(sqlite3_errmsg(db), "bad parameters")!=0 ) goto abuse_err;
sl@0
   381
sl@0
   382
  rc = sqlite3_create_function(db, "tx", 1, SQLITE_UTF8, 0, tStep, 0, tFinal);
sl@0
   383
  if( rc!=SQLITE_ERROR ) goto abuse_err;
sl@0
   384
  if( sqlite3_errcode(db)!=SQLITE_ERROR ) goto abuse_err;
sl@0
   385
  if( strcmp(sqlite3_errmsg(db), "bad parameters")!=0 ) goto abuse_err;
sl@0
   386
sl@0
   387
  rc = sqlite3_create_function(db, "tx", 1, SQLITE_UTF8, 0, 0, 0, tFinal);
sl@0
   388
  if( rc!=SQLITE_ERROR ) goto abuse_err;
sl@0
   389
  if( sqlite3_errcode(db)!=SQLITE_ERROR ) goto abuse_err;
sl@0
   390
  if( strcmp(sqlite3_errmsg(db), "bad parameters")!=0 ) goto abuse_err;
sl@0
   391
sl@0
   392
  rc = sqlite3_create_function(db, "tx", 1, SQLITE_UTF8, 0, 0, tStep, 0);
sl@0
   393
  if( rc!=SQLITE_ERROR ) goto abuse_err;
sl@0
   394
  if( sqlite3_errcode(db)!=SQLITE_ERROR ) goto abuse_err;
sl@0
   395
  if( strcmp(sqlite3_errmsg(db), "bad parameters")!=0 ) goto abuse_err;
sl@0
   396
sl@0
   397
  rc = sqlite3_create_function(db, "tx", -2, SQLITE_UTF8, 0, tStep, 0, 0);
sl@0
   398
  if( rc!=SQLITE_ERROR ) goto abuse_err;
sl@0
   399
  if( sqlite3_errcode(db)!=SQLITE_ERROR ) goto abuse_err;
sl@0
   400
  if( strcmp(sqlite3_errmsg(db), "bad parameters")!=0 ) goto abuse_err;
sl@0
   401
sl@0
   402
  rc = sqlite3_create_function(db, "tx", 128, SQLITE_UTF8, 0, tStep, 0, 0);
sl@0
   403
  if( rc!=SQLITE_ERROR ) goto abuse_err;
sl@0
   404
  if( sqlite3_errcode(db)!=SQLITE_ERROR ) goto abuse_err;
sl@0
   405
  if( strcmp(sqlite3_errmsg(db), "bad parameters")!=0 ) goto abuse_err;
sl@0
   406
sl@0
   407
  rc = sqlite3_create_function(db, "funcxx"
sl@0
   408
       "_123456789_123456789_123456789_123456789_123456789"
sl@0
   409
       "_123456789_123456789_123456789_123456789_123456789"
sl@0
   410
       "_123456789_123456789_123456789_123456789_123456789"
sl@0
   411
       "_123456789_123456789_123456789_123456789_123456789"
sl@0
   412
       "_123456789_123456789_123456789_123456789_123456789",
sl@0
   413
       1, SQLITE_UTF8, 0, tStep, 0, 0);
sl@0
   414
  if( rc!=SQLITE_ERROR ) goto abuse_err;
sl@0
   415
  if( sqlite3_errcode(db)!=SQLITE_ERROR ) goto abuse_err;
sl@0
   416
  if( strcmp(sqlite3_errmsg(db), "bad parameters")!=0 ) goto abuse_err;
sl@0
   417
sl@0
   418
  /* This last function registration should actually work.  Generate
sl@0
   419
  ** a no-op function (that always returns NULL) and which has the
sl@0
   420
  ** maximum-length function name and the maximum number of parameters.
sl@0
   421
  */
sl@0
   422
  sqlite3_limit(db, SQLITE_LIMIT_FUNCTION_ARG, 10000);
sl@0
   423
  mxArg = sqlite3_limit(db, SQLITE_LIMIT_FUNCTION_ARG, -1);
sl@0
   424
  rc = sqlite3_create_function(db, "nullx"
sl@0
   425
       "_123456789_123456789_123456789_123456789_123456789"
sl@0
   426
       "_123456789_123456789_123456789_123456789_123456789"
sl@0
   427
       "_123456789_123456789_123456789_123456789_123456789"
sl@0
   428
       "_123456789_123456789_123456789_123456789_123456789"
sl@0
   429
       "_123456789_123456789_123456789_123456789_123456789",
sl@0
   430
       mxArg, SQLITE_UTF8, 0, tStep, 0, 0);
sl@0
   431
  if( rc!=SQLITE_OK ) goto abuse_err;
sl@0
   432
                                
sl@0
   433
  return TCL_OK;
sl@0
   434
sl@0
   435
abuse_err:
sl@0
   436
  Tcl_AppendResult(interp, "sqlite3_create_function abused test failed", 
sl@0
   437
                   (char*)0);
sl@0
   438
  return TCL_ERROR;
sl@0
   439
}
sl@0
   440
sl@0
   441
sl@0
   442
sl@0
   443
/*
sl@0
   444
** Register commands with the TCL interpreter.
sl@0
   445
*/
sl@0
   446
int Sqlitetest_func_Init(Tcl_Interp *interp){
sl@0
   447
  static struct {
sl@0
   448
     char *zName;
sl@0
   449
     Tcl_ObjCmdProc *xProc;
sl@0
   450
  } aObjCmd[] = {
sl@0
   451
     { "autoinstall_test_functions",    autoinstall_test_funcs },
sl@0
   452
     { "abuse_create_function",         abuse_create_function  },
sl@0
   453
  };
sl@0
   454
  int i;
sl@0
   455
  extern int Md5_Register(sqlite3*);
sl@0
   456
sl@0
   457
  for(i=0; i<sizeof(aObjCmd)/sizeof(aObjCmd[0]); i++){
sl@0
   458
    Tcl_CreateObjCommand(interp, aObjCmd[i].zName, aObjCmd[i].xProc, 0, 0);
sl@0
   459
  }
sl@0
   460
  sqlite3_initialize();
sl@0
   461
  sqlite3_auto_extension((void*)registerTestFunctions);
sl@0
   462
  sqlite3_auto_extension((void*)Md5_Register);
sl@0
   463
  return TCL_OK;
sl@0
   464
}