89101112131415161718
public class TestDiskQueue { @Test public void basicTest() throws Exception{ DiskQueue d = DiskQueue.getInstance("test.fix"); d.offer("hello world"); d.offer("hello world"); d.close(); DiskQueue e = DiskQueue.getInstance("test.fix");
910111213141516171819
@Test public void basicTest() throws Exception{ DiskQueue d = DiskQueue.getInstance("test.fix"); d.offer("hello world"); d.offer("hello world"); d.close(); DiskQueue e = DiskQueue.getInstance("test.fix"); out.println("BEFORE========");
2021222324252627282930
for(String s : e){ out.println(s); } e.offer("world hello"); e.offer("world hello"); out.println("AFTER========"); for(String s : e){
2122232425262728293031
for(String s : e){ out.println(s); } e.offer("world hello"); e.offer("world hello"); out.println("AFTER========"); for(String s : e){ out.println(s);
3435363738394041424344
} @Test public void duplicateTest() throws Exception{ DiskQueue d = DiskQueue.getInstance("test.fix"); d.offer("hello world"); d.offer("hello world"); d.offer("hello world"); d.offer("hello world"); d.offer("hello world"); d.offer("hello world");
3536373839404142434445
@Test public void duplicateTest() throws Exception{ DiskQueue d = DiskQueue.getInstance("test.fix"); d.offer("hello world"); d.offer("hello world"); d.offer("hello world"); d.offer("hello world"); d.offer("hello world"); d.offer("hello world"); d.offer("hello world");
3637383940414243444546
@Test public void duplicateTest() throws Exception{ DiskQueue d = DiskQueue.getInstance("test.fix"); d.offer("hello world"); d.offer("hello world"); d.offer("hello world"); d.offer("hello world"); d.offer("hello world"); d.offer("hello world"); d.offer("hello world"); d.offer("hello world");
3738394041424344454647
public void duplicateTest() throws Exception{ DiskQueue d = DiskQueue.getInstance("test.fix"); d.offer("hello world"); d.offer("hello world"); d.offer("hello world"); d.offer("hello world"); d.offer("hello world"); d.offer("hello world"); d.offer("hello world"); d.offer("hello world"); //d.close();
3839404142434445464748
DiskQueue d = DiskQueue.getInstance("test.fix"); d.offer("hello world"); d.offer("hello world"); d.offer("hello world"); d.offer("hello world"); d.offer("hello world"); d.offer("hello world"); d.offer("hello world"); d.offer("hello world"); //d.close();
3940414243444546474849
d.offer("hello world"); d.offer("hello world"); d.offer("hello world"); d.offer("hello world"); d.offer("hello world"); d.offer("hello world"); d.offer("hello world"); d.offer("hello world"); //d.close(); DiskQueue e = DiskQueue.getInstance("test.fix");