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
|
// Copyright 2007 The Closure Library Authors. 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.
goog.provide('goog.crypt.base64Test');
goog.setTestOnly('goog.crypt.base64Test');
goog.require('goog.crypt');
goog.require('goog.crypt.base64');
goog.require('goog.testing.jsunit');
// Static test data
// clang-format off
var tests = [
'', '',
'f', 'Zg==',
'fo', 'Zm8=',
'foo', 'Zm9v',
'foob', 'Zm9vYg==',
'fooba', 'Zm9vYmE=',
'foobar', 'Zm9vYmFy',
// Testing non-ascii characters (1-10 in chinese)
'\xe4\xb8\x80\xe4\xba\x8c\xe4\xb8\x89\xe5\x9b\x9b\xe4\xba\x94\xe5' +
'\x85\xad\xe4\xb8\x83\xe5\x85\xab\xe4\xb9\x9d\xe5\x8d\x81',
'5LiA5LqM5LiJ5Zub5LqU5YWt5LiD5YWr5Lmd5Y2B'];
// clang-format on
/**
* Asserts that `encoded` matches `expected` when base64 decoded as byte array.
* @param {!Array<number>} expected The expected binary decoded content.
* @param {string} encoded The base64 encoded content to check.
* @param {boolean=} opt_webSafe True if we should use the web-safe alphabet.
*/
function assertDecodeToByteArrayEquals(expected, encoded, opt_webSafe) {
var dec = goog.crypt.base64.decodeStringToByteArray(encoded, opt_webSafe);
assertArrayEquals(expected, dec);
}
/**
* Asserts that `encoded` matches `expected` when base64 decoded as uint8array,
* if supported on this browser (otherwise this function is a no-op).
* @param {!Array<number>} expected The expected binary decoded content.
* @param {string} encoded The base64 encoded content to check.
*/
function assertDecodeToUint8ArrayEquals(expected, encoded) {
if (goog.global.Uint8Array) {
var dec = goog.crypt.base64.decodeStringToUint8Array(encoded);
assertArrayEquals(expected, Array.prototype.slice.call(dec));
}
}
function testByteArrayEncoding() {
// Let's see if it's sane by feeding it some well-known values. Index i
// has the input and index i+1 has the expected value.
for (var i = 0; i < tests.length; i += 2) {
var enc = goog.crypt.base64.encodeByteArray(
goog.crypt.stringToByteArray(tests[i]));
assertEquals(tests[i + 1], enc);
var expected = goog.crypt.stringToByteArray(tests[i]);
assertDecodeToByteArrayEquals(expected, enc);
assertDecodeToUint8ArrayEquals(expected, enc);
// Check that obsolete websafe param has no effect.
assertDecodeToByteArrayEquals(expected, enc, true /* websafe */);
// Re-encode as websafe.
enc = goog.crypt.base64.encodeByteArray(
goog.crypt.stringToByteArray(tests[i], true /* websafe */));
// Check that decoding accepts websafe codes.
assertDecodeToByteArrayEquals(expected, enc);
assertDecodeToUint8ArrayEquals(expected, enc);
// Check that obsolete websafe param has no effect.
assertDecodeToByteArrayEquals(expected, enc, true /* websafe */);
}
}
function testOddLengthByteArrayEncoding() {
var buffer = [0, 0, 0];
var encodedBuffer = goog.crypt.base64.encodeByteArray(buffer);
assertEquals('AAAA', encodedBuffer);
assertDecodeToByteArrayEquals(buffer, encodedBuffer);
assertDecodeToUint8ArrayEquals(buffer, encodedBuffer);
}
// Tests that decoding a string where the length is not a multiple of 4 does
// not produce spurious trailing zeroes. This is a regression test for
// cl/65120705, which fixes a bug that was introduced when support for
// non-padded base64 encoding was added in cl/20209336.
function testOddLengthByteArrayDecoding() {
// The base-64 encoding of the bytes [97, 98, 99, 100], with no padding.
// The padded version would be "YWJjZA==" (length 8), or "YWJjZA.." if
// web-safe.
var encodedBuffer = 'YWJjZA';
var expected = goog.crypt.stringToByteArray('abcd');
assertDecodeToByteArrayEquals(expected, encodedBuffer);
assertDecodeToUint8ArrayEquals(expected, encodedBuffer);
// Repeat the test in web-safe decoding mode.
assertDecodeToByteArrayEquals(expected, encodedBuffer, true /* web-safe */);
}
function testShortcutPathEncoding() {
// Test the higher-level API (tests the btoa/atob shortcut path)
for (var i = 0; i < tests.length; i += 2) {
var enc = goog.crypt.base64.encodeString(tests[i]);
assertEquals(tests[i + 1], enc);
var dec = goog.crypt.base64.decodeString(enc);
assertEquals(tests[i], dec);
}
}
function testMultipleIterations() {
// Now run it through its paces
var numIterations = 100;
for (var i = 0; i < numIterations; i++) {
var input = [];
for (var j = 0; j < i; j++) input[j] = j % 256;
var encoded = goog.crypt.base64.encodeByteArray(input);
assertDecodeToByteArrayEquals(input, encoded);
assertDecodeToUint8ArrayEquals(input, encoded);
}
}
function testWebSafeEncoding() {
// Test non-websafe / websafe difference
var test = '>>>???>>>???=/+';
var testArr = goog.crypt.stringToByteArray(test);
var enc = goog.crypt.base64.encodeByteArray(testArr);
assertEquals('Non-websafe broken?', 'Pj4+Pz8/Pj4+Pz8/PS8r', enc);
enc = goog.crypt.base64.encodeString(test);
assertEquals('Non-websafe broken?', 'Pj4+Pz8/Pj4+Pz8/PS8r', enc);
enc = goog.crypt.base64.encodeByteArray(testArr, true /* websafe */);
assertEquals('Websafe encoding broken', 'Pj4-Pz8_Pj4-Pz8_PS8r', enc);
enc = goog.crypt.base64.encodeString(test, true);
assertEquals('Non-websafe broken?', 'Pj4-Pz8_Pj4-Pz8_PS8r', enc);
assertDecodeToByteArrayEquals(testArr, enc);
assertDecodeToUint8ArrayEquals(testArr, enc);
var dec = goog.crypt.base64.decodeString(enc, true /* websafe */);
assertEquals('Websafe decoding broken', test, dec);
// Test parsing malformed characters
assertThrows('Didn\'t throw on malformed input', function() {
goog.crypt.base64.decodeStringToByteArray('foooooo)oooo');
});
// Test parsing malformed characters
assertThrows('Didn\'t throw on malformed input', function() {
goog.crypt.base64.decodeStringToUint8Array('foooooo)oooo');
});
}
function testDecodeIgnoresSpace() {
var spaceTests = [
// [encoded, expected decoded]
[' \n\t\r', ''], ['Z g =\n=', 'f'], ['Zm 8=', 'fo'], [' Zm 9v', 'foo'],
['Zm9v Yg ==\t ', 'foob'], ['\nZ m9 vYm\n E=', 'fooba'],
[' \nZ \tm9v YmFy ', 'foobar']
];
for (var i = 0; i < spaceTests.length; i++) {
var thisTest = spaceTests[i];
var encoded = thisTest[0];
var expectedStr = thisTest[1];
var expected = goog.crypt.stringToByteArray(expectedStr);
assertDecodeToByteArrayEquals(expected, encoded);
assertDecodeToUint8ArrayEquals(expected, encoded);
assertEquals(expectedStr, goog.crypt.base64.decodeString(encoded));
}
}
|