123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154 |
- /* 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/. */
- const file = require("sdk/io/file");
- const { pathFor } = require("sdk/system");
- const { Loader } = require("sdk/test/loader");
- const STREAM_CLOSED_ERROR = new RegExp("The stream is closed and cannot be used.");
- // This should match the constant of the same name in text-streams.js.
- const BUFFER_BYTE_LEN = 0x8000;
- exports.testWriteRead = function (assert) {
- let fname = dataFileFilename();
- // Write a small string less than the stream's buffer size...
- let str = "exports.testWriteRead data!";
- let stream = file.open(fname, "w");
- assert.ok(!stream.closed, "stream.closed after open should be false");
- stream.write(str);
- stream.close();
- assert.ok(stream.closed, "stream.closed after close should be true");
- assert.throws(function () stream.close(),
- STREAM_CLOSED_ERROR,
- "stream.close after already closed should raise error");
- assert.throws(function () stream.write("This shouldn't be written!"),
- STREAM_CLOSED_ERROR,
- "stream.write after close should raise error");
- // ... and read it.
- stream = file.open(fname);
- assert.ok(!stream.closed, "stream.closed after open should be false");
- assert.equal(stream.read(), str,
- "stream.read should return string written");
- assert.equal(stream.read(), "",
- "stream.read at EOS should return empty string");
- stream.close();
- assert.ok(stream.closed, "stream.closed after close should be true");
- assert.throws(function () stream.close(),
- STREAM_CLOSED_ERROR,
- "stream.close after already closed should raise error");
- assert.throws(function () stream.read(),
- STREAM_CLOSED_ERROR,
- "stream.read after close should raise error");
- // Write a big string many times the size of the stream's buffer and read it.
- // Since it comes after the previous test, this also ensures that the file is
- // truncated when it's opened for writing.
- str = "";
- let bufLen = BUFFER_BYTE_LEN;
- let fileSize = bufLen * 10;
- for (let i = 0; i < fileSize; i++)
- str += i % 10;
- stream = file.open(fname, "w");
- stream.write(str);
- stream.close();
- stream = file.open(fname);
- assert.equal(stream.read(), str,
- "stream.read should return string written");
- stream.close();
- // The same, but write and read in chunks.
- stream = file.open(fname, "w");
- let i = 0;
- while (i < str.length) {
- // Use a chunk length that spans buffers.
- let chunk = str.substr(i, bufLen + 1);
- stream.write(chunk);
- i += bufLen + 1;
- }
- stream.close();
- stream = file.open(fname);
- let readStr = "";
- bufLen = BUFFER_BYTE_LEN;
- let readLen = bufLen + 1;
- do {
- var frag = stream.read(readLen);
- readStr += frag;
- } while (frag);
- stream.close();
- assert.equal(readStr, str,
- "stream.write and read in chunks should work as expected");
- // Read the same file, passing in strange numbers of bytes to read.
- stream = file.open(fname);
- assert.equal(stream.read(fileSize * 100), str,
- "stream.read with big byte length should return string " +
- "written");
- stream.close();
- stream = file.open(fname);
- assert.equal(stream.read(0), "",
- "string.read with zero byte length should return empty " +
- "string");
- stream.close();
- stream = file.open(fname);
- assert.equal(stream.read(-1), "",
- "string.read with negative byte length should return " +
- "empty string");
- stream.close();
- file.remove(fname);
- };
- exports.testWriteAsync = function (assert, done) {
- let fname = dataFileFilename();
- let str = "exports.testWriteAsync data!";
- let stream = file.open(fname, "w");
- assert.ok(!stream.closed, "stream.closed after open should be false");
- // Write.
- stream.writeAsync(str, function (err) {
- assert.equal(this, stream, "|this| should be the stream object");
- assert.equal(err, undefined,
- "stream.writeAsync should not cause error");
- assert.ok(stream.closed, "stream.closed after write should be true");
- assert.throws(function () stream.close(),
- STREAM_CLOSED_ERROR,
- "stream.close after already closed should raise error");
- assert.throws(function () stream.writeAsync("This shouldn't work!"),
- STREAM_CLOSED_ERROR,
- "stream.writeAsync after close should raise error");
- // Read.
- stream = file.open(fname, "r");
- assert.ok(!stream.closed, "stream.closed after open should be false");
- let readStr = stream.read();
- assert.equal(readStr, str,
- "string.read should yield string written");
- stream.close();
- file.remove(fname);
- done();
- });
- };
- exports.testUnload = function (assert) {
- let loader = Loader(module);
- let file = loader.require("sdk/io/file");
- let filename = dataFileFilename("temp");
- let stream = file.open(filename, "w");
- loader.unload();
- assert.ok(stream.closed, "stream should be closed after module unload");
- };
- // Returns the name of a file that should be used to test writing and reading.
- function dataFileFilename() {
- return file.join(pathFor("ProfD"), "test-text-streams-data");
- }
- require('sdk/test').run(exports);
|