Я хотел бы провести модульное тестирование по следующему методу:
def handleEmailSharing = { EmailSharingCommand esc ->
if (params.send) {
def recaptchaOK = true
if (!recaptchaService.verifyAnswer(session, request.getRemoteAddr(), params)) {
recaptchaOK = false
}
}
...
Вот как я пытаюсь это сделать:
import com.megatome.grails.RecaptchaService
class EmailSharerControllerTests extends ControllerUnitTestCase {
protected void setUp() {
controller.recaptchaService = new RecaptchaService()
}
void testHandleEmailSharingSendAndSuccess() {
mockCommandObject(EmailSharingCommand)
def emailSharingCommand = new EmailSharingCommand(from: "acorrect@emailaddress.fr",
to: " anothercorrect@emailaddress.fr , whichis@notalone.it ",
cc: "",
bcc:"someonein@bcc.com.br",
trimmedListOfToRecipients: ["anothercorrect@emailaddress.fr", "whichis@notalone.it"])
emailSharingCommand.validate()
}
controller.handleEmailSharing(emailSharingCommand)
Но я получаю следующую ошибку:
Cannot get property 'recaptcha' on null object
java.lang.NullPointerException: Cannot get property 'recaptcha' on null object
at com.megatome.grails.RecaptchaService.getRecaptchaConfig(RecaptchaService.groovy:33)
at com.megatome.grails.RecaptchaService.this$2$getRecaptchaConfig(RecaptchaService.groovy)
at com.megatome.grails.RecaptchaService$this$2$getRecaptchaConfig.callCurrent(Unknown Source)
at com.megatome.grails.RecaptchaService.isEnabled(RecaptchaService.groovy:100)
at com.megatome.grails.RecaptchaService$isEnabled.callCurrent(Unknown Source)
at com.megatome.grails.RecaptchaService.verifyAnswer(RecaptchaService.groovy:81)
at com.megatome.grails.RecaptchaService$verifyAnswer.call(Unknown Source)
at bankemist.personalcreditcomparator.EmailSharerController$_closure2.doCall(EmailSharerController.groovy:49)
at bankemist.personalcreditcomparator.EmailSharerControllerTests.testHandleEmailSharingSendButtonButMissingFromAndTo(EmailSharerControllerTests.groovy:49)
Что странно, потому что в основном говорится, что мой org.codehaus.groovy.grails.commons.ConfigurationHolder
равен нулю или объект recaptcha
содержится в нем.Линия вызова 33 из RecaptchaService.groovy
:
if (ConfigurationHolder.config.recaptcha) {...}
Или (последний :)) так настроен мой RecaptchaConfig.groovy:
recaptcha {
// These keys are generated by the ReCaptcha service
publicKey = "xxx"
privateKey = "xxx"
// Include the noscript tags in the generated captcha
includeNoScript = true
}
mailhide {
// Generated by the Mailhide service
publicKey = ""
privateKey = ""
}
environments {
development {
recaptcha {
// Set to false to disable the display of captcha
enabled = true
// Communicate using HTTPS
useSecureAPI = false
}
}
test {
recaptcha {
// Set to false to disable the display of captcha
enabled = true
// Communicate using HTTPS
useSecureAPI = false
}
}
Мне не удается работатьвокруг этого вопроса.Я попытался импортировать configurationHolder в тестовый файл, но он ничего не меняет.Любая помощь с благодарностью.