我的控制器测试有问题。我尝试模拟服务方法的返回值,但它不返回特定的对象并且无论如何都要调用服务方法。 测试方法:
def "shouldReturnStatus"() {
given:
controller.repairService.getRepair('123465') >> repair;
when:
controller.status();
then:
response.text == '{"currentStatus":"Repair was found.","repairFound":true}'
}
修复模拟在setup方法中声明。
控制器方法:
def status() {
String repairCode = params.repairCode;
if(repairCode == null || repairCode.isEmpty()) {
log.info("REPARATURSTATUSABFRAGE: Reparaturcode wurde nicht angegeben")
renderEmptyRepairCode();
} else if(repairService.getRepair(repairCode)) {
Repair repair = repairService.getRepair(repairCode);
if(repair) {
log.info("REPARATURSTATUSABFRAGE: Reparaturstatus mit Code " + repairCode + " erfolgreich ausgegeben.")
Customer customer = repair.getCustomer();
renderRepairStatus(repair, customer);
}
} else {
log.info("REPARATURSTATUSABFRAGE: Reparatur mit Code " + repairCode + " nicht gefunden.")
renderRepairNotFound(repairCode);
}
}
repairService-Method:
def getRepair(String repairCode) {
Repair repair = Repair.findByRepairCode(repairCode);
if(repair == null) {
String upperCaseRepairCode = repairCode.toUpperCase();
repair = Repair.findByRepairCode(upperCaseRepairCode);
}
return repair;
}
我在setup-Method
中模拟了repairServicerepairService = Mock(RepairService);
我认为服务方法的代码并不重要,因为我嘲笑了这个方法的返回值。或者我明白了什么问题?
答案 0 :(得分:0)
您需要修改测试:
def "shouldReturnStatus"() {
given:
controller.repairService = Mock(RepairService)
controller.repairService.getRepair('123465') >> repair
when:
controller.status();
then:
response.text == '{"currentStatus":"Repair was found.","repairFound":true}'
}
如果我正确解释您的问题,您已在Spec中创建了一个实例变量,类型为Mock(RepairService)。这并不意味着您的控制器将使用此模拟服务。您需要将其实际分配给控制器。