r9162: case-sensitive changes
[clsql.git] / tests / test-fdml.lisp
1 ;;;; -*- Mode: LISP; Syntax: ANSI-Common-Lisp; Base: 10 -*-
2 ;;;; ======================================================================
3 ;;;; File:    test-fdml.lisp
4 ;;;; Author:  Marcus Pearce <m.t.pearce@city.ac.uk>
5 ;;;; Created: 30/03/2004
6 ;;;; Updated: $Id$
7 ;;;;
8 ;;;; Tests for the CLSQL Functional Data Manipulation Language
9 ;;;; (FDML).
10 ;;;;
11 ;;;; This file is part of CLSQL.
12 ;;;;
13 ;;;; CLSQL users are granted the rights to distribute and use this software
14 ;;;; as governed by the terms of the Lisp Lesser GNU Public License
15 ;;;; (http://opensource.franz.com/preamble.html), also known as the LLGPL.
16 ;;;; ======================================================================
17
18 (in-package #:clsql-tests)
19
20 #.(clsql:locally-enable-sql-reader-syntax)
21
22 (setq *rt-fdml*
23       '(
24         
25 ;; inserts a record using all values only and then deletes it 
26 (deftest :fdml/insert/1
27     (progn
28       (clsql:insert-records :into [employee] 
29                            :values `(11 1 "Yuri" "Gagarin" "gagarin@soviet.org"
30                                      1 1 1.85 t ,(clsql-base:get-time)))
31       (values 
32        (clsql:select [first-name] [last-name] [email]
33                     :from [employee] :where [= [emplid] 11])
34        (progn (clsql:delete-records :from [employee] :where [= [emplid] 11])
35               (clsql:select [*] :from [employee] :where [= [emplid] 11]))))
36   (("Yuri" "Gagarin" "gagarin@soviet.org")) nil)
37
38 ;; inserts a record using attributes and values and then deletes it
39 (deftest :fdml/insert/2
40     (progn
41       (clsql:insert-records :into [employee] 
42                            :attributes '(emplid groupid first_name last_name
43                                          email companyid managerid)
44                            :values '(11 1 "Yuri" "Gagarin" "gagarin@soviet.org"
45                                      1 1))
46       (values 
47        (clsql:select [first-name] [last-name] [email] :from [employee]
48                     :where [= [emplid] 11])
49        (progn (clsql:delete-records :from [employee] :where [= [emplid] 11])
50               (clsql:select [*] :from [employee] :where [= [emplid] 11]))))
51   (("Yuri" "Gagarin" "gagarin@soviet.org")) nil)
52
53 ;; inserts a record using av-pairs and then deletes it
54 (deftest :fdml/insert/3
55     (progn
56       (clsql:insert-records :into [employee] 
57                            :av-pairs'((emplid 11) (groupid 1)
58                                       (first_name "Yuri")
59                                       (last_name "Gagarin")
60                                       (email "gagarin@soviet.org")
61                                       (companyid 1) (managerid 1)))
62       (values 
63        (clsql:select [first-name] [last-name] [email] :from [employee]
64                     :where [= [emplid] 11])
65        (progn (clsql:delete-records :from [employee] :where [= [emplid] 11])
66               (clsql:select [first-name] [last-name] [email] :from [employee]
67                            :where [= [emplid] 11]))))
68   (("Yuri" "Gagarin" "gagarin@soviet.org")) nil)
69
70 ;; inserts a records using a query from another table 
71 (deftest :fdml/insert/4
72     (progn
73       (clsql:create-table [employee2] '(([forename] string)
74                                  ([surname] string)
75                                  ([email] string)))
76       (clsql:insert-records :into [employee2] 
77                      :query [select [first-name] [last-name] [email] 
78                                     :from [employee]]
79                      :attributes '(forename surname email))
80       (prog1
81           (equal (clsql:select [*] :from [employee2])
82                  (clsql:select [first-name] [last-name] [email]
83                               :from [employee]))
84         (clsql:drop-table [employee2] :if-does-not-exist :ignore)))
85   t)
86
87 ;; updates a record using attributes and values and then deletes it
88 (deftest :fdml/update/1
89     (progn
90       (clsql:update-records [employee] 
91                            :attributes '(first_name last_name email)
92                            :values '("Yuri" "Gagarin" "gagarin@soviet.org")
93                            :where [= [emplid] 1])
94       (values 
95        (clsql:select [first-name] [last-name] [email] :from [employee]
96                     :where [= [emplid] 1])
97        (progn
98          (clsql:update-records [employee] 
99                               :av-pairs'((first_name "Vladamir")
100                                          (last_name "Lenin")
101                                          (email "lenin@soviet.org"))
102                               :where [= [emplid] 1])
103          (clsql:select [first-name] [last-name] [email] :from [employee]
104                       :where [= [emplid] 1]))))
105   (("Yuri" "Gagarin" "gagarin@soviet.org"))
106   (("Vladamir" "Lenin" "lenin@soviet.org")))
107
108 ;; updates a record using av-pairs and then deletes it
109 (deftest :fdml/update/2
110     (progn
111       (clsql:update-records [employee] 
112                            :av-pairs'((first_name "Yuri")
113                                       (last_name "Gagarin")
114                                       (email "gagarin@soviet.org"))
115                            :where [= [emplid] 1])
116       (values 
117        (clsql:select [first-name] [last-name] [email] :from [employee]
118                     :where [= [emplid] 1])
119        (progn
120          (clsql:update-records [employee]
121                               :av-pairs'((first_name "Vladamir")
122                                          (last_name "Lenin")
123                                          (email "lenin@soviet.org"))
124                               :where [= [emplid] 1])
125          (clsql:select [first-name] [last-name] [email]
126                       :from [employee] :where [= [emplid] 1]))))
127   (("Yuri" "Gagarin" "gagarin@soviet.org"))
128   (("Vladamir" "Lenin" "lenin@soviet.org")))
129
130
131 (deftest :fdml/query/1
132     (clsql:query "SELECT COUNT(*) FROM EMPLOYEE WHERE (EMAIL LIKE '%org')")
133   (("10")))
134
135 (deftest :fdml/query/2
136     (clsql:query
137      "SELECT FIRST_NAME,LAST_NAME FROM EMPLOYEE WHERE (EMPLID <= 5) ORDER BY LAST_NAME")
138   (("Leonid" "Brezhnev") ("Nikita" "Kruschev") ("Vladamir" "Lenin")
139  ("Josef" "Stalin") ("Leon" "Trotsky")))
140
141   
142 (deftest :fdml/execute-command/1
143     (values
144      (clsql:table-exists-p [foo] :owner *test-database-user*)
145      (progn
146        (clsql:execute-command "create table foo (bar integer)")
147        (clsql:table-exists-p [foo] :owner *test-database-user*))
148      (progn
149        (clsql:execute-command "drop table foo")
150        (clsql:table-exists-p [foo] :owner *test-database-user*)))
151   nil t nil)
152
153
154 ;; compare min, max and average hieghts in inches (they're quite short
155 ;; these guys!) 
156 (deftest :fdml/select/1
157     (let ((max (clsql:select [function "floor"
158                              [/ [* [max [height]] 100] 2.54]]
159                              :from [employee]
160                              :flatp t))
161           (min (clsql:select [function "floor"
162                              [/ [* [min [height]] 100] 2.54]]
163                              :from [employee]
164                              :flatp t))
165           (avg (clsql:select [function "floor"
166                              [avg [/ [* [height] 100] 2.54]]]
167                              :from [employee]
168                              :flatp t)))
169       (apply #'< (mapcar #'(lambda (s) (parse-integer s :junk-allowed t))
170                          (append min avg max))))
171   t)
172
173 (deftest :fdml/select/2
174     (clsql:select [first-name] :from [employee] :flatp t :distinct t
175                  :order-by [first-name])
176   ("Boris" "Josef" "Konstantin" "Leon" "Leonid" "Mikhail" "Nikita" "Vladamir"
177            "Yuri"))
178
179 (deftest :fdml/select/3
180     (clsql:select [first-name] [count [*]] :from [employee]
181                  :group-by [first-name]
182                  :order-by [first-name])
183   (("Boris" "1") ("Josef" "1") ("Konstantin" "1") ("Leon" "1") ("Leonid" "1")
184    ("Mikhail" "1") ("Nikita" "1") ("Vladamir" "2") ("Yuri" "1")))
185
186 (deftest :fdml/select/4
187     (clsql:select [last-name] :from [employee] :where [like [email] "%org"]
188                  :order-by [last-name]
189                  :flatp t)
190   ("Andropov" "Brezhnev" "Chernenko" "Gorbachev" "Kruschev" "Lenin" "Putin"
191               "Stalin" "Trotsky" "Yeltsin"))
192
193 (deftest :fdml/select/5
194     (clsql:select [email] :from [employee] :flatp t 
195                  :where [in [employee emplid]
196                             [select [managerid] :from [employee]]])
197   ("lenin@soviet.org"))
198
199 (deftest :fdml/select/6
200     (if (db-type-has-fancy-math? *test-database-underlying-type*)
201         (mapcar #'(lambda (s) (parse-integer s :junk-allowed t))
202          (clsql:select [function "trunc" [height]] :from [employee]
203                        :flatp t))
204       (mapcar #'(lambda (s) (truncate (parse-integer s :junk-allowed t)))
205        (clsql:select [height] :from [employee] :flatp t)))
206   (1 1 1 1 1 1 1 1 1 1))
207
208 (deftest :fdml/select/7
209     (clsql:select [max [emplid]] :from [employee] :flatp t)
210   ("10"))
211
212 (deftest :fdml/select/8
213     (clsql:select [min [emplid]] :from [employee] :flatp t)
214   ("1"))
215
216 (deftest :fdml/select/9
217     (subseq (car (clsql:select [avg [emplid]] :from [employee] :flatp t)) 0 3)
218   "5.5")
219
220 (deftest :fdml/select/10
221     (clsql:select [last-name] :from [employee]
222                 :where [not [in [emplid]
223                                 [select [managerid] :from [company]]]]
224                 :flatp t
225                 :order-by [last-name])
226   ("Andropov" "Brezhnev" "Chernenko" "Gorbachev" "Kruschev" "Putin" "Stalin"
227               "Trotsky" "Yeltsin"))
228
229 (deftest :fdml/select/11
230     (clsql:select [last-name] :from [employee] :where [married] :flatp t
231                  :order-by [emplid])
232   ("Lenin" "Stalin" "Trotsky"))
233
234 (deftest :fdml/select/12
235     (let ((v 1))
236       (clsql:select [last-name] :from [employee] :where [= [emplid] v]))
237   (("Lenin")))
238
239 ;(deftest :fdml/select/11
240 ;    (clsql:select [emplid] :from [employee]
241 ;                :where [= [emplid] [any [select [companyid] :from [company]]]]
242 ;                :flatp t)
243 ;  ("1"))
244
245 (deftest :fdml/do-query/1
246     (let ((result '()))
247     (clsql:do-query ((name) [select [last-name] :from [employee]
248                                    :order-by [last-name]])
249       (push name result))
250     result)
251  ("Yeltsin" "Trotsky" "Stalin" "Putin" "Lenin" "Kruschev" "Gorbachev"
252             "Chernenko" "Brezhnev" "Andropov")) 
253
254 (deftest :fdml/map-query/1
255     (clsql:map-query 'list #'identity
256                     [select [last-name] :from [employee] :flatp t
257                             :order-by [last-name]])
258   ("Andropov" "Brezhnev" "Chernenko" "Gorbachev" "Kruschev" "Lenin" "Putin"
259               "Stalin" "Trotsky" "Yeltsin"))
260
261 (deftest :fdml/map-query/2
262     (clsql:map-query 'vector #'identity
263                     [select [last-name] :from [employee] :flatp t
264                             :order-by [last-name]])
265   #("Andropov" "Brezhnev" "Chernenko" "Gorbachev" "Kruschev" "Lenin" "Putin"
266     "Stalin" "Trotsky" "Yeltsin"))
267   
268 (deftest :fdml/loop/1
269     (loop for (forename surname)
270       being each tuple in
271       [select [first-name] [last-name] :from [employee] :order-by [last-name]]
272       collect (concatenate 'string forename " " surname))
273   ("Yuri Andropov" "Leonid Brezhnev" "Konstantin Chernenko" "Mikhail Gorbachev"
274                    "Nikita Kruschev" "Vladamir Lenin" "Vladamir Putin"
275                    "Josef Stalin" "Leon Trotsky" "Boris Yeltsin"))
276
277 ;; starts a transaction deletes a record and then rolls back the deletion 
278 (deftest :fdml/transaction/1
279     (let ((results '()))
280       ;; test if we are in a transaction
281       (push (clsql:in-transaction-p) results)
282       ;;start a transaction 
283       (clsql:start-transaction)
284       ;; test if we are in a transaction
285       (push (clsql:in-transaction-p) results)
286       ;;Putin has got to go
287       (clsql:delete-records :from [employee] :where [= [last-name] "Putin"])
288       ;;Should be nil 
289       (push 
290        (clsql:select [*] :from [employee] :where [= [last-name] "Putin"])
291        results)
292       ;;Oh no, he's still there
293       (clsql:rollback)
294       ;; test that we are out of the transaction
295       (push (clsql:in-transaction-p) results)
296       ;; Check that we got him back alright 
297       (push (clsql:select [email] :from [employee] :where [= [last-name] "Putin"]
298                          :flatp t)
299             results)
300       (apply #'values (nreverse results)))
301   nil t nil nil ("putin@soviet.org"))
302
303 ;; starts a transaction, updates a record and then rolls back the update
304 (deftest :fdml/transaction/2
305     (let ((results '()))
306       ;; test if we are in a transaction
307       (push (clsql:in-transaction-p) results)
308       ;;start a transaction 
309       (clsql:start-transaction)
310       ;; test if we are in a transaction
311       (push (clsql:in-transaction-p) results)
312       ;;Putin has got to go
313       (clsql:update-records [employee]
314        :av-pairs '((email "putin-nospam@soviet.org"))
315        :where [= [last-name] "Putin"])
316       ;;Should be new value  
317       (push (clsql:select [email] :from [employee]
318                          :where [= [last-name] "Putin"]
319                          :flatp t)
320             results)
321       ;;Oh no, he's still there
322       (clsql:rollback)
323       ;; test that we are out of the transaction
324       (push (clsql:in-transaction-p) results)
325       ;; Check that we got him back alright 
326       (push (clsql:select [email] :from [employee] :where [= [last-name] "Putin"]
327                          :flatp t)
328             results)
329       (apply #'values (nreverse results)))
330   nil t ("putin-nospam@soviet.org") nil ("putin@soviet.org")) 
331
332 ;; runs an update within a transaction and checks it is committed
333 (deftest :fdml/transaction/3
334     (let ((results '()))
335       ;; check status 
336       (push (clsql:in-transaction-p) results)
337       ;; update records 
338       (push
339        (clsql:with-transaction () 
340          (clsql:update-records [employee] 
341                               :av-pairs '((email "lenin-nospam@soviet.org"))
342                               :where [= [emplid] 1]))
343        results)
344       ;; check status 
345       (push (clsql:in-transaction-p) results)
346       ;; check that was committed 
347       (push (clsql:select [email] :from [employee] :where [= [emplid] 1]
348                          :flatp t)
349             results)
350       ;; undo the changes 
351       (push
352        (clsql:with-transaction () 
353          (clsql:update-records [employee] 
354                               :av-pairs '((email "lenin@soviet.org"))
355                               :where [= [emplid] 1]))
356        results)
357       ;; and check status 
358       (push (clsql:in-transaction-p) results)
359       ;; check that was committed 
360       (push (clsql:select [email] :from [employee] :where [= [emplid] 1]
361                          :flatp t)
362             results)
363       (apply #'values (nreverse results)))
364   nil :committed nil ("lenin-nospam@soviet.org") :committed
365   nil ("lenin@soviet.org"))
366
367 ;; runs a valid update and an invalid one within a transaction and checks
368 ;; that the valid update is rolled back when the invalid one fails. 
369 (deftest :fdml/transaction/4
370     (let ((results '()))
371       ;; check status
372       (push (clsql:in-transaction-p) results)
373       (handler-case 
374           (clsql:with-transaction () 
375             ;; valid update
376             (clsql:update-records [employee] 
377                                   :av-pairs '((email "lenin-nospam@soviet.org"))
378                                   :where [= [emplid] 1])
379             ;; invalid update which generates an error 
380             (clsql:update-records [employee] 
381                                   :av-pairs
382                                   '((emale "lenin-nospam@soviet.org"))
383                                   :where [= [emplid] 1]))
384         (clsql:clsql-error ()
385           (progn
386             ;; check status 
387             (push (clsql:in-transaction-p) results)
388             ;; and check nothing done 
389             (push (clsql:select [email] :from [employee] :where [= [emplid] 1]
390                                :flatp t)
391                   results)
392             (apply #'values (nreverse results))))))
393   nil nil ("lenin@soviet.org"))
394
395 ))
396
397 #.(clsql:restore-sql-reader-syntax-state)