summaryrefslogtreecommitdiffstats
path: root/dom/archivereader/test/test_nonUnicode.html
diff options
context:
space:
mode:
Diffstat (limited to 'dom/archivereader/test/test_nonUnicode.html')
-rw-r--r--dom/archivereader/test/test_nonUnicode.html77
1 files changed, 77 insertions, 0 deletions
diff --git a/dom/archivereader/test/test_nonUnicode.html b/dom/archivereader/test/test_nonUnicode.html
new file mode 100644
index 000000000..6237ce10f
--- /dev/null
+++ b/dom/archivereader/test/test_nonUnicode.html
@@ -0,0 +1,77 @@
+<!--
+ Any copyright is dedicated to the Public Domain.
+ http://creativecommons.org/publicdomain/zero/1.0/
+-->
+<html>
+<head>
+ <title>Archive Reader Non-Unicode 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;version=1.7">
+ function filesToCreate() {
+ var binaryData = "";
+ for (var i = 0, len = binaryString.length / 2; i < len; ++i) {
+ var hex = binaryString[i * 2] + binaryString[i * 2 + 1];
+ binaryData += String.fromCharCode(parseInt(hex,16));
+ }
+ return [ {name: "fileArchiveReader_nonUnicode.zip", data: binaryData} ];
+ }
+
+ function test1(binaryFile)
+ {
+ var r = new ArchiveReader(binaryFile, { encoding: "ISO-8859-1" });
+ isnot(r, null, "ArchiveReader cannot be null");
+
+ // GetFilename
+ var handle = r.getFilenames();
+ isnot(handle, null, "ArchiveReader.getFilenames() cannot be null");
+ handle.onsuccess = function() {
+ ok(true, "ArchiveReader.getFilenames() should return a 'success'");
+ is(this.result instanceof Array, true, "ArchiveReader.getFilenames() should return an array");
+ is(this.result.length, 1, "ArchiveReader.getFilenames(): the array contains 1 item");
+ ok(this.reader, r, "ArchiveRequest.reader should be == ArchiveReader");
+ dump('Content: ' + this.result[0] + '\n');
+ test2(binaryFile);
+ }
+ }
+
+ function test2(binaryFile)
+ {
+ try {
+ new ArchiveReader(binaryFile, { encoding: "random stuff" });
+ ok(false, "Should have thrown for bogus encoding label.");
+ } catch (e) {
+ ok(e instanceof RangeError, "Expected a RangeError");
+ }
+ finishTest();
+ }
+
+ function testSteps(files)
+ {
+ test1(files[0]);
+ yield undefined;
+ }
+
+
+ </script>
+ <script type="text/javascript;version=1.7" src="helpers.js"></script>
+
+</head>
+
+<body onload="runTest();">
+<p id="display">
+</p>
+<script type="text/javascript;version=1.7">
+var binaryString = '' +
+'504B0304140000000000255D094100000000000000000000000002000000912F504B03040A0000000000285D09416BB50A5A' +
+'010000000100000007000000912F9B2E747874D8504B01023F00140000000000255D09410000000000000000000000000200' +
+'24000000000000001000000000000000912F0A002000000000000100180062505F1A1376CD0162505F1A1376CD01FE3F8D59' +
+'1176CD01504B01023F000A0000000000285D09416BB50A5A0100000001000000070024000000000000002000000020000000' +
+'912F9B2E7478740A0020000000000001001800565EF41D1376CD0107BD73631176CD0107BD73631176CD01504B0506000000' +
+'0002000200AD000000460000000000';
+</script>
+</body>
+
+</html>