use of org.neo4j.io.pagecache.randomharness.Command.FlushFile in project neo4j by neo4j.
the class PageCacheHarnessTest method concurrentPageFaultingMustNotPutInterleavedDataIntoPages.
@Test(timeout = LONG_TIMEOUT_MILLIS)
public void concurrentPageFaultingMustNotPutInterleavedDataIntoPages() throws Exception {
final int filePageCount = 11;
final RecordFormat recordFormat = new PageCountRecordFormat();
try (RandomPageCacheTestHarness harness = new RandomPageCacheTestHarness()) {
harness.setConcurrencyLevel(11);
harness.setUseAdversarialIO(false);
harness.setCachePageCount(3);
harness.setCachePageSize(pageCachePageSize);
harness.setFilePageCount(filePageCount);
harness.setFilePageSize(pageCachePageSize);
harness.setInitialMappedFiles(1);
harness.setCommandCount(10000);
harness.setRecordFormat(recordFormat);
harness.setFileSystem(fs);
harness.disableCommands(FlushCache, FlushFile, MapFile, UnmapFile, WriteRecord, WriteMulti);
harness.setPreparation((pageCache1, fs1, filesTouched) -> {
File file = filesTouched.iterator().next();
try (PagedFile pf = pageCache1.map(file, pageCachePageSize);
PageCursor cursor = pf.io(0, PF_SHARED_WRITE_LOCK)) {
for (int pageId = 0; pageId < filePageCount; pageId++) {
cursor.next();
recordFormat.fillWithRecords(cursor);
}
}
});
harness.run(LONG_TIMEOUT_MILLIS, MILLISECONDS);
}
}
Aggregations