我找不到如何在Play框架中将资源包含在测试代码中。
我要编写getResource代码@ / test / controllers / HomeControllerSpec.scala如下。
"HomeController Test" should {
val inputStream = getClass.getResourceAsStream("test.json")
...
}
但是此代码要求将“ test.json”放置在目标目录中。 我找到了一种使用Inject和play.api.Environment的方法,但是这种方法在测试代码中效果不佳。
Getting a resource file as an InputStream in Playframework
是否有最佳实践来读取测试代码中的资源?
我尝试了以下代码@ /play/test/controllers/HomeControllerSpec.scala
val source = getClass.getResource("/").getPath
println(source.toString())
我也得到了以下结果(/ play是play项目的根)。
/play/target/scala-2.12/test-classes/
通常,/ target被忽略(用.gitignore编写)。因此,我想知道在Play测试代码(放置在/ test中)中读取文本文件的方式。
我尝试了以下命令
sbt "show test:resourceDirectory"
并得到以下结果。
/play/test/resources
这意味着放置在此目录中的文件将用作资源并复制到目标目录(在我的情况下为/play/target/scala-2.12/test-classs)。所以我把test.json放在
/play/test/resources/test.json
,并可以通过以下代码读取此文件。
val source = getClass.getResource("/test.json").getPath
val code = getClass.getResourceAsStream("/test.json")
println("getPath of test.json: "+ source)
println("text of test.json: " + IOUtils.toString(code))
输出
getPath of test.json: /play/target/scala-2.12/test-
classes/test.json
text of test.json: {
"key": "value"
}
答案 0 :(得分:1)
test.json
访问/test
的原因/app
,/test
)中除“ * .scala”以外的任何文件均不包括在内。test.json
中的/test
。将test.json
放入/test/resources