2020-01-02 15:13:47 -05:00
|
|
|
// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
|
2020-03-04 11:31:14 -05:00
|
|
|
import { unitTest, assertNotEquals, assertStrictEq } from "./test_util.ts";
|
2019-05-17 14:03:01 -04:00
|
|
|
|
2020-03-04 11:31:14 -05:00
|
|
|
unitTest(function getRandomValuesInt8Array(): void {
|
2019-05-17 14:03:01 -04:00
|
|
|
const arr = new Int8Array(32);
|
|
|
|
crypto.getRandomValues(arr);
|
|
|
|
assertNotEquals(arr, new Int8Array(32));
|
|
|
|
});
|
|
|
|
|
2020-03-04 11:31:14 -05:00
|
|
|
unitTest(function getRandomValuesUint8Array(): void {
|
2019-05-17 14:03:01 -04:00
|
|
|
const arr = new Uint8Array(32);
|
|
|
|
crypto.getRandomValues(arr);
|
|
|
|
assertNotEquals(arr, new Uint8Array(32));
|
|
|
|
});
|
|
|
|
|
2020-03-04 11:31:14 -05:00
|
|
|
unitTest(function getRandomValuesUint8ClampedArray(): void {
|
2019-05-17 14:03:01 -04:00
|
|
|
const arr = new Uint8ClampedArray(32);
|
|
|
|
crypto.getRandomValues(arr);
|
|
|
|
assertNotEquals(arr, new Uint8ClampedArray(32));
|
|
|
|
});
|
|
|
|
|
2020-03-04 11:31:14 -05:00
|
|
|
unitTest(function getRandomValuesInt16Array(): void {
|
2019-05-17 14:03:01 -04:00
|
|
|
const arr = new Int16Array(4);
|
|
|
|
crypto.getRandomValues(arr);
|
|
|
|
assertNotEquals(arr, new Int16Array(4));
|
|
|
|
});
|
|
|
|
|
2020-03-04 11:31:14 -05:00
|
|
|
unitTest(function getRandomValuesUint16Array(): void {
|
2019-05-17 14:03:01 -04:00
|
|
|
const arr = new Uint16Array(4);
|
|
|
|
crypto.getRandomValues(arr);
|
|
|
|
assertNotEquals(arr, new Uint16Array(4));
|
|
|
|
});
|
|
|
|
|
2020-03-04 11:31:14 -05:00
|
|
|
unitTest(function getRandomValuesInt32Array(): void {
|
2019-05-17 14:03:01 -04:00
|
|
|
const arr = new Int32Array(8);
|
|
|
|
crypto.getRandomValues(arr);
|
|
|
|
assertNotEquals(arr, new Int32Array(8));
|
|
|
|
});
|
|
|
|
|
2020-03-04 11:31:14 -05:00
|
|
|
unitTest(function getRandomValuesUint32Array(): void {
|
2019-05-17 14:03:01 -04:00
|
|
|
const arr = new Uint32Array(8);
|
|
|
|
crypto.getRandomValues(arr);
|
|
|
|
assertNotEquals(arr, new Uint32Array(8));
|
|
|
|
});
|
|
|
|
|
2020-03-04 11:31:14 -05:00
|
|
|
unitTest(function getRandomValuesReturnValue(): void {
|
2019-05-17 14:03:01 -04:00
|
|
|
const arr = new Uint32Array(8);
|
|
|
|
const rtn = crypto.getRandomValues(arr);
|
|
|
|
assertNotEquals(arr, new Uint32Array(8));
|
|
|
|
assertStrictEq(rtn, arr);
|
|
|
|
});
|