added the file loading infor to meta & separated file loading from test running
This commit is contained in:
parent
328e19f537
commit
9fbdfb7384
8 changed files with 101 additions and 53 deletions
|
@ -17,17 +17,24 @@
|
||||||
(:require
|
(:require
|
||||||
[clojure.test :as ct]
|
[clojure.test :as ct]
|
||||||
[schema.core :as s]
|
[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
|
(s/defn test-with-data
|
||||||
[test-name :- s/Keyword]
|
[test-name :- s/Keyword]
|
||||||
(runner/run-tests (runner/create-test-runner test-name)))
|
(runner/run-tests (runner/create-test-runner test-name)))
|
||||||
|
|
||||||
(defmacro defdatatest [n & body]
|
(defmacro defdatatest [n & body]
|
||||||
`(clojure.test/deftest ~(symbol (name n))
|
(when ct/*load-tests*
|
||||||
(let [namespaced-test-key# ~(keyword (str *ns*) (name n))
|
(let [namespaced-test-key# (keyword (str *ns*) (name n))
|
||||||
file-prefix# (data-test.runner/data-file-prefix namespaced-test-key#)
|
file-prefix# (fl/data-file-prefix namespaced-test-key#)]
|
||||||
testdata# (data-test.runner/load-test-data file-prefix#)
|
`(def ~(vary-meta n assoc
|
||||||
|
:test `(fn []
|
||||||
|
(let [testdata# (fl/load-test-data ~file-prefix#)
|
||||||
~(symbol 'input) (:input testdata#)
|
~(symbol 'input) (:input testdata#)
|
||||||
~(symbol 'expectation) (:expectation testdata#)]
|
~(symbol 'expectation) (:expectation testdata#)]
|
||||||
~@body)))
|
~@body))
|
||||||
|
:data-spec-prefix file-prefix#)
|
||||||
|
(fn [] (ct/test-var (var ~n)))))))
|
||||||
|
|
42
main/src/data_test/file_loader.clj
Normal file
42
main/src/data_test/file_loader.clj
Normal file
|
@ -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.
|
; limitations under the License.
|
||||||
(ns data-test.runner
|
(ns data-test.runner
|
||||||
(:require
|
(:require
|
||||||
[clojure.java.io :as io]
|
|
||||||
[clojure.string :as str]
|
|
||||||
[schema.core :as s]
|
[schema.core :as s]
|
||||||
[aero.core :as aero]))
|
[data-test.file-loader :as fl]))
|
||||||
|
|
||||||
;TODO: replace schema with spec
|
|
||||||
(def TestDataSet
|
|
||||||
{:input s/Any
|
|
||||||
:expectation s/Any})
|
|
||||||
|
|
||||||
(def TestResult
|
(def TestResult
|
||||||
{:input s/Any
|
{:input s/Any
|
||||||
|
@ -52,28 +45,12 @@
|
||||||
"Multimethod for data-test."
|
"Multimethod for data-test."
|
||||||
dispatch-by-name)
|
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
|
(extend-type TestRunner
|
||||||
RunTest
|
RunTest
|
||||||
(name-prefix [_]
|
(name-prefix [_]
|
||||||
(data-file-prefix (:name _)))
|
(fl/data-file-prefix (:name _)))
|
||||||
(run-tests [_]
|
(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]
|
{:keys [input expectation]} testdata]
|
||||||
(data-test _ input expectation))))
|
(data-test _ input expectation))))
|
||||||
|
|
||||||
|
|
1
test/resources/data_test/file_loader_test/test_it.edn
Normal file
1
test/resources/data_test/file_loader_test/test_it.edn
Normal file
|
@ -0,0 +1 @@
|
||||||
|
{:test "data"}
|
|
@ -1,2 +0,0 @@
|
||||||
{:input 1
|
|
||||||
:expectation 1}
|
|
37
test/src/data_test/file_loader_test.clj
Normal file
37
test/src/data_test/file_loader_test.clj
Normal file
|
@ -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.
|
; limitations under the License.
|
||||||
(ns data-test.runner-test
|
(ns data-test.runner-test
|
||||||
(:require
|
(:require
|
||||||
[clojure.java.io :as io]
|
|
||||||
[clojure.test :refer :all]
|
[clojure.test :refer :all]
|
||||||
[schema.core :as s]
|
[schema.core :as s]
|
||||||
[data-test.runner :as sut]))
|
[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
|
(s/defmethod sut/data-test ::test-it
|
||||||
[_ input :- s/Any expectation :- s/Any]
|
[_ input :- s/Any expectation :- s/Any]
|
||||||
"my-result")
|
"my-result")
|
||||||
|
|
|
@ -37,7 +37,9 @@
|
||||||
(is (sut/test-with-data ::should-test-with-data-record-version)))
|
(is (sut/test-with-data ::should-test-with-data-record-version)))
|
||||||
|
|
||||||
; ---------------------------- macro -----------------------------
|
; ---------------------------- 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))))
|
(macroexpand-1 '(sut/defdatatest should-test-with-data-macro-version (is (= 1 1))))
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue