This is the first database that returns lowercase columns in results so there are a lot of conditionals in the tests now. It also returns entire rows on inserts instead of just the generated key.
56 lines
2.5 KiB
Clojure
56 lines
2.5 KiB
Clojure
;; copyright (c) 2019 Sean Corfield, all rights reserved
|
|
|
|
(ns next.jdbc.optional-test
|
|
"Test namespace for the optional builder functions."
|
|
(:require [clojure.string :as str]
|
|
[clojure.test :refer [deftest is testing use-fixtures]]
|
|
[next.jdbc.optional :as opt]
|
|
[next.jdbc.protocols :as p]
|
|
[next.jdbc.test-fixtures :refer [with-test-db ds postgres?]]))
|
|
|
|
(set! *warn-on-reflection* true)
|
|
|
|
(use-fixtures :once with-test-db)
|
|
|
|
(deftest test-map-row-builder
|
|
(testing "default row builder"
|
|
(let [row (p/-execute-one (ds)
|
|
["select * from fruit where id = ?" 1]
|
|
{:builder-fn opt/as-maps})]
|
|
(is (map? row))
|
|
(is (not (contains? row (if (postgres?) :fruit/grade :FRUIT/GRADE))))
|
|
(is (= 1 ((if (postgres?) :fruit/id :FRUIT/ID) row)))
|
|
(is (= "Apple" ((if (postgres?) :fruit/name :FRUIT/NAME) row)))))
|
|
(testing "unqualified row builder"
|
|
(let [row (p/-execute-one (ds)
|
|
["select * from fruit where id = ?" 2]
|
|
{:builder-fn opt/as-unqualified-maps})]
|
|
(is (map? row))
|
|
(is (not (contains? row (if (postgres?) :cost :COST))))
|
|
(is (= 2 ((if (postgres?) :id :ID) row)))
|
|
(is (= "Banana" ((if (postgres?) :name :NAME) row)))))
|
|
(testing "lower-case row builder"
|
|
(let [row (p/-execute-one (ds)
|
|
["select * from fruit where id = ?" 3]
|
|
{:builder-fn opt/as-lower-maps})]
|
|
(is (map? row))
|
|
(is (not (contains? row :fruit/appearance)))
|
|
(is (= 3 (:fruit/id row)))
|
|
(is (= "Peach" (:fruit/name row)))))
|
|
(testing "unqualified lower-case row builder"
|
|
(let [row (p/-execute-one (ds)
|
|
["select * from fruit where id = ?" 4]
|
|
{:builder-fn opt/as-unqualified-lower-maps})]
|
|
(is (map? row))
|
|
(is (= 4 (:id row)))
|
|
(is (= "Orange" (:name row)))))
|
|
(testing "custom row builder"
|
|
(let [row (p/-execute-one (ds)
|
|
["select * from fruit where id = ?" 3]
|
|
{:builder-fn opt/as-modified-maps
|
|
:label-fn str/lower-case
|
|
:qualifier-fn identity})]
|
|
(is (map? row))
|
|
(is (not (contains? row (if (postgres?) :fruit/appearance :FRUIT/appearance))))
|
|
(is (= 3 ((if (postgres?) :fruit/id :FRUIT/id) row)))
|
|
(is (= "Peach" ((if (postgres?) :fruit/name :FRUIT/name) row))))))
|