gpt4 book ai didi

testing - 具有多个断言和报告的 Clojure 测试

转载 作者:行者123 更新时间:2023-11-28 20:10:34 26 4
gpt4 key购买 nike

我在使用 clojure.test 测试框架报告失败时遇到了一些问题。

现在,我明白我可以为不同的报告覆盖一些函数,以便它打印到控制台或我想要打印到的任何地方。我也明白我可以将这个输出保存到一个文件中。

我的问题如下...当我像这个例子一样声明 deftest 时:

(deftest test1
(是(= 1 1)
(是(= 2 1))

此测试将运行,如果我执行类似 (run-tests)(test-var #'test1) 的操作,它将返回 无,但打印失败。

我决定覆盖报告的 :fail 方法,因为我想要的是这样的失败映射:{"expected"(:expected m), "actual"(:actual m)} 如果我只使用报告功能,这种方法就可以了。

问题是,当您通过 Clojure.test 框架运行测试时,会调用许多宏,但它的行为并不完全符合我的要求。

我的最终目标是:运行测试,如果有任何失败,而不是打印它们,将它们保存到 map 并将 map 返回给我。如果它们都通过了,那么我不在乎它返回给我什么。

这可能吗?我不想在某个测试失败时停止测试,我只想将其记录在某个地方,最好是 map 。


来源:

Clojure test with mutiple assertions

https://clojure.github.io/clojure/branch-1.1.x/clojure.test-api.html

https://groups.google.com/forum/#!topic/clojure/vCjso96wqps

最佳答案

恐怕没有简单的方法可以做到这一点。您可以提供 clojure.test/report :fail defmethod 的自定义实现并将结果存储在原子中,但很难将结果传播到外层。

如果您只使用 test-var 那么它是可行的,但请注意在这种情况下不会执行测试装置 - 参见 test-vars source :

(:use clojure.test)

(deftest failing
(testing "fail me"
(is (= 1 0))
(is (= 2 1))
(is (= 3 2))))

(def test-failures (atom []))

(defmethod report :fail [m]
(swap! test-failures
(fn [previous-failures current-failure]
(conj previous-failures current-failure))
{:test-var-str (testing-vars-str m)
:expected (:expected m)
:actual (:actual m)}))

(defmethod report :end-test-var [m]
@test-failures)

(defn run-test-var [v]
(reset! test-failures [])
(test-var v))

;; in REPL:
(run-test-var #'failing)
;; =>
[{:test-var-str "(failing) (form-init4939336553149581727.clj:159)", :expected 1, :actual (0)}
{:test-var-str "(failing) (form-init4939336553149581727.clj:160)", :expected 2, :actual (1)}
{:test-var-str "(failing) (form-init4939336553149581727.clj:161)", :expected 3, :actual (2)}]

还有defmethod report :end-test-ns 但这个不是很有用因为test-ns function返回 @*report-counters*

关于testing - 具有多个断言和报告的 Clojure 测试,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52506420/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com