next-jdbc/test/next/jdbc/middleware_test.clj

78 lines
3.2 KiB
Clojure
Raw Normal View History

;; copyright (c) 2019 Sean Corfield, all rights reserved
(ns next.jdbc.middleware-test
2019-11-13 18:52:17 +00:00
(:require [clojure.test :refer [deftest is testing use-fixtures]]
[next.jdbc :as jdbc]
[next.jdbc.middleware :as mw]
[next.jdbc.test-fixtures :refer [with-test-db db ds
default-options]]
[next.jdbc.result-set :as rs]
[next.jdbc.specs :as specs])
(:import (java.sql ResultSet ResultSetMetaData)))
(set! *warn-on-reflection* true)
(use-fixtures :once with-test-db)
(specs/instrument)
(deftest logging-test
(let [logging (atom [])
logger (fn [data _] (swap! logging conj data) data)
log-sql (fn [sql-p opts] (logger sql-p opts) [sql-p opts])
sql-p ["select * from fruit where id in (?,?) order by id desc" 1 4]]
(jdbc/execute! (mw/wrapper (ds))
sql-p
2019-11-16 06:37:42 +00:00
(assoc (default-options)
:builder-fn rs/as-lower-maps
:pre-execute-fn log-sql
:row!-fn logger
:rs!-fn logger))
;; should log four things
(is (= 4 (-> @logging count)))
;; :next.jdbc/sql-params value
(is (= sql-p (-> @logging (nth 0))))
;; first row (with PK 4)
(is (= 4 (-> @logging (nth 1) :fruit/id)))
;; second row (with PK 1)
(is (= 1 (-> @logging (nth 2) :fruit/id)))
;; full result set with two rows
(is (= 2 (-> @logging (nth 3) count)))
(is (= [4 1] (-> @logging (nth 3) (->> (map :fruit/id)))))
;; now repeat without the row logging
(reset! logging [])
(jdbc/execute! (mw/wrapper (ds)
{:builder-fn rs/as-lower-maps
:pre-execute-fn log-sql
:rs!-fn logger})
2019-11-16 06:37:42 +00:00
sql-p
(default-options))
;; should log two things
(is (= 2 (-> @logging count)))
;; :next.jdbc/sql-params value
(is (= sql-p (-> @logging (nth 0))))
;; full result set with two rows
(is (= 2 (-> @logging (nth 1) count)))
(is (= [4 1] (-> @logging (nth 1) (->> (map :fruit/id)))))))
(deftest timing-test
(let [start-fn (fn [sql-p opts]
(swap! (::timing opts) update ::calls inc)
[sql-p (assoc opts ::start (System/nanoTime))])
end-fn (fn [rs opts]
(let [end (System/nanoTime)]
(swap! (::timing opts) update ::total + (- end (::start opts)))
[rs opts]))
timing (atom {::calls 0 ::total 0.0})
sql-p ["select * from fruit where id in (?,?) order by id desc" 1 4]]
(jdbc/execute! (mw/wrapper (ds) {::timing timing
:pre-execute-fn start-fn
:post-execute-fn end-fn})
sql-p)
(jdbc/execute! (mw/wrapper (ds) {::timing timing
:pre-execute-fn start-fn
:post-execute-fn end-fn})
sql-p)
(printf "%20s - %d calls took %,10d nanoseconds\n"
(:dbtype (db)) (::calls @timing) (long (::total @timing)))))