declare("RandomAccessStreamCreated");
ras = new RandomAccessStream();
boolean exceptionThrown = false;
try {
ras.getSizeOf();
} catch (IOException e) {
exceptionThrown = true;
}
assertTrue(exceptionThrown);
declare("GetSizeOfEmpty");
exceptionThrown = false;
try {
ras.connect("afile", Connector.READ_WRITE);
assertEquals(0, ras.getSizeOf());
} catch(IOException e) {
exceptionThrown = true;
}
assertTrue(!exceptionThrown);
// Need revisit:
// IOException should be thrown at the attempt to set
// position beyond the file size
// Uncomment when fixed
//
// declare("SetPositionOnEmpty");
// exceptionThrown = false;
// try {
// ras.setPosition(8);
// } catch(IOException e) {
// exceptionThrown = true;
// }
// assertTrue(exceptionThrown);
// Need revisit:
// IOException should be thrown at the attempt to truncate
// an empty file
// Uncomment when fixed
// declare("TruncateEmpty");
// exceptionThrown = false;
// try {
// ras.truncate(8);
// } catch(IOException e) {
// exceptionThrown = true;
// }
// assertTrue(exceptionThrown);
declare("TestReadAndWrite");
exceptionThrown = false;
try {
byte bytes[] = new byte[100];
for (int i = 0; i < 100; i++) {
bytes[i] = (byte)i;
}
int bytesReadWritten = ras.writeBytes(bytes, 0, 100);
assertEquals(100, bytesReadWritten);
ras.commitWrite();
assertEquals(100, ras.getSizeOf());
ras.setPosition(0);
bytesReadWritten = ras.readBytes(bytes, 0, 100);
assertEquals(100, bytesReadWritten);
for (int i = 0; i < 100; i++) {
assertEquals(i, bytes[i]);
}
} catch (IOException e) {
exceptionThrown = true;
}
assertTrue(!exceptionThrown);
cleanUp();