I'm having a problem with GORM and i've created a small(ish) example to illustrate ..
class Owner {
static constraints = {
sample(nullable: true)
}
String ownerName
Sample sample
String toString() {
ownerName
}
}
class Sample {
static constraints = {
}
static belongsTo = Owner
Boolean active = true
String description
}
class SampleHistory extends Sample{
static constraints = {
}
static mapping = {
tablePerHierarchy false
}
String cancelledBy
Owner previousOwner
}
The classes define a simplified structure which has an Owner class and an associated Sample class and SampleHistory .. I created an integration test to test the relationships as shown ..
import grails.test.*
class SampleIntegrationTests extends GrailsUnitTestCase {
def owner1, sample1, owner2, sample2
protected void setUp() {
super.setUp()
owner1 = new Owner(ownerName: 'owner_1')
sample1 = new Sample(description: 'sample_1', active: true)
owner1.sample = sample1
owner1.save()
assert owner1.id
owner2 = new Owner(ownerName: 'owner_2')
sample2 = new Sample(description: 'sample_2', active: true)
owner2.sample = sample2
owner2.save()
assert owner2.id
}
protected void tearDown() {
super.tearDown()
}
void testHistory() {
assertEquals("Expected Size ! ..", 2, Owner.list().size())
assertEquals("Expected Size ! ..", 2, Sample.list().size())
def sampleHistory = new SampleHistory()
sampleHistory.properties = sample1.properties
sampleHistory.active = false
sampleHistory.cancelledBy = "me"
sampleHistory.previousOwner = owner1
sampleHistory.save(flush:true)
assertEquals("Unexpected size ..", 3, Sample.list().size())
assertEquals("Unexpected size ..", 1, SampleHistory.list().size())
def toDelete = owner1.sample // Save so it can be removed later ..
def sample3 = new Sample(description: 'sample_3', active:true)
owner1.sample = sample3
owner1.save(flush:true)
assertNotNull(sample3.id)
assertEquals("Unexpected size ..", 4, Sample.list().size())
assertEquals("Unexpected size ..", 1, SampleHistory.list().size())
toDelete.delete(flush:true)
assertEquals("Unexpected size ..", 3, Sample.list().size())
assertEquals("Unexpected size ..", 1, SampleHistory.list().size())
def historyList = SampleHistory.list()
historyList.each{
println "Sample"
println "Previous owner .. " + it.previousOwner
println "Class ... " + it.previousOwner.class
}
def historyEntry = SampleHistory.findByPreviousOwner(owner1)
assertNotNull(historyEntry) <---- Why does this fail ???
}
}
The question relates to the highlighted code .. The code creates a history record and prints out the contents of the history domain however when looking for an entry it doesn't find it despite printing it out on the previous line !
Anyone shed any light ?
Thanks
testdatabase to some other, like MySQL - willhistoryEntryappear there at the last line of test, with the correctpreviousOwner? – Victor Sergienko Aug 22 '11 at 9:54