1

我有一个域,其中有两个字段可以为空,但不能同时为空。所以像这样

class Character {
    Association association
    String otherAssociation
    static constraints = {
        association (validator: {val, obj->  if (!val && !obj.otherAssociation) return 'league.association.mustbeone'})
        otherAssociation (validator: {val, obj->  if (!val && !obj.association) return 'league.association.mustbeone'})
    }
}

但是当我运行如下测试时,我只会失败

void testCreateWithAssociation() {
   def assoc = new Association(name:'Fake Association').save()
   def assoccha = new Character(association:assoc).save()

   assert assoccha
}
void testCreateWithoutAssociation() {
    def cha = new Character(otherAssociation:'Fake Association').save()
    assert cha
}

我究竟做错了什么?

编辑 看起来如果我将我的代码分解成这样的东西:

def assoc = new Association(name:'Fake Association')
assoc.save()

一切正常。但是现在我想知道为什么我不能像在其他测试中那样在同一行中使用 .save() 并且它可以工作。

4

1 回答 1

4

为了使您的测试通过,您的字段关联和其他关联必须为空。为两者添加可为空的约束,如下所示:

static constraints = {
    association nullable: true, validator: {val, obj->  if (!val && !obj.otherAssociation) return 'league.association.mustbeone'}
    otherAssociation nullable: true, validator: {val, obj->  if (!val && !obj.association) return 'league.association.mustbeone'}
}

我试过了,它有效

于 2013-05-09T14:24:14.227 回答