mirror of
https://github.com/coder/code-server.git
synced 2026-05-09 05:47:26 +02:00
28 lines
983 B
TypeScript
28 lines
983 B
TypeScript
/*---------------------------------------------------------------------------------------------
|
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
* Licensed under the MIT License. See License.txt in the project root for license information.
|
|
*--------------------------------------------------------------------------------------------*/
|
|
|
|
import { checksum } from 'vs/base/node/crypto';
|
|
import { generateUuid } from 'vs/base/common/uuid';
|
|
import { join } from 'vs/base/common/path';
|
|
import { tmpdir } from 'os';
|
|
import { mkdirp, rimraf, RimRafMode, writeFile } from 'vs/base/node/pfs';
|
|
|
|
suite('Crypto', () => {
|
|
|
|
test('checksum', async () => {
|
|
const id = generateUuid();
|
|
const testDir = join(tmpdir(), 'vsctests', id);
|
|
const testFile = join(testDir, 'checksum.txt');
|
|
|
|
await mkdirp(testDir);
|
|
|
|
await writeFile(testFile, 'Hello World');
|
|
|
|
await checksum(testFile, '0a4d55a8d778e5022fab701977c5d840bbc486d0');
|
|
|
|
await rimraf(testDir, RimRafMode.MOVE);
|
|
});
|
|
});
|