63f1cd356dd305468e01f05d58760dec51bf6506
[clsql.git] / tests / datasets.lisp
1 ;;;; Proposed new file in clsql-tests to enable abstracting datasets for reuse.
2 ;;;;
3 ;;;; The core is def-datset and with-dataset that respectively define a set,
4 ;;;; and enable one for a dynamic scope. Datasets will normally be setup and
5 ;;;; torn down in the scope of one test, which may impose a computation
6 ;;;; overhead, but enables simpler tests by not worrying about side-effects
7 ;;;; between tests.
8 ;;;;
9 ;;;; In general datasets should be database agnostic, but because the code
10 ;;;; is only run in the scope of a test, if a test is excluded for a backend
11 ;;;; or some other reason then it is never run hence doesn't cause problems.
12
13 (in-package #:clsql-tests)
14
15 (defparameter *dataset-debug-on-error* nil
16   "If we get an error while loading or cleaning up the dataset,
17 should we debug (T) or just print and quit.")
18
19 (defun generic-error (e)
20   (when (and *dataset-debug-on-error*
21              *debugger-hook*)
22     (invoke-debugger e))
23   (fresh-line *error-output*)
24   (princ e *error-output*)
25   (throw 'quit-dataset e))
26
27 (defmacro def-dataset (name &body body)
28   "Define a dataset"
29   ;;probably just shove this into a param, perhaps a marginal
30   ;; bit of processing first.
31   `(defparameter ,name ',body))
32
33 (defmacro with-dataset (name &body body)
34   "Use a dataset in a dynamic scope, e.g. a single test.
35 1. Before the body:
36   * :setup is run
37   * :data is loaded
38 2. Body
39 3. :cleanup always happens"
40   `(catch 'quit-dataset
41      (unwind-protect
42           (progn 
43             (restart-case (%dataset-init ,name)
44               (retry-dataset-init ()
45                 :report ,(format nil "Retry dataset('~a) init: (with any dataset changes)"
46                                 (symbol-name name))
47                 (%dataset-init ,name))
48               (skip-this-test ()
49                 :report "FAIL and run the next test"
50                 (throw 'quit-dataset :data-set-failure)))
51             ,@body)
52        (%dataset-cleanup ,name))))
53
54
55 (defun %dataset-dispatch (arg)
56   "For use with def-dataset and with-dataset, tries to DWIM."
57   (etypecase arg
58     (string (clsql-sys:execute-command arg))  ;treat it as a sql command.
59     ((or function symbol) (funcall arg))       ;run functions
60     (list
61        (case (first arg)
62          ((function lambda) (%dataset-dispatch (eval arg))) ;#' forms, lambdas
63          (progn (mapc #'%dataset-dispatch (rest arg)))    ; (progn "asdf" "ff")
64          (ignore-errors (ignore-errors (mapc #'%dataset-dispatch (rest arg))))
65          (t (mapc #'%dataset-dispatch arg)))    ;otherwise implicit progn
66        )))
67
68 (defun %dataset-init (name)
69   "Run initialization code and fill database for given dataset."
70         ;;find items that looks like '(:setup ...),
71         ;; dispatch the rest.
72         (let ((setup (rest (find :setup name :key #'first)))
73               (sqldata (rest (find :sqldata name :key #'first)))
74               (objdata (rest (find :objdata name :key #'first))))
75           (when setup
76             (%dataset-dispatch setup))
77           (when sqldata
78             ;;run raw sql insert statements
79             (destructuring-bind (table-name columns &rest values-list) sqldata
80               (dolist (v values-list)
81                 (clsql-sys:execute-command
82                  (format nil
83                          "INSERT INTO ~a (~a) VALUES (~a)"
84                          table-name columns v)))))
85           (when objdata
86             ;;presumed to be view-class objects, force them to insert.
87             (dolist (o objdata)
88               (setf (slot-value o 'clsql-sys::view-database) nil)
89               (clsql-sys:update-records-from-instance o)))))
90
91 (defun %dataset-cleanup (name)
92   "Run cleanup code associated with the given dataset."
93   (restart-case 
94       (handler-bind ((error #'generic-error))
95         (let ((cleanup (rest (find :cleanup name :key #'first))))
96           (when cleanup
97             (%dataset-dispatch cleanup))))
98     (retry-dataset-cleanup ()
99       :report "Retry dataset cleanup (with any dataset changes)"
100       (%dataset-cleanup name))
101     (skip-cleanup () nil)))
102
103
104 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
105 ;;; Example Test Code
106
107 ;;incomplete example taken from test-init
108 ;; (def-dataset *employees*
109 ;;   (:setup "CREATE TABLE employee
110 ;; (
111 ;;   emplid integer NOT NULL,
112 ;;   groupid integer NOT NULL,
113 ;;   first_name character varying(30),
114 ;;   last_name character varying(30),
115 ;;   email character varying(100),
116 ;;   ecompanyid integer,
117 ;;   managerid integer,
118 ;;   height double,
119 ;;   married boolean,
120 ;;   birthday timestamp without time zone,
121 ;;   bd_utime bigint,
122 ;;   CONSTRAINT employeepk PRIMARY KEY (emplid, groupid),
123 ;;   CONSTRAINT employee_emplid_key UNIQUE (emplid)
124 ;; )
125 ;; ")
126 ;;   ;;alternatively setup can still be done as
127 ;;   ;;(:setup #'(lambda () (create-view-from-class ...)))
128 ;;   (:sqldata "employees" "emplid,groupid,married,height,first_name,last_name"
129 ;;          "1,1,false,1.5,'Napolean', 'Bonaparte'"
130 ;;          (format nil "1,1,true,~a,'Vladimir','Lenin'" (1+ (random 1.00))))
131 ;;   (:cleanup "DROP TABLE EMPLOYEES"))
132