2017-04-05 20:02:57 +03:00
|
|
|
/* Any copyright is dedicated to the Public Domain.
|
|
|
|
* http://creativecommons.org/publicdomain/zero/1.0/ */
|
|
|
|
|
|
|
|
const URIs = [
|
|
|
|
"about:about",
|
|
|
|
"http://example.com/browser/dom/base/test/empty.html"
|
|
|
|
];
|
|
|
|
|
2017-06-22 13:51:42 +03:00
|
|
|
async function runTest(input, url) {
|
2017-05-15 22:49:50 +03:00
|
|
|
let tab = BrowserTestUtils.addTab(gBrowser, url);
|
2017-04-05 20:02:57 +03:00
|
|
|
let browser = gBrowser.getBrowserForTab(tab);
|
|
|
|
|
2017-06-22 13:51:42 +03:00
|
|
|
await BrowserTestUtils.browserLoaded(browser);
|
2017-04-05 20:02:57 +03:00
|
|
|
|
|
|
|
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);
|
|
|
|
|
2017-06-22 13:51:42 +03:00
|
|
|
let dataBack = await ContentTask.spawn(browser, data, function(data) {
|
2017-04-05 20:02:57 +03:00
|
|
|
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.");
|
|
|
|
|
2018-03-19 05:16:45 +03:00
|
|
|
BrowserTestUtils.removeTab(tab);
|
2017-04-05 20:02:57 +03:00
|
|
|
}
|
|
|
|
|
2017-06-22 13:51:42 +03:00
|
|
|
add_task(async function test() {
|
2017-04-05 20:02:57 +03:00
|
|
|
let a = "a";
|
|
|
|
for (let i = 0; i < 25; ++i) {
|
|
|
|
a+=a;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (let i = 0; i < URIs.length; ++i) {
|
2017-06-22 13:51:42 +03:00
|
|
|
await runTest("Hello world", URIs[i]);
|
|
|
|
await runTest(a, URIs[i]);
|
2017-04-05 20:02:57 +03:00
|
|
|
}
|
|
|
|
});
|