boolean skipPartial) throws IOException {
if (!skipPartial) {
for (int i = 0; i < cluster.getNumNodes(); i++) {
JournalNode jn = cluster.getJournalNodes()[i];
RemoteImageManifest rim = jn.getJournal(JID.getBytes())
.getImageManifest(-1);
assertEquals(iteration + 1, rim.getImages().size());
for (int j = 0; j <= iteration; j++) {
assertEquals(startTxId + j, rim.getImages().get(j).getTxId());
}
}
}
// get manifest through qjm
RemoteImageManifest rm = qjm.getImageManifest(-1);
for (int j = 0; j <= iteration; j++) {
assertEquals(startTxId + j, rm.getImages().get(j).getTxId());
}
assertEquals(startTxId + iteration, qjm.getLatestImage()
.getCheckpointTxId());
}