1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170
|
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
var Pipe = CC("@mozilla.org/pipe;1", "nsIPipe", "init");
var BinaryOutput = CC(
"@mozilla.org/binaryoutputstream;1",
"nsIBinaryOutputStream",
"setOutputStream"
);
var BinaryInput = CC(
"@mozilla.org/binaryinputstream;1",
"nsIBinaryInputStream",
"setInputStream"
);
/**
* Binary stream tests.
*/
function test_binary_streams() {
var p, is, os;
p = new Pipe(false, false, 1024, 1, null);
is = new BinaryInput(p.inputStream);
os = new BinaryOutput(p.outputStream);
const LargeNum = Math.pow(2, 18) + Math.pow(2, 12) + 1;
const HugeNum = Math.pow(2, 62);
const HelloStr = "Hello World";
const HelloArray = Array.from(HelloStr, function (c) {
return c.charCodeAt(0);
});
var countObj = {};
var msg = {};
var buffer = new ArrayBuffer(HelloArray.length);
// Test reading immediately after writing.
os.writeBoolean(true);
Assert.equal(is.readBoolean(), true);
os.write8(4);
Assert.equal(is.read8(), 4);
os.write16(4);
Assert.equal(is.read16(), 4);
os.write16(1024);
Assert.equal(is.read16(), 1024);
os.write32(7);
Assert.equal(is.read32(), 7);
os.write32(LargeNum);
Assert.equal(is.read32(), LargeNum);
os.write64(LargeNum);
Assert.equal(is.read64(), LargeNum);
os.write64(1024);
Assert.equal(is.read64(), 1024);
os.write64(HugeNum);
Assert.equal(is.read64(), HugeNum);
os.writeFloat(2.5);
Assert.equal(is.readFloat(), 2.5);
// os.writeDouble(Math.SQRT2);
// do_check_eq(is.readDouble(), Math.SQRT2);
os.writeStringZ("Mozilla");
Assert.equal(is.readCString(), "Mozilla");
os.writeWStringZ("Gecko");
Assert.equal(is.readString(), "Gecko");
os.writeBytes(HelloStr, HelloStr.length);
Assert.equal(is.available(), HelloStr.length);
msg = is.readBytes(HelloStr.length);
Assert.equal(msg, HelloStr);
msg = null;
countObj.value = -1;
os.writeByteArray(HelloArray);
Assert.equal(is.available(), HelloStr.length);
msg = is.readByteArray(HelloStr.length);
Assert.equal(typeof msg, typeof HelloArray);
Assert.equal(msg.toSource(), HelloArray.toSource());
Assert.equal(is.available(), 0);
os.writeByteArray(HelloArray);
Assert.equal(
is.readArrayBuffer(buffer.byteLength, buffer),
HelloArray.length
);
Assert.equal([...new Uint8Array(buffer)].toSource(), HelloArray.toSource());
Assert.equal(is.available(), 0);
// Test writing in one big chunk.
os.writeBoolean(true);
os.write8(4);
os.write16(4);
os.write16(1024);
os.write32(7);
os.write32(LargeNum);
os.write64(LargeNum);
os.write64(1024);
os.write64(HugeNum);
os.writeFloat(2.5);
// os.writeDouble(Math.SQRT2);
os.writeStringZ("Mozilla");
os.writeWStringZ("Gecko");
os.writeBytes(HelloStr, HelloStr.length);
os.writeByteArray(HelloArray);
// Available should not be zero after a long write like this.
Assert.notEqual(is.available(), 0);
// Test reading in one big chunk.
Assert.equal(is.readBoolean(), true);
Assert.equal(is.read8(), 4);
Assert.equal(is.read16(), 4);
Assert.equal(is.read16(), 1024);
Assert.equal(is.read32(), 7);
Assert.equal(is.read32(), LargeNum);
Assert.equal(is.read64(), LargeNum);
Assert.equal(is.read64(), 1024);
Assert.equal(is.read64(), HugeNum);
Assert.equal(is.readFloat(), 2.5);
// do_check_eq(is.readDouble(), Math.SQRT2);
Assert.equal(is.readCString(), "Mozilla");
Assert.equal(is.readString(), "Gecko");
// Remember, we wrote HelloStr twice - once as a string, and then as an array.
Assert.equal(is.available(), HelloStr.length * 2);
msg = is.readBytes(HelloStr.length);
Assert.equal(msg, HelloStr);
msg = null;
countObj.value = -1;
Assert.equal(is.available(), HelloStr.length);
msg = is.readByteArray(HelloStr.length);
Assert.equal(typeof msg, typeof HelloArray);
Assert.equal(msg.toSource(), HelloArray.toSource());
Assert.equal(is.available(), 0);
// Test for invalid actions.
os.close();
is.close();
try {
os.writeBoolean(false);
do_throw("Not reached!");
} catch (e) {
if (
!(e instanceof Ci.nsIException && e.result == Cr.NS_BASE_STREAM_CLOSED)
) {
throw e;
}
// do nothing
}
try {
is.available();
do_throw("Not reached!");
} catch (e) {
if (
!(e instanceof Ci.nsIException && e.result == Cr.NS_BASE_STREAM_CLOSED)
) {
throw e;
}
// do nothing
}
try {
is.readBoolean();
do_throw("Not reached!");
} catch (e) {
if (!(e instanceof Ci.nsIException && e.result == Cr.NS_ERROR_FAILURE)) {
throw e;
}
// do nothing
}
}
function run_test() {
test_binary_streams();
}
|