在这里挠头,不确定是代码还是测试。
我们需要跟踪对象的状态变化以及这些变化的历史。有时只应显示最新状态,而有时则需要整个历史列表。
最初我们认为“小菜一碟”遵循文档(grails.org/doc/2.2.x/ref/Database%20Mapping/sort.html)和这个人发现的内容(stackoverflow.com/questions/12482995/sort-a- collection-in-grails-by-date )并且是金色的。
来到单元测试时间,我们创建了测试以制作两个状态并拉出最新的。宾果游戏有效。然后,麻烦;随机间隔,测试失败。所以我们似乎找到了这个家伙发现的关于 sort 不起作用的地方。也许我错过了一些明显的东西,希望一双新的眼睛能看到它。
class mainObject {
static hasMany = [ statusHistory : StatusHistory]
static mapping = {
sort id: 'asc'
statusHistory sort:"statusDate"
}
String getCurrentStatus(){
if (!this.statusHistory){
return""
}else{
this.statusHistory.sort{it.sstatusDate}
return statusHistory.status.first()
}
}
}
class statusHistory {
static mapping = {
sort statusDate: "asc"
}
static belongsTo = [ mainObjects : MainObject]
Date statusDate
String strStatus
String notes
String toString(){
if (statusDate ==null){
return "${strStatus}" + " - No Date"
}else{
return "${strStatus}" +" - "+ "${statusDate.getDateString()}"
}
}
}
单元测试
@TestMixin(GrailsUnitTestMixin)
class MainObjectTests {
def util = new UnitTestUtil()
def mockMainObj
@Before
void setUp {
mockMainObj = util.initMockMainObj()
mockForConstraintsTests(MainObject, [mockMainObj])
}
void testgetCurrentStatus(){
assertEquals("", mockMainObj.getCurrentStatus())
def mockObjStatus1 = util.initMockStatus(mockMainObj, new SimpleDateFormat(dd/MM/yyyy hh:mm:ss).parse("01/12/2008 15:00:00"), "First Status")
mockDomain (StatusHistory, [mockObjStatus1])
mockForConstaintsTests (StatusHistory, [mockObjStatus1])
mockObjStatus1.save()
assertEquals(1, mockMainObj.statusHistory.size())
assertEquals("First Status", mockMainObj.getCurrentStatus())
def mockObjStatus2 = util.initMockStatus(mockMainObj, new Date(), "Latest Status")
mockDomain (StatusHistory, [mockObjStatus2])
mockForConstaintsTests (StatusHistory, [mockObjStatus2])
mockObjStatus2.save()
assertEquals(2, mockMainObj.statusHistory.size())
assertEquals("Latest Status", mockMainObj.getCurrentStatus())
}
}
根据本博客和 Beckwith 先生 (www.infoq.com/presentations/GORM-Performance )
但我不断回到文档并查看我的代码并认为它是正确的。所以我现在处于循环引用中。任何帮助将不胜感激。