summaryrefslogtreecommitdiffstats
path: root/dom/archivereader/test/test_basic.html
blob: b3e5ab852ace87da05cf32a6190f441ab350221b (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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
<!--
  Any copyright is dedicated to the Public Domain.
  http://creativecommons.org/publicdomain/zero/1.0/
-->
<html>
<head>
  <title>Archive Reader 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 binaryString = '504B03040A00000000002E6BF14000000000000000000000000005001C00746573742F555409000337CA055039CA055075780B' +
                       '000104E803000004E8030000504B03041400000008002D6BF1401780E15015000000580200000A001C00746573742F612E7478' +
                       '74555409000336CA05503ACA055075780B000104E803000004E8030000CB48CDC9C95728CF2FCA49E1CA18658FB2A9C4060050' +
                       '4B03040A00000000002F88EC40662E847010000000100000000A001C00746573742F622E74787455540900035A65FF4F42C505' +
                       '5075780B000104E803000004E803000068656C6C6F20776F726C642C2032210A504B01021E030A00000000002E6BF140000000' +
                       '000000000000000000050018000000000000001000FD4100000000746573742F555405000337CA055075780B000104E8030000' +
                       '04E8030000504B01021E031400000008002D6BF1401780E15015000000580200000A0018000000000001000000B4813F000000' +
                       '746573742F612E747874555405000336CA055075780B000104E803000004E8030000504B01021E030A00000000002F88EC4066' +
                       '2E847010000000100000000A0018000000000001000000B48198000000746573742F622E74787455540500035A65FF4F75780B' +
                       '000104E803000004E8030000504B05060000000003000300EB000000EC0000000000';

    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.zip", data: binaryData},
             {name: "fileArchiveReader.txt", data: "Hello World"}];
  }

  handleFinished = 0;
  function markTestDone() {
    ++handleFinished;
    if (isFinished()) {
      finishTest();
    }
  }
  function isFinished() {
    return handleFinished == 6;
  }

  function testSteps(files)
  {
    var binaryFile = files[0];
    var textFile = files[1];

    var status;

    // Create - wrong 1
    try {
      var r = new ArchiveReader();
      status = false;
    }
    catch(e) {
      status = true;
    }
    ok(status, "ArchiveReader() without args MUST fail");

    // Create - wrong 2
    try {
      var r = new ArchiveReader(true);
      status = false;
    }
    catch(e) {
      status = true;
    }
    ok(status, "ArchiveReader() without a blob arg MUST fail");

    // Create - wrong 3
    try {
      var r = new ArchiveReader("hello world");
      status = false;
    }
    catch(e) {
      status = true;
    }
    ok(status, "ArchiveReader() without a blob arg MUST fail");

    // Create - good! (but with a text file)
    var rt = new ArchiveReader(textFile);
    isnot(rt, null, "ArchiveReader cannot be null");

    // GetFilename
    var handle = rt.getFilenames();
    isnot(handle, null, "ArchiveReader.getFilenames() cannot be null");
    handle.onsuccess = function() {
      ok(false, "ArchiveReader.getFilenames() should return a 'failure' if the input file is not a zip");
      markTestDone();
    }
    handle.onerror = function() {
      ok(true, "ArchiveReader.getFilenames() should return a 'error' if the input file is a zip file");
      is(this.reader, rt, "ArchiveRequest.reader == ArchiveReader");
      markTestDone();
    }

    // Create - good!
    var r = new ArchiveReader(binaryFile);
    isnot(r, null, "ArchiveReader cannot be null");

    // GetFilename
    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, 2, "ArchiveReader.getFilenames(): the array contains 2 items");
      is(this.result[0], "test/a.txt", "ArchiveReader.getFilenames(): first file is 'test/a.txt'");
      is(this.result[1], "test/b.txt", "ArchiveReader.getFilenames(): second file is 'test/b.txt'");
      ok(this.reader, r, "ArchiveRequest.reader should be == ArchiveReader");
      markTestDone();
    }
    handle.onerror = function() {
      ok(false, "ArchiveReader.getFilenames() should not return any 'error'");
      markTestDone();
    }

    // GetFile - wrong (no args)
    try {
      r.getFile();
      status = false;
    }
    catch(e) {
      status = true;
    }
    ok(status, "ArchiveReader.getFile() without args fail");

    var handle2 = r.getFile("hello world");
    isnot(handle2, null, "ArchiveReader.getFile() cannot be null");
    handle2.onsuccess = function() {
      ok(false, "ArchiveReader.getFile('unknown file') should not return a 'success'");
      markTestDone();
    }
    handle2.onerror = function() {
      ok(true, "ArchiveReader.getFile('unknown file') should return an 'error'");
      ok(this.reader, r, "ArchiveRequest.reader should be == ArchiveReader");
      markTestDone();
    }

    var handle3 = r.getFile("test/b.txt");
    isnot(handle3, null, "ArchiveReader.getFile() cannot be null");
    handle3.onsuccess = function() {
      ok(true, "ArchiveReader.getFile('test/b.txt') should return a 'success'");
      ok(this.reader, r, "ArchiveRequest.reader should be == ArchiveReader");
      is(this.result.name, "test/b.txt", "ArchiveReader.getFile('test/b.txt') the name MUST be 'test/b.txt'");
      is(this.result.type, "text/plain", "ArchiveReader.getFile('test/b.txt') the type MUST be 'text/plain'");

      var fr = new FileReader();
      fr.readAsText(this.result);
      fr.onerror = function() {
        ok(false, "ArchiveReader + FileReader should work!");
        markTestDone();
      }
      fr.onload = function(event) {
        is(event.target.result, "hello world, 2!\n", "ArchiveReader + FileReader are working together.");
        markTestDone();
      }
    }

    handle3.onerror = function() {
      ok(false, "ArchiveReader.getFile('test/b.txt') should not return an 'error'");
      markTestDone();
    }

    var handle4 = r.getFile("test/a.txt");
    isnot(handle4, null, "ArchiveReader.getFile() cannot be null");
    handle4.onsuccess = function() {
      ok(true, "ArchiveReader.getFile('test/a.txt') should return a 'success'");
      ok(this.reader, r, "ArchiveRequest.reader should be == ArchiveReader");
      is(this.result.name, "test/a.txt", "ArchiveReader.getFile('test/a.txt') the name MUST be 'test/a.txt'");
      is(this.result.type, "text/plain", "ArchiveReader.getFile('test/a.txt') the type MUST be 'text/plain'");

      var fr = new FileReader();
      fr.readAsText(this.result);
      fr.onerror = function() {
        ok(false, "ArchiveReader + FileReader should work!");
        markTestDone();
      }
      fr.onload = function(event) {
        is(event.target.result.length, 600, "ArchiveReader + FileReader are working with a compress data");
        var p = event.target.result.trim().split('\n');
        is(p.length, 50, "ArchiveReader + FileReader are working with a compress data");

        for (var i = 0; i < p.length; ++i)
          is(p[i], "hello world", "ArchiveReader + FileReader are working with a compress data");
        markTestDone();
      }
    }
    handle4.onerror = function() {
      ok(false, "ArchiveReader.getFile('test/a.txt') should not return an 'error'");
      markTestDone();
    }

    var handle5 = r.getFiles();
    isnot(handle5, null, "ArchiveReader.getFiles() cannot be null");
    handle5.onsuccess = function() {
      ok(true, "ArchiveReader.getFiles() should return a 'success'");
      ok(this.reader, r, "ArchiveRequest.reader should be == ArchiveReader");

      is(this.result.length, 2, "ArchiveReader.getFilenames(): the array contains 2 items");
      is(this.result[0].name, "test/a.txt", "ArchiveReader.getFilenames(): first file is 'test/a.txt'");
      is(this.result[1].name, "test/b.txt", "ArchiveReader.getFilenames(): second file is 'test/b.txt'");
      is(this.result[0].type, "text/plain", "ArchiveReader.getFile('test/a.txt') the type MUST be 'text/plain'");
      is(this.result[1].type, "text/plain", "ArchiveReader.getFile('test/a.txt') the type MUST be 'text/plain'");

      markTestDone();
    }
    handle5.onerror = function() {
      ok(false, "ArchiveReader.getFiles() should not return an 'error'");
      markTestDone();
    }
    yield undefined;
  }

  </script>
  <script type="text/javascript;version=1.7" src="helpers.js"></script>
</head>

<body onload="runTest();">
<p id="display">
</p>
</body>

</html>