added the file loading infor to meta & separated file loading from test running

pull/1/head
jem 5 years ago
parent 328e19f537
commit 9fbdfb7384

@ -17,17 +17,24 @@
(:require
[clojure.test :as ct]
[schema.core :as s]
[data-test.runner :as runner]))
[data-test.runner :as runner]
[data-test.file-loader :as fl]))
(def TestDataSpec fl/TestDataSpec)
(s/defn test-with-data
[test-name :- s/Keyword]
(runner/run-tests (runner/create-test-runner test-name)))
(defmacro defdatatest [n & body]
`(clojure.test/deftest ~(symbol (name n))
(let [namespaced-test-key# ~(keyword (str *ns*) (name n))
file-prefix# (data-test.runner/data-file-prefix namespaced-test-key#)
testdata# (data-test.runner/load-test-data file-prefix#)
~(symbol 'input) (:input testdata#)
~(symbol 'expectation) (:expectation testdata#)]
~@body)))
(when ct/*load-tests*
(let [namespaced-test-key# (keyword (str *ns*) (name n))
file-prefix# (fl/data-file-prefix namespaced-test-key#)]
`(def ~(vary-meta n assoc
:test `(fn []
(let [testdata# (fl/load-test-data ~file-prefix#)
~(symbol 'input) (:input testdata#)
~(symbol 'expectation) (:expectation testdata#)]
~@body))
:data-spec-prefix file-prefix#)
(fn [] (ct/test-var (var ~n)))))))

@ -0,0 +1,42 @@
; Licensed to the Apache Software Foundation (ASF) under one
; or more contributor license agreements. See the NOTICE file
; distributed with this work for additional information
; regarding copyright ownership. The ASF licenses this file
; to you under the Apache License, Version 2.0 (the
; "License"); you may not use this file except in compliance
; with the License. You may obtain a copy of the License at
;
; http://www.apache.org/licenses/LICENSE-2.0
;
; Unless required by applicable law or agreed to in writing, software
; distributed under the License is distributed on an "AS IS" BASIS,
; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
; See the License for the specific language governing permissions and
; limitations under the License.
(ns data-test.file-loader
(:require
[clojure.java.io :as io]
[clojure.string :as str]
[schema.core :as s]
[aero.core :as aero]))
;TODO: replace schema with spec
(def TestDataSpec
{:input s/Any
:expectation s/Any})
(s/defn read-data :- TestDataSpec
[resource-url :- s/Str]
(aero/read-config resource-url))
(s/defn data-file-prefix :- s/Str
[name-key :- s/Keyword]
(str/replace
(str/replace (str (namespace name-key) "/" (name name-key))
#"-" "_")
#"\." "/"))
(s/defn load-test-data
[file-prefix :- s/Str]
(let [file-path (str file-prefix ".edn")]
(read-data (io/resource file-path))))

@ -15,15 +15,8 @@
; limitations under the License.
(ns data-test.runner
(:require
[clojure.java.io :as io]
[clojure.string :as str]
[schema.core :as s]
[aero.core :as aero]))
;TODO: replace schema with spec
(def TestDataSet
{:input s/Any
:expectation s/Any})
[data-test.file-loader :as fl]))
(def TestResult
{:input s/Any
@ -52,28 +45,12 @@
"Multimethod for data-test."
dispatch-by-name)
(s/defn read-data :- TestDataSet
[resource-url :- s/Str]
(aero/read-config resource-url))
(s/defn data-file-prefix :- s/Str
[name-key :- s/Keyword]
(str/replace
(str/replace (str (namespace name-key) "/" (name name-key))
#"-" "_")
#"\." "/"))
(s/defn load-test-data
[file-prefix :- s/Str]
(let [file-path (str file-prefix ".edn")]
(read-data (io/resource file-path))))
(extend-type TestRunner
RunTest
(name-prefix [_]
(data-file-prefix (:name _)))
(fl/data-file-prefix (:name _)))
(run-tests [_]
(let [testdata (load-test-data (data-file-prefix (:name _)))
(let [testdata (fl/load-test-data (fl/data-file-prefix (:name _)))
{:keys [input expectation]} testdata]
(data-test _ input expectation))))

@ -0,0 +1,37 @@
; Licensed to the Apache Software Foundation (ASF) under one
; or more contributor license agreements. See the NOTICE file
; distributed with this work for additional information
; regarding copyright ownership. The ASF licenses this file
; to you under the Apache License, Version 2.0 (the
; "License"); you may not use this file except in compliance
; with the License. You may obtain a copy of the License at
;
; http://www.apache.org/licenses/LICENSE-2.0
;
; Unless required by applicable law or agreed to in writing, software
; distributed under the License is distributed on an "AS IS" BASIS,
; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
; See the License for the specific language governing permissions and
; limitations under the License.
(ns data-test.file-loader-test
(:require
[clojure.test :refer :all]
[clojure.java.io :as io]
[schema.core :as s]
[data-test.file-loader :as sut]))
(deftest should-read-data
(is (= {:simple "test"}
(sut/read-data (io/resource "simple_aero.edn"))))
(is (= {:to-be-refernced "ref-test", :key1 "ref-test", :key2 "ref-test"}
(sut/read-data (io/resource "tagged_aero.edn"))))
)
(deftest should-calculate-data-file-prefix
(is (= "data_test/file_loader_test/test_it"
(sut/data-file-prefix ::test-it))))
(deftest should-load-data
(is (= {:test "data"}
(sut/load-test-data (sut/data-file-prefix ::test-it)))))

@ -15,26 +15,10 @@
; limitations under the License.
(ns data-test.runner-test
(:require
[clojure.java.io :as io]
[clojure.test :refer :all]
[schema.core :as s]
[data-test.runner :as sut]))
(deftest should-read-data
(is (= {:simple "test"}
(sut/read-data (io/resource "simple_aero.edn"))))
(is (= {:to-be-refernced "ref-test", :key1 "ref-test", :key2 "ref-test"}
(sut/read-data (io/resource "tagged_aero.edn"))))
)
(deftest should-calculate-data-file-prefix
(is (= "data_test/runner_test/test_it"
(sut/data-file-prefix ::test-it))))
(deftest should-load-data
(is (= {:test "data"}
(sut/load-test-data (sut/data-file-prefix ::test-it)))))
(s/defmethod sut/data-test ::test-it
[_ input :- s/Any expectation :- s/Any]
"my-result")

@ -37,7 +37,9 @@
(is (sut/test-with-data ::should-test-with-data-record-version)))
; ---------------------------- macro -----------------------------
(sut/defdatatest should-test-with-data-macro-version (is (= input expectation)))
;(sut/defdatatest should-test-with-data-macro-version (is (= input expectation)))
(sut/defdatatest2 should-test-with-data-macro-version (is (= input expectation)))
(macroexpand-1 '(sut/defdatatest should-test-with-data-macro-version (is (= 1 1))))

Loading…
Cancel
Save