0
import grails.plugin.spock.*

class EventControllerSpec extends ControllerSpec {

    def "Creating a breadcrumb from an event"() {
        given: "I have a named event"
        def eventController = Mock(EventController)
        def event   = Mock(Event)
        event.title >> 'Space-Journey with Sprock and the Crew'
        event.title == 'Space-Journey with Sprock and the Crew'

        when: "I create a breadcrumb from it"
        def eventCrumb = eventController.createCrumb("Event", "show", "1", event.title)

        /*
        private Map createCrumb (String controllerName, String actionName, String id, String msg) {
        msg = (msg ? msg : "cr.breadcrumb.${controllerName}.${actionName}")
        [ 'controller':controllerName,
        'action':actionName,
        'id':id,
        'message':msg
        ]
         */

        then: "I receive a map where the message-value is the events' title"
        eventCrumb.message == event.title
    }
}

EventControllerにあるコメントアウトされたメソッドに注意してください

  1. スニペットが「 nullオブジェクトのプロパティ'メッセージ'を取得できません」を引き起こすのはなぜですか?
  2. スニペットを正しく設定するにはどうすればよいですか?
  3. 一般に、Spockを使用する場合、 mockTagLibmockControllermockLogging GrailsUnitTestCase関数のいずれかが必要ですか?
4

1 に答える 1

1

コントローラーの単体テストを行う場合は、コントローラーを自動的にセットアップする規則があります。controller次のようにテストでを参照してください。

import grails.plugin.spock.*

class EventControllerSpec extends ControllerSpec {

  def "Creating a breadcrumb from an event"() {
    given: "I have a named event"
    def event = Mock(Event)
    event.title >> 'Space-Journey with Sprock and the Crew'

    when: "I create a breadcrumb from it"
    def eventCrumb = controller.createCrumb("Event", "show", "1", event.title)

    /*
    private Map createCrumb (String controllerName, String actionName, String id, String msg) {
    msg = (msg ? msg : "cr.breadcrumb.${controllerName}.${actionName}")
    [ 'controller':controllerName,
    'action':actionName,
    'id':id,
    'message':msg
    ]
     */

    then: "I receive a map where the message-value is the events' title"
    eventCrumb.message == event.title
  }
}

コントローラのように明示的にモックする必要はありませんがControllerSpec、コントローラが使用している他の要素をモックする必要がある場合があります。コントローラのメタクラスを介してこれらを追加するだけで十分な場合もあります

于 2011-01-12T18:13:45.097 に答える