This repository was archived by the owner on Jun 12, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 299
/
Copy pathbytestream_test.html
50 lines (48 loc) · 1.8 KB
/
bytestream_test.html
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
<!-- Copyright 2014 Google Inc. All rights reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
// -->
<!DOCTYPE html>
<title>Unit Test of e2e.openpgp.ByteStream</title>
<script src="../../../../../javascript/closure/base.js"></script>
<script src="test_js_deps-runfiles.js"></script>
<script>
goog.require('goog.testing.jsunit');
goog.require('e2e.openpgp.ByteStream');
</script>
<script>
function testSplice() {
var array = new e2e.openpgp.ByteStream(
[0, 1, 2, 3, 4, 5, 6, 7, 8, 9]);
assertEquals(10, array.length);
assertArrayEquals([0, 1], array.splice(0, 2));
assertArrayEquals([2, 3], array.splice(0, 2));
assertEquals(6, array.length);
assertEquals(4, array.shift());
assertEquals(5, array.length);
assertArrayEquals([5, 6, 7, 8 ,9], array.toArray());
}
function testOutOfBounds() {
var array = new e2e.openpgp.ByteStream(
[0, 1, 2, 3, 4, 5, 6, 7, 8, 9]);
assertThrows(function() {array.splice(0, 11)});
assertThrows(function() {array.splice(0, -1)});
assertThrows(function() {array.splice(1, 3)});
assertArrayEquals([0, 1, 2, 3, 4, 5, 6, 7, 8, 9], array.splice(0, 10));
assertEquals(0, array.length);
assertThrows(function() {array.shift()});
assertEquals(0, array.length);
assertThrows(function() {array.splice(0, 1)});
assertEquals(0, array.length);
}
</script>