Skip to content
Snippets Groups Projects
Commit b607a80e authored by Cam Saül's avatar Cam Saül
Browse files

(partial) test fix

parent 7537c452
No related branches found
No related tags found
No related merge requests found
(ns metabase.driver.generic-sql.query-processor-test
(:require [clojure.tools.logging :as log]
[colorize.core :as color]
[expectations :refer :all]
[metabase.driver :as driver]
[metabase.driver.query-processor :refer [max-result-bare-rows]]
[metabase.test.data :as d]
[metabase.test.data.datasets :as datasets]))
;; # ERROR RESPONSES
;; Check that we get an error response formatted the way we'd expect
(expect
{:status :failed
:error (str
;; column should look like "null.NAME" because the Field will have no associated Table name from expansion and will get
;; pased to korma as :null.NAME
"Column \"null.NAME\" not found; SQL statement:\nSELECT \"CHECKINS\".\"ID\", CAST(\"CHECKINS\".\"DATE\" AS DATE), "
"\"CHECKINS\".\"VENUE_ID\", \"CHECKINS\".\"USER_ID\" FROM \"CHECKINS\" WHERE (\"null\".\"NAME\" = ?) LIMIT "
max-result-bare-rows)}
;; This will print a stacktrace. Better to reassure people that that's on purpose than to make people question whether the tests are working
(do (log/info (color/green "NOTE: The following stacktrace is expected <3"))
(datasets/with-dataset :generic-sql
(driver/process-query {:database (d/db-id)
:type :query
:query {:source_table (d/id :checkins)
:filter ["=" (d/id :venues :name) 1] ; wrong Field
:aggregation ["rows"]}}))))
......@@ -12,8 +12,6 @@
[metabase.util :as u]))
;; ## Dataset-Independent QP Tests
;; ### Helper Fns + Macros
......@@ -538,9 +536,9 @@
;; ## LIMIT-MAX-RESULT-ROWS
;; Apply limit-max-result-rows to an infinite sequence and make sure it gets capped at `max-result-rows`
(expect max-result-rows
(count (->> {:rows (repeat [:ok])}
((u/runtime-resolved-fn 'metabase.driver.query-processor 'limit-max-result-rows))
:rows)))
(->> (((u/runtime-resolved-fn 'metabase.driver.query-processor 'limit) identity) {:rows (repeat [:ok])})
:rows
count))
;; ## CUMULATIVE SUM
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment