mirror of
https://github.com/denoland/deno.git
synced 2025-10-03 07:34:36 +00:00
Merge deno_cli_snapshots into deno_cli (#3064)
This commit is contained in:
parent
9049213867
commit
b81e5db17a
148 changed files with 38 additions and 83 deletions
51
cli/js/get_random_values_test.ts
Normal file
51
cli/js/get_random_values_test.ts
Normal file
|
@ -0,0 +1,51 @@
|
|||
// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
|
||||
import { test, assertNotEquals, assertStrictEq } from "./test_util.ts";
|
||||
|
||||
test(function getRandomValuesInt8Array(): void {
|
||||
const arr = new Int8Array(32);
|
||||
crypto.getRandomValues(arr);
|
||||
assertNotEquals(arr, new Int8Array(32));
|
||||
});
|
||||
|
||||
test(function getRandomValuesUint8Array(): void {
|
||||
const arr = new Uint8Array(32);
|
||||
crypto.getRandomValues(arr);
|
||||
assertNotEquals(arr, new Uint8Array(32));
|
||||
});
|
||||
|
||||
test(function getRandomValuesUint8ClampedArray(): void {
|
||||
const arr = new Uint8ClampedArray(32);
|
||||
crypto.getRandomValues(arr);
|
||||
assertNotEquals(arr, new Uint8ClampedArray(32));
|
||||
});
|
||||
|
||||
test(function getRandomValuesInt16Array(): void {
|
||||
const arr = new Int16Array(4);
|
||||
crypto.getRandomValues(arr);
|
||||
assertNotEquals(arr, new Int16Array(4));
|
||||
});
|
||||
|
||||
test(function getRandomValuesUint16Array(): void {
|
||||
const arr = new Uint16Array(4);
|
||||
crypto.getRandomValues(arr);
|
||||
assertNotEquals(arr, new Uint16Array(4));
|
||||
});
|
||||
|
||||
test(function getRandomValuesInt32Array(): void {
|
||||
const arr = new Int32Array(8);
|
||||
crypto.getRandomValues(arr);
|
||||
assertNotEquals(arr, new Int32Array(8));
|
||||
});
|
||||
|
||||
test(function getRandomValuesUint32Array(): void {
|
||||
const arr = new Uint32Array(8);
|
||||
crypto.getRandomValues(arr);
|
||||
assertNotEquals(arr, new Uint32Array(8));
|
||||
});
|
||||
|
||||
test(function getRandomValuesReturnValue(): void {
|
||||
const arr = new Uint32Array(8);
|
||||
const rtn = crypto.getRandomValues(arr);
|
||||
assertNotEquals(arr, new Uint32Array(8));
|
||||
assertStrictEq(rtn, arr);
|
||||
});
|
Loading…
Add table
Add a link
Reference in a new issue