I have following test that passes if the Rental Unit to Review has One-To-Many bidirectional relationship, however. It fails if Rental Unit to Review has Unidirectional One-to-Many relationship. How come? And how to make it pass for unidirectional as well?
Test (spock):
def "one-to-many relationship between RentalUnit and Review"() {
when:"adding shared review will result referenced by last rental unit"
def review3 = Review.build().save(flush: true)
def rentalUnit1 = RentalUnit.build().addToReviews(review3).save(flush: true)
def rentalUnit2 = RentalUnit.build().addToReviews(review3).save(flush: true)
rentalUnit1.refresh()
then:
!rentalUnit1.reviews.contains(review3)
}
Code: Rental Unit class is the same both - Unidirectional and Bidirectional
class RentalUnit {
...
static hasMany = [reviews:Review]
static mapping = {
reviews cascade: "all-delete-orphan"
}
...
}
In Unidirectional case, the Review class doesn't contain anything related to Rental Unit. In Bidirectional case, the Review has extra line:
static belongsTo = [rentalUnit: RentalUnit]
(For complete code, in my blog )