Bug 991981 - ArrayBufferInputStream test. r=sfink, r=jdm

--HG--
extra : rebase_source : b50ffa49289aeb42bd4550b846934865b9c6f8d7
This commit is contained in:
Jeff Walden 2014-04-04 17:34:09 -07:00
Родитель fd02522731
Коммит 01b8f84f30
2 изменённых файлов: 65 добавлений и 1 удалений

Просмотреть файл

@ -6,9 +6,10 @@ support-files =
user_agent.sjs
user_agent_update.sjs
[test_arraybufferinputstream.html]
[test_partially_cached_content.html]
[test_uri_scheme.html]
[test_user_agent_overrides.html]
[test_user_agent_updates.html]
[test_user_agent_updates_reset.html]
[test_xhr_method_case.html]
[test_xhr_method_case.html]

Просмотреть файл

@ -0,0 +1,63 @@
<!DOCTYPE HTML>
<html>
<!--
-->
<head>
<title>ArrayBuffer stream test</title>
<script type="text/javascript" src="/tests/SimpleTest/SimpleTest.js"></script>
<link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css" />
<script type="text/javascript">
function neuter(ab)
{
var w = new Worker("data:application/javascript,");
w.postMessage(ab, [ab]);
}
function test()
{
var ab = new ArrayBuffer(4000);
var ta = new Uint8Array(ab);
ta[0] = 'a'.charCodeAt(0);
const Cc = SpecialPowers.Cc, Ci = SpecialPowers.Ci, Cr = SpecialPowers.Cr;
var abis = Cc["@mozilla.org/io/arraybuffer-input-stream;1"]
.createInstance(Ci.nsIArrayBufferInputStream);
var sis = Cc["@mozilla.org/scriptableinputstream;1"]
.createInstance(Ci.nsIScriptableInputStream);
sis.init(abis);
is(sis.read(1), "", "should read no data from an uninitialized ABIS");
abis.setData(ab, 0, 256 * 1024);
is(sis.read(1), "a", "should read 'a' after init");
neuter(ab);
SpecialPowers.forceGC();
SpecialPowers.forceGC();
try
{
sis.read(1);
ok(false, "reading from stream shouldn't have worked");
}
catch (e)
{
ok(e.result === Cr.NS_BASE_STREAM_CLOSED,
"neutering underneath an input stream should close it");
}
}
test();
</script>
</head>
<body>
<p id="display"></p>
<div id="content" style="display: none"></div>
<pre id="test">
</pre>
</body>
</html>