summaryrefslogtreecommitdiffstats
path: root/dom/archivereader/test/test_nonUnicode.html
blob: 6237ce10f9feb305a12153bf8384f5342c8d94eb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
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>