运行Midje测试时发现FileNotFound异常



我有一个Leiningen项目,它使用Midje库进行测试。但是,我无法运行任何测试,在lein test的情况下,我得到

java.io.FileNotFoundException: Could not locate midje/sweet__init.class or midje/sweet.clj on classpath

或者用lein midje test我得到

java.io.FileNotFoundException: Could not locate midje/util/ecosystem__init.class or midje/util/ecosystem.clj on classpath

所以我想这是因为我错误地定义了dev配置文件与依赖关系,但我不确定真正的问题在哪里。

作为奖励,我也不能得到environ工作,我总是得到nil,我想从env地图中拉出一些属性(这也可能是同样的问题)。

My project.clj

(defproject
  project
  "0.1.0-SNAPSHOT"
  :dependencies
   [[org.clojure/clojure "1.8.0"]
   [environ "1.1.0"]
   ;; other deps, midje is not there
   :repl-options
      {:init-ns mailing.repl}
   :jvm-opts
      ["-server"]
   :plugins
      [[lein-ring "0.8.13"]
       [lein-environ "1.0.0"]
       [lein-ancient "0.5.5"]
       [migratus-lein "0.4.2"]] 
   :ring
     {:handler mailing.handler/app,
   :init mailing.handler/init,
   :destroy mailing.handler/destroy}
   :profiles
      {:uberjar {:omit-source true, :env {:production true}, :aot :all},
       :production
      {:ring {:open-browser? false, :stacktraces? false, :auto-reload? false}},
      {:dev
        {:env 
          {:db-user "user" 
           :db-password "psswd"
           :db-classname "org.postgresql.Driver"
           :db-subprotocol "postgresql"
           :db-subname "//localhost/mailer"}}}
      {:dependencies
[[ring-mock "0.1.5"]
 [ring/ring-devel "1.3.1"]
 [midje "1.6.3"]],
:env {:dev true}}}
  :migratus {
         :store :database
         :migration-dir "migrations"
         :db {
              :classname "org.postgresql.Driver"
              :subprotocol "postgresql"
              :subname "//localhost/mailer"
              :user "usr"
              :password "psswd"}}
;; refer to user and psswd from project
:min-lein-version "2.0.0")

我没有尝试过,但是结构似乎不太正确。我觉得应该是这样的:

(defproject project "0.1.0-SNAPSHOT"
  :dependencies [[org.clojure/clojure "1.8.0"]
                 [environ "1.1.0"]]
  ;; other deps, midje is not there
  :repl-options {:init-ns mailing.repl}
  :jvm-opts ["-server"]
  :plugins [[lein-ring "0.8.13"]
            [lein-environ "1.0.0"]
            [lein-ancient "0.5.5"]
            [migratus-lein "0.4.2"]]
  :ring {:handler mailing.handler/app
         :init mailing.handler/init
         :destroy mailing.handler/destroy}
  :profiles {:uberjar {:omit-source true
                       :env {:production true}
                       :aot :all}
             :production {:ring {:open-browser? false
                                 :stacktraces? false
                                 :auto-reload? false}}
             :dev {:env {:db-user "user"
                         :db-password "psswd"
                         :db-classname "org.postgresql.Driver"
                         :db-subprotocol "postgresql"
                         :db-subname "//localhost/mailer"
                         :dev true}
                   :dependencies [[ring-mock "0.1.5"]
                                  [ring/ring-devel "1.3.1"]
                                  [midje "1.6.3"]]}}
  :migratus {:store :database
             :migration-dir "migrations"
             :db {:classname "org.postgresql.Driver"
                  :subprotocol "postgresql"
                  :subname "//localhost/mailer"
                  :user "usr"
                  :password "psswd"}}
   ;; refer to user and psswd from project
   :min-lein-version "2.0.0")

看起来靠近顶部的:dependecies块是畸形的(没有关闭]),并且开发依赖关系实际上没有与:dev配置文件相关联。我不确定:migratus是否属于:dev配置文件,所以它在上面的例子中是在它的外面。

Leiningen的repo中的样例项目文件是一个有用的资源。

最新更新