mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-15 02:48:30 -05:00
48 lines
1.7 KiB
TypeScript
48 lines
1.7 KiB
TypeScript
/*---------------------------------------------------------------------------------------------
|
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
* Licensed under the Source EULA. See License.txt in the project root for license information.
|
|
*--------------------------------------------------------------------------------------------*/
|
|
'use strict';
|
|
|
|
import * as assert from 'assert';
|
|
import { hash } from 'vs/base/common/hash';
|
|
|
|
suite('Hash', () => {
|
|
test('string', () => {
|
|
assert.equal(hash('hello'), hash('hello'));
|
|
assert.notEqual(hash('hello'), hash('world'));
|
|
assert.notEqual(hash('hello'), hash('olleh'));
|
|
assert.notEqual(hash('hello'), hash('Hello'));
|
|
assert.notEqual(hash('hello'), hash('Hello '));
|
|
assert.notEqual(hash('h'), hash('H'));
|
|
assert.notEqual(hash('-'), hash('_'));
|
|
});
|
|
|
|
test('number', () => {
|
|
assert.equal(hash(1), hash(1.0));
|
|
assert.notEqual(hash(0), hash(1));
|
|
assert.notEqual(hash(1), hash(-1));
|
|
assert.notEqual(hash(0x12345678), hash(0x123456789));
|
|
});
|
|
|
|
test('boolean', () => {
|
|
assert.equal(hash(true), hash(true));
|
|
assert.notEqual(hash(true), hash(false));
|
|
});
|
|
|
|
test('array', () => {
|
|
assert.equal(hash([1, 2, 3]), hash([1, 2, 3]));
|
|
assert.equal(hash(['foo', 'bar']), hash(['foo', 'bar']));
|
|
assert.equal(hash([]), hash([]));
|
|
assert.notEqual(hash(['foo', 'bar']), hash(['bar', 'foo']));
|
|
assert.notEqual(hash(['foo', 'bar']), hash(['bar', 'foo', null]));
|
|
});
|
|
|
|
test('object', () => {
|
|
assert.equal(hash({}), hash({}));
|
|
assert.equal(hash({ 'foo': 'bar' }), hash({ 'foo': 'bar' }));
|
|
assert.equal(hash({ 'foo': 'bar', 'foo2': void 0 }), hash({ 'foo2': void 0, 'foo': 'bar' }));
|
|
assert.notEqual(hash({ 'foo': 'bar' }), hash({ 'foo': 'bar2' }));
|
|
assert.notEqual(hash({}), hash([]));
|
|
});
|
|
}); |