我为开发和测试环境设置了单独的database-url
,这在REPL中运行我的webapp和命令行上的lein test
时运行良好。这是我的profiles.clj
:
{:profiles/dev {:env {:database-url "wiki"}}
:profiles/test {:env {:database-url "wiki-test"}}}
正确的数据库实例被击中的证据(我正在使用CouchDB):
;; Running the site from the REPL:
[info] [<0.12149.0>] 127.0.0.1 - - GET /wiki/home-page 200
[info] [<0.10353.0>] 127.0.0.1 - - GET /wiki/about 200
;; Running lein test:
[info] [<0.12026.0>] 127.0.0.1 - - GET /wiki-test/welcome 404
[error] [<0.12933.0>] Could not open file /usr/local/var/lib/couchdb/wiki-test.c
但是,当我在Emacs中通过Cider运行测试时,它使用dev环境,因此使用了错误的数据库实例。
我该如何解决这个问题?
答案 0 :(得分:1)
我建议您尝试使用with-redefs
。
这样的事情:
(with-redefs [db (get-my-test-db)]
(run-my-tests)
其中db
是您在测试中绑定数据库句柄的符号。
这篇文章应该会有所帮助: Isolating External Dependencies in Clojure