2021-01-11 12:13:41 -05:00
|
|
|
// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
|
2021-11-23 11:45:18 -05:00
|
|
|
import { assertNotEquals, assertStrictEquals } from "./test_util.ts";
|
2019-05-17 14:03:01 -04:00
|
|
|
|
2021-11-23 11:45:18 -05:00
|
|
|
Deno.test(function getRandomValuesInt8Array() {
|
2019-05-17 14:03:01 -04:00
|
|
|
const arr = new Int8Array(32);
|
|
|
|
crypto.getRandomValues(arr);
|
|
|
|
assertNotEquals(arr, new Int8Array(32));
|
|
|
|
});
|
|
|
|
|
2021-11-23 11:45:18 -05:00
|
|
|
Deno.test(function getRandomValuesUint8Array() {
|
2019-05-17 14:03:01 -04:00
|
|
|
const arr = new Uint8Array(32);
|
|
|
|
crypto.getRandomValues(arr);
|
|
|
|
assertNotEquals(arr, new Uint8Array(32));
|
|
|
|
});
|
|
|
|
|
2021-11-23 11:45:18 -05:00
|
|
|
Deno.test(function getRandomValuesUint8ClampedArray() {
|
2019-05-17 14:03:01 -04:00
|
|
|
const arr = new Uint8ClampedArray(32);
|
|
|
|
crypto.getRandomValues(arr);
|
|
|
|
assertNotEquals(arr, new Uint8ClampedArray(32));
|
|
|
|
});
|
|
|
|
|
2021-11-23 11:45:18 -05:00
|
|
|
Deno.test(function getRandomValuesInt16Array() {
|
2019-05-17 14:03:01 -04:00
|
|
|
const arr = new Int16Array(4);
|
|
|
|
crypto.getRandomValues(arr);
|
|
|
|
assertNotEquals(arr, new Int16Array(4));
|
|
|
|
});
|
|
|
|
|
2021-11-23 11:45:18 -05:00
|
|
|
Deno.test(function getRandomValuesUint16Array() {
|
2019-05-17 14:03:01 -04:00
|
|
|
const arr = new Uint16Array(4);
|
|
|
|
crypto.getRandomValues(arr);
|
|
|
|
assertNotEquals(arr, new Uint16Array(4));
|
|
|
|
});
|
|
|
|
|
2021-11-23 11:45:18 -05:00
|
|
|
Deno.test(function getRandomValuesInt32Array() {
|
2019-05-17 14:03:01 -04:00
|
|
|
const arr = new Int32Array(8);
|
|
|
|
crypto.getRandomValues(arr);
|
|
|
|
assertNotEquals(arr, new Int32Array(8));
|
|
|
|
});
|
|
|
|
|
2021-11-23 11:45:18 -05:00
|
|
|
Deno.test(function getRandomValuesUint32Array() {
|
2019-05-17 14:03:01 -04:00
|
|
|
const arr = new Uint32Array(8);
|
|
|
|
crypto.getRandomValues(arr);
|
|
|
|
assertNotEquals(arr, new Uint32Array(8));
|
|
|
|
});
|
|
|
|
|
2021-11-23 11:45:18 -05:00
|
|
|
Deno.test(function getRandomValuesReturnValue() {
|
2019-05-17 14:03:01 -04:00
|
|
|
const arr = new Uint32Array(8);
|
|
|
|
const rtn = crypto.getRandomValues(arr);
|
|
|
|
assertNotEquals(arr, new Uint32Array(8));
|
2020-06-05 23:43:00 -04:00
|
|
|
assertStrictEquals(rtn, arr);
|
2019-05-17 14:03:01 -04:00
|
|
|
});
|