1

我无法在 grails 中运行单元测试。我有一个TransactionController(也可以在github 上获得)transactionAnalytics,我想测试如下方法,

TransactionController.groovy

package eccount


import org.codehaus.groovy.grails.web.json.JSONObject
import org.springframework.dao.DataIntegrityViolationException
import grails.converters.JSON

class TransactionController {
   def transactionService

   def transactionAnalytics = {
       searchRequest = searchRequest ?: new SearchRequest(requestParams: new HashMap<String, String>())
       configureRequestParams()
       def responseBytes = transactionService.getSearchResponse(searchRequest)
       def jsonResponse
       if (responseBytes)
            jsonResponse = JSON.parse(responseBytes)
       else
           jsonResponse = new JSONObject()
       render jsonResponse as JSON
   }
 }

TransactionController#transactionAnalytics也可在 github 上获得)的相应测试如下,

TransactionControllerTests.groovy

package eccount



import org.junit.*
import grails.test.mixin.*

@TestFor(TransactionController)
class TransactionControllerTests {
    def INDEX_NAME = "gccount"

    void testTransactionAnalytics(){
        Map<String, String> params = new HashMap<String, String>()
        params.put("indexName",INDEX_NAME)
        //println params.get("indexName")
        //controller.params  = params
        controller.params.indexName  = "gccount"
        controller.transactionAnalytics()
        def jsonResponse = controller.response.json
        println jsonResponse
    }
}

当我运行控制器的方法时,出现以下异常

prayag@prayag:/backup/gccount$ grails test-app TransactionController.transactionAnalytics
| Environment set to test.....

| Running 1 unit test...
| Failure:  Test mechanism
|  java.lang.NullPointerException: Cannot invoke method finish() on null object
    at org.junit.runner.notification.RunNotifier$2.notifyListener(RunNotifier.java:71)
    at org.junit.runner.notification.RunNotifier$SafeNotifier.run(RunNotifier.java:41)
    at org.junit.runner.notification.RunNotifier.fireTestRunFinished(RunNotifier.java:68)
    at _GrailsTest_groovy$_run_closure4.doCall(_GrailsTest_groovy:290)
    at _GrailsTest_groovy$_run_closure2.doCall(_GrailsTest_groovy:248)
    at _GrailsTest_groovy$_run_closure1_closure21.doCall(_GrailsTest_groovy:195)
    at _GrailsTest_groovy$_run_closure1.doCall(_GrailsTest_groovy:184)
    at TestApp$_run_closure1.doCall(TestApp.groovy:82)
| Completed 0 unit test, 1 failed in 2723ms

| Packaging Grails application.....
[scalaPlugin] Compiling Scala sources from plugins to /home/prayag/.grails/2.1.1/projects/cashless/plugin-classes
[scalaPlugin] Compiling Scala sources to /backup/gccount/target/classes
| Compiling 2 source files

Configuring Spring Security Core ...
... finished configuring Spring Security Core
sandbox user created
role created
stall created with a user
| Tests FAILED  - view reports in /backup/gccount/target/test-reports

同样,在 没有留下任何报告file:///backup/gccount/target/test-reports无论如何,谁在这里实际上是空的?

单元测试

资源

9 测试 - 参考文档

http://mrhaki.blogspot.com/2010/04/grails-goodness-invoking-single-test.html

https://stackoverflow.com/a/3736549/432903

4

2 回答 2

1

尝试:

grails test-app TransactionController.testTransactionAnalytics

您忘记了方法名称前面的“测试”...是的...看来,您不必将其写在类名中,但必须在方法名中...

于 2013-11-08T09:07:10.540 回答
0

Grails Goodness: Invoking a Single Test Method似乎发布了错误的信息,因为以下代码不起作用。

$ grails test-app TransactionController.transactionAnalytics

正确的是初始化transactionService

$ grails test-app TransactionControllerTests.testTransactionAnalytics

或者

$ grails test-app TransactionController.testTransactionAnalytics
于 2013-11-09T08:20:03.143 回答