add first idea for data-test
This commit is contained in:
parent
64252d1a60
commit
b51293fe25
6 changed files with 85 additions and 0 deletions
37
main/src/data_test.clj
Normal file
37
main/src/data_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
|
||||||
|
(:require
|
||||||
|
[clojure.java.io :as io]
|
||||||
|
[clojure.test :as ct]
|
||||||
|
[schema.core :as s]
|
||||||
|
[aero.core :as aero]))
|
||||||
|
|
||||||
|
;TODO: replace schema with spec
|
||||||
|
(def TestDataSet
|
||||||
|
{:input s/Any
|
||||||
|
:expectation s/Any})
|
||||||
|
|
||||||
|
(defn read-data
|
||||||
|
[resource-url]
|
||||||
|
(aero/read-config resource-url))
|
||||||
|
|
||||||
|
(defmacro defdatatest [name & body]
|
||||||
|
`(do
|
||||||
|
(ct/deftest ~name
|
||||||
|
(let [testdata (sut/read-data (io/resource "should-test-with-data-macro-version.edn"))
|
||||||
|
{:keys [input expectation]} testdata]
|
||||||
|
~body))))
|
|
@ -0,0 +1,2 @@
|
||||||
|
{:input 1
|
||||||
|
:expectation 1}
|
2
test/resources/should-test-with-data-macro-version.edn
Normal file
2
test/resources/should-test-with-data-macro-version.edn
Normal file
|
@ -0,0 +1,2 @@
|
||||||
|
{:input 1
|
||||||
|
:expectation 1}
|
1
test/resources/simple_aero.edn
Normal file
1
test/resources/simple_aero.edn
Normal file
|
@ -0,0 +1 @@
|
||||||
|
{:simple "test"}
|
3
test/resources/tagged_aero.edn
Normal file
3
test/resources/tagged_aero.edn
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
{:to-be-refernced "ref-test"
|
||||||
|
:key1 #ref [:to-be-refernced]
|
||||||
|
:key2 #ref [:to-be-refernced]}
|
40
test/src/data_test_test.clj
Normal file
40
test/src/data_test_test.clj
Normal file
|
@ -0,0 +1,40 @@
|
||||||
|
; 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-test
|
||||||
|
(:require
|
||||||
|
[clojure.java.io :as io]
|
||||||
|
[clojure.test :refer :all]
|
||||||
|
[data-test :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-test-with-data-explicit-version
|
||||||
|
(let [testdata (sut/read-data (io/resource "should-test-with-data-explicit-version.edn"))
|
||||||
|
{:keys [input expectation]} testdata]
|
||||||
|
(is (= expectation
|
||||||
|
input))))
|
||||||
|
|
||||||
|
(sut/defdatatest should-test-with-data-macro-version
|
||||||
|
(is (= expectation
|
||||||
|
input)))
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue