зеркало из https://github.com/mozilla/gecko-dev.git
57 строки
1.6 KiB
JavaScript
57 строки
1.6 KiB
JavaScript
|
/* Any copyright is dedicated to the Public Domain.
|
||
|
* http://creativecommons.org/publicdomain/zero/1.0/ */
|
||
|
|
||
|
const { classes: Cc, interfaces: Ci } = Components;
|
||
|
const URIs = [
|
||
|
"about:about",
|
||
|
"http://example.com/browser/dom/base/test/empty.html"
|
||
|
];
|
||
|
|
||
|
function* runTest(input, url) {
|
||
|
let tab = gBrowser.addTab(url);
|
||
|
let browser = gBrowser.getBrowserForTab(tab);
|
||
|
|
||
|
yield BrowserTestUtils.browserLoaded(browser);
|
||
|
|
||
|
let stream = Cc['@mozilla.org/io/string-input-stream;1']
|
||
|
.createInstance(Ci.nsIStringInputStream);
|
||
|
stream.setData(input, input.length);
|
||
|
|
||
|
let data = {
|
||
|
inputStream: stream
|
||
|
};
|
||
|
|
||
|
is(data.inputStream.available(), input.length, "The length of the inputStream matches: " + input.length);
|
||
|
|
||
|
let dataBack = yield ContentTask.spawn(browser, data, function(data) {
|
||
|
let dataBack = {
|
||
|
inputStream: data.inputStream,
|
||
|
check: true,
|
||
|
};
|
||
|
|
||
|
if (content.location.href.startsWith('about:')) {
|
||
|
dataBack.check = data.inputStream instanceof content.Components.interfaces.nsIInputStream;
|
||
|
}
|
||
|
|
||
|
return dataBack;
|
||
|
});
|
||
|
|
||
|
ok(dataBack.check, "The inputStream is a nsIInputStream also on content.");
|
||
|
ok(data.inputStream instanceof Ci.nsIInputStream, "The original object was an inputStream");
|
||
|
ok(dataBack.inputStream instanceof Ci.nsIInputStream, "We have an inputStream back from the content.");
|
||
|
|
||
|
yield BrowserTestUtils.removeTab(tab);
|
||
|
}
|
||
|
|
||
|
add_task(function* test() {
|
||
|
let a = "a";
|
||
|
for (let i = 0; i < 25; ++i) {
|
||
|
a+=a;
|
||
|
}
|
||
|
|
||
|
for (let i = 0; i < URIs.length; ++i) {
|
||
|
yield runTest("Hello world", URIs[i]);
|
||
|
yield runTest(a, URIs[i]);
|
||
|
}
|
||
|
});
|