]> git.ipfire.org Git - thirdparty/sqlite.git/commitdiff
SQLTester: add print command and improve argument error reporting infrastructure.
authorstephan <stephan@noemail.net>
Tue, 8 Aug 2023 09:45:33 +0000 (09:45 +0000)
committerstephan <stephan@noemail.net>
Tue, 8 Aug 2023 09:45:33 +0000 (09:45 +0000)
FossilOrigin-Name: 1b6e84f6aa5c7626a308b5e8efe5c3d83ec8e7eaa803f047576b7c65333c2d44

ext/jni/src/org/sqlite/jni/Tester1.java
ext/jni/src/org/sqlite/jni/tester/SQLTester.java
ext/jni/src/org/sqlite/jni/tester/TestScript.java
ext/jni/src/tests/000_first.test
manifest
manifest.uuid

index b255910614a8c1b0402f1ce0b49a49864982e8f4..57df78e9f6734a4d08066d42f834fed0c7c743c6 100644 (file)
@@ -25,14 +25,25 @@ public class Tester1 {
   private static final OutputPointer.sqlite3_stmt outStmt
     = new OutputPointer.sqlite3_stmt();
 
-  public static <T> void out(T val){
+  public static void out(Object val){
     System.out.print(val);
   }
 
-  public static <T> void outln(T val){
+  public static void outln(Object val){
     System.out.println(val);
   }
 
+  @SuppressWarnings("unchecked")
+  public static void out(Object... vals){
+    int n = 0;
+    for(Object v : vals) out((n++>0 ? " " : "")+v);
+  }
+
+  @SuppressWarnings("unchecked")
+  public static void outln(Object... vals){
+    out(vals); out("\n");
+  }
+
   static int affirmCount = 0;
   public static void affirm(Boolean v){
     ++affirmCount;
@@ -42,8 +53,8 @@ public class Tester1 {
   }
 
   private static void test1(){
-    outln("libversion_number: "
-          sqlite3_libversion_number()
+    outln("libversion_number:",
+          sqlite3_libversion_number()
           + "\n"
           + sqlite3_libversion()
           + "\n"
index a1ede7184059223b7c3b8507a72eed08d6b75ca2..8dcd88c7d757d3eb0fbcc31792f05795720c3981 100644 (file)
@@ -15,6 +15,7 @@
 package org.sqlite.jni.tester;
 import java.util.List;
 import java.util.ArrayList;
+import org.sqlite.jni.*;
 import static org.sqlite.jni.SQLite3Jni.*;
 
 /**
@@ -30,8 +31,10 @@ public class SQLTester {
   private final Outer outer = new Outer();
   private final StringBuilder inputBuffer = new StringBuilder();
   private String nullView;
-  private int totalTestCount = 0;
-  private int testCount;
+  private int nTotalTest = 0;
+  private int nTestFile = 0;
+  private int nTest;
+  private sqlite3[] aDb = {};
 
   public SQLTester(){
     reset();
@@ -51,6 +54,11 @@ public class SQLTester {
     outer.outln(vals);
   }
 
+  @SuppressWarnings("unchecked")
+  public void out(Object... vals){
+    outer.out(vals);
+  }
+
   //! Adds the given test script to the to-test list.
   public void addTestScript(String filename){
     listInFiles.add(filename);
@@ -61,19 +69,29 @@ public class SQLTester {
     // process each input file
     for(String f : listInFiles){
       reset();
+      ++nTestFile;
       final TestScript ts = new TestScript(f);
       ts.setVerbose(this.outer.getVerbose());
-      verbose("Test",ts.getName(),"...");
+      verbose(">>> Test",ts.getName(),"...");
       ts.run(this);
-      verbose("Ran",testCount,"test(s).");
+      verbose("<<< Ran",nTest,"test(s) in",f);
     }
   }
 
-  void resetInputBuffer(){
-    inputBuffer.delete(0, this.inputBuffer.length());
+  private void resetDbs(){
+    for(sqlite3 db : aDb) sqlite3_close_v2(db);
+  }
+
+  StringBuilder resetInputBuffer(){
+    inputBuffer.delete(0, inputBuffer.length());
+    return inputBuffer;
+  }
+
+  StringBuilder getInputBuffer(){
+    return inputBuffer;
   }
 
-  String getInputBuffer(){
+  String getInputBufferText(){
     return inputBuffer.toString();
   }
 
@@ -84,17 +102,15 @@ public class SQLTester {
   }
 
   void reset(){
-    testCount = 0;
+    nTest = 0;
     nullView = "nil";
     resetInputBuffer();
+    resetDbs();
   }
 
   void setNullValue(String v){nullView = v;}
 
-  void incrementTestCounter(){
-    ++testCount;
-    ++totalTestCount;
-  }
+  void incrementTestCounter(){ ++nTest; ++nTotalTest; }
 
   public static void main(String[] argv) throws Exception{
     final SQLTester t = new SQLTester();
@@ -112,21 +128,49 @@ public class SQLTester {
       t.addTestScript(a);
     }
     t.runTests();
+    t.outer.outln("Processed",t.nTotalTest,"test(s) in",t.nTestFile,"file(s).");
   }
 }
 
+/**
+   Base class for test script commands.
+
+   Each subclass must have a ctor with this signature:
+
+   (SQLTester testContext, String[] argv, String content) throws Exception
+
+   argv is a list with the command name followed by any
+   arguments to that command. The argcCheck() method provides
+   very basic argc validation.
+
+   The content is any text content which was specified after the
+   command. Any command which does not permit content must pass that
+   argument to affirmNoContent() in their constructor.
+
+   Tests must throw on error.
+*/
 class Command {
   protected SQLTester tester;
   Command(SQLTester t){tester = t;}
 
-  protected final void badArg(Object... msg){
+  protected final void toss(Class<? extends Exception> errorType, Object... msg) throws Exception {
     StringBuilder sb = new StringBuilder();
     int i = 0;
     for(Object s : msg) sb.append(((0==i++) ? "" : " ")+s);
-    throw new IllegalArgumentException(sb.toString());
+    final java.lang.reflect.Constructor<? extends Exception> ctor =
+      errorType.getConstructor(String.class);
+    throw ctor.newInstance(sb.toString());
+  }
+
+  protected final void toss(Object... msg) throws Exception{
+    toss(RuntimeException.class, msg);
+  }
+
+  protected final void badArg(Object... msg) throws Exception{
+    toss(IllegalArgumentException.class, msg);
   }
 
-  protected final void argcCheck(String[] argv, int min, int max){
+  protected final void argcCheck(String[] argv, int min, int max) throws Exception{
     int argc = argv.length-1;
     if(argc<min || argc>max){
       if( min==max ) badArg(argv[0],"requires exactly",min,"argument(s)");
@@ -134,11 +178,11 @@ class Command {
     }
   }
 
-  protected final void argcCheck(String[] argv, int argc){
+  protected final void argcCheck(String[] argv, int argc) throws Exception{
     argcCheck(argv, argc, argc);
   }
 
-  protected void affirmNoContent(String content){
+  protected void affirmNoContent(String content) throws Exception{
     if(null != content){
       badArg(this.getClass().getName(),"does not accept content.");
     }
@@ -146,7 +190,7 @@ class Command {
 }
 
 class DbCommand extends Command {
-  public DbCommand(SQLTester t, String[] argv, String content){
+  public DbCommand(SQLTester t, String[] argv, String content) throws Exception{
     super(t);
     argcCheck(argv,1);
     affirmNoContent(content);
@@ -155,7 +199,7 @@ class DbCommand extends Command {
 }
 
 class NullCommand extends Command {
-  public NullCommand(SQLTester t, String[] argv, String content){
+  public NullCommand(SQLTester t, String[] argv, String content) throws Exception{
     super(t);
     argcCheck(argv,1);
     affirmNoContent(content);
@@ -164,20 +208,28 @@ class NullCommand extends Command {
   }
 }
 
+class PrintCommand extends Command {
+  public PrintCommand(SQLTester t, String[] argv, String content) throws Exception{
+    super(t);
+    argcCheck(argv,0);
+    t.outln(content);
+  }
+}
+
 class ResultCommand extends Command {
-  public ResultCommand(SQLTester t, String[] argv, String content){
+  public ResultCommand(SQLTester t, String[] argv, String content) throws Exception{
     super(t);
     argcCheck(argv,0);
-    t.verbose(argv[0],"command is TODO");
+    //t.verbose(argv[0],"command is TODO");
     t.incrementTestCounter();
   }
 }
 
 class TestCaseCommand extends Command {
-  public TestCaseCommand(SQLTester t, String[] argv, String content){
+  public TestCaseCommand(SQLTester t, String[] argv, String content) throws Exception{
     super(t);
     argcCheck(argv,1);
-    t.verbose(argv[0],argv[1]);
+    //t.verbose(argv[0],argv[1]);
   }
 }
 
@@ -186,6 +238,7 @@ class CommandDispatcher {
     switch(name){
       case "db": return DbCommand.class;
       case "null": return NullCommand.class;
+      case "print": return PrintCommand.class;
       case "result": return ResultCommand.class;
       case "testcase": return TestCaseCommand.class;
       default: return null;
index c27528a3ae30557963c115189bdc8776f703e171..c1e26e7a0a23914d9f91b0efa114a709c2453e51 100644 (file)
@@ -90,7 +90,19 @@ class TestScript {
 
   /**
      Chop script up into chunks containing individual commands and
-     their inputs.
+     their inputs. The approach taken here is not as robust as
+     line-by-line parsing would be but the framework is structured
+     such that we could replace this part without unduly affecting the
+     evaluation bits. The potential problems with this approach
+     include:
+
+     - It's potentially possible that it will strip content out of a
+     testcase block.
+
+     - It loses all file location information, so we can't report line
+     numbers of errors.
+
+     If/when that becomes a problem, it can be refactored.
   */
   private List<String> chunkContent(){
     if( ignored ) return null;
index aaec5e08b5a42f8b0f13be78e1c740511e5cf198..9b79afbe68b73b9ff14248d7d459625ea644d8f8 100644 (file)
@@ -5,6 +5,8 @@
 junk
 
 --null zilch
+--print
+This is from the print command.
 --db 1
 --- also ignored
 --testcase first
index 8999d330f110ca1f44b72eb5a2437b7015284ea6..ff02858a35e96b119cd1bf7a1a643972ed3a2b9c 100644 (file)
--- a/manifest
+++ b/manifest
@@ -1,5 +1,5 @@
-C Add\smissing\slicense\sheader.\sMinor\scleanups\sin\sSQLTester.
-D 2023-08-08T00:59:40.520
+C SQLTester:\sadd\sprint\scommand\sand\simprove\sargument\serror\sreporting\sinfrastructure.
+D 2023-08-08T09:45:33.280
 F .fossil-settings/empty-dirs dbb81e8fc0401ac46a1491ab34a7f2c7c0452f2f06b54ebb845d024ca8283ef1
 F .fossil-settings/ignore-glob 35175cdfcf539b2318cb04a9901442804be81cd677d8b889fcc9149c21f239ea
 F LICENSE.md df5091916dbb40e6e9686186587125e1b2ff51f022cc334e886c19a0e9982724
@@ -252,7 +252,7 @@ F ext/jni/src/org/sqlite/jni/ProgressHandler.java 6f62053a828a572de809828b1ee495
 F ext/jni/src/org/sqlite/jni/RollbackHook.java b04c8abcc6ade44a8a57129e33765793f69df0ba909e49ba18d73f4268d92564
 F ext/jni/src/org/sqlite/jni/SQLFunction.java 09ce81c1c637e31c3a830d4c859cce95d65f5e02ff45f8bd1985b3479381bc46
 F ext/jni/src/org/sqlite/jni/SQLite3Jni.java 21b828cb61984977c7b2a0cbd803f0c15dd79ff524ab94d3ce52648c011b2c9c
-F ext/jni/src/org/sqlite/jni/Tester1.java 55bf9c35c4a5649bdfb6ce940117d33ec24a6722bc252fadf7bc7102b9e94d6a
+F ext/jni/src/org/sqlite/jni/Tester1.java 57404879fbea78f0b405b7643abb03dad0a6ce6cea9ec0c4ef55ea40267be565
 F ext/jni/src/org/sqlite/jni/TesterFts5.java cf2d687baafffdeba219b77cf611fd47a0556248820ea794ae3e8259bfbdc5ee
 F ext/jni/src/org/sqlite/jni/Tracer.java a5cece9f947b0af27669b8baec300b6dd7ff859c3e6a6e4a1bd8b50f9714775d
 F ext/jni/src/org/sqlite/jni/UpdateHook.java e58645a1727f8a9bbe72dc072ec5b40d9f9362cb0aa24acfe93f49ff56a9016d
@@ -265,10 +265,10 @@ F ext/jni/src/org/sqlite/jni/sqlite3_context.java d26573fc7b309228cb49786e907859
 F ext/jni/src/org/sqlite/jni/sqlite3_stmt.java 78e6d1b95ac600a9475e9db4623f69449322b0c93d1bd4e1616e76ed547ed9fc
 F ext/jni/src/org/sqlite/jni/sqlite3_value.java 3d1d4903e267bc0bc81d57d21f5e85978eff389a1a6ed46726dbe75f85e6914a
 F ext/jni/src/org/sqlite/jni/tester/Outer.java c35a54bd3fd3363ba2abb5533453454d8ffe3f942c9a37a7921c8f6739762e82
-F ext/jni/src/org/sqlite/jni/tester/SQLTester.java d89dc9921b41aea67ee3c69e763671467042b33b62085aa7a44444856c4eca3f
-F ext/jni/src/org/sqlite/jni/tester/TestScript.java 6a631e2ecce24734bd93631ce00446ed109aaeb1ea6666f7a8aff74d96221a6a
+F ext/jni/src/org/sqlite/jni/tester/SQLTester.java 1832399b73a1e246892149cbfad0ca5b8cf1ed69072322059fa9a14b2da2b1f1
+F ext/jni/src/org/sqlite/jni/tester/TestScript.java 38652e01cab9c07b20741829f54ef2f4a5c25a73b2c77213dd9198d4268acc51
 F ext/jni/src/org/sqlite/jni/tester/test-script-interpreter.md 2627f8ac7c3d3f502404d9a9b8481bad5c2d11df7fdf25fbd0e1dbd2bcaa54c3
-F ext/jni/src/tests/000_first.test 0a066e5e30189545ca4f3586d45db6c08195a50bd2f00907b4d6a3727ff58c02
+F ext/jni/src/tests/000_first.test 00b2347d4b974e67682859c292bc0d200788ab3f462eac922b8036f4e07114fc
 F ext/jni/src/tests/010_ignored.test ce2de6742ff1bf98d8976fda0f260ff3d280e8f8c0a99309fb59fcfef2556fcd
 F ext/lsm1/Makefile a553b728bba6c11201b795188c5708915cc4290f02b7df6ba7e8c4c943fd5cd9
 F ext/lsm1/Makefile.msc f8c878b467232226de288da320e1ac71c131f5ec91e08b21f502303347260013
@@ -2089,8 +2089,8 @@ F vsixtest/vsixtest.tcl 6a9a6ab600c25a91a7acc6293828957a386a8a93
 F vsixtest/vsixtest.vcxproj.data 2ed517e100c66dc455b492e1a33350c1b20fbcdc
 F vsixtest/vsixtest.vcxproj.filters 37e51ffedcdb064aad6ff33b6148725226cd608e
 F vsixtest/vsixtest_TemporaryKey.pfx e5b1b036facdb453873e7084e1cae9102ccc67a0
-P 9e61af75ac83e74487a6ae681ee3ff891d8cf1f1d23bf895e9e3963ddf6eaf28
-R 75e2a8b50272267a155f3645b409db9d
+P 5be50fd5887e5378f7d66405bff3a44117a826a17e5f1a18c5129d1109ecdae2
+R 8128e06f40a69e4ebe18ddcc9febcc5a
 U stephan
-Z fbbe7908dd24ba8c5b8dfecd37f39fe7
+Z d82fef86e57475799cbc6287645847ba
 # Remove this line to create a well-formed Fossil manifest.
index fa8b36a1f2b1b4720481c61632352850f353e516..4a70ce0c9304c92070d9c922ca32d878464854e1 100644 (file)
@@ -1 +1 @@
-5be50fd5887e5378f7d66405bff3a44117a826a17e5f1a18c5129d1109ecdae2
\ No newline at end of file
+1b6e84f6aa5c7626a308b5e8efe5c3d83ec8e7eaa803f047576b7c65333c2d44
\ No newline at end of file