X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=test%2Futils%2FUtilsTest.ts;h=9bf708027caf654f390b7bad646c4c94589cdb72;hb=1c224d13cf2e6b7efa4eaaa360e7a4c8654fccb7;hp=dcdf78962e585080084c495471dd3582376f797b;hpb=af29b598b4031b37f4eb806e52abbbbeaf517b5f;p=e-mobility-charging-stations-simulator.git diff --git a/test/utils/UtilsTest.ts b/test/utils/UtilsTest.ts index dcdf7896..9bf70802 100644 --- a/test/utils/UtilsTest.ts +++ b/test/utils/UtilsTest.ts @@ -1,4 +1,4 @@ -import expect from 'expect'; +import { expect } from 'expect'; import { Constants } from '../../src/utils/Constants'; import { Utils } from '../../src/utils/Utils'; @@ -166,6 +166,34 @@ describe('Utils test suite', () => { expect(Utils.isObject(new WeakSet())).toBe(true); }); + it('Verify cloneObject()', () => { + const obj = { 1: 1 }; + expect(Utils.cloneObject(obj)).toStrictEqual(obj); + expect(Utils.cloneObject(obj) === obj).toBe(false); + const array = [1, 2]; + expect(Utils.cloneObject(array)).toStrictEqual(array); + expect(Utils.cloneObject(array) === array).toBe(false); + const date = new Date(); + expect(Utils.cloneObject(date)).toStrictEqual(date); + expect(Utils.cloneObject(date) === date).toBe(false); + const map = new Map([['1', '2']]); + expect(Utils.cloneObject(map)).toStrictEqual(map); + expect(Utils.cloneObject(map) === map).toBe(false); + const set = new Set(['1']); + expect(Utils.cloneObject(set)).toStrictEqual(set); + expect(Utils.cloneObject(set) === set).toBe(false); + // The URL object seems to have not enumerable properties + const url = new URL('https://domain.tld'); + expect(Utils.cloneObject(url)).toStrictEqual(url); + expect(Utils.cloneObject(url) === url).toBe(true); + const weakMap = new WeakMap([[{ 1: 1 }, { 2: 2 }]]); + expect(Utils.cloneObject(weakMap)).toStrictEqual(weakMap); + expect(Utils.cloneObject(weakMap) === weakMap).toBe(true); + const weakSet = new WeakSet([{ 1: 1 }, { 2: 2 }]); + expect(Utils.cloneObject(weakSet)).toStrictEqual(weakSet); + expect(Utils.cloneObject(weakSet) === weakSet).toBe(true); + }); + it('Verify hasOwnProp()', () => { expect(Utils.hasOwnProp('test', '')).toBe(false); expect(Utils.hasOwnProp(undefined, '')).toBe(false); @@ -173,9 +201,13 @@ describe('Utils test suite', () => { expect(Utils.hasOwnProp([], '')).toBe(false); expect(Utils.hasOwnProp({}, '')).toBe(false); expect(Utils.hasOwnProp({ 1: 1 }, 1)).toBe(true); + expect(Utils.hasOwnProp({ 1: 1 }, '1')).toBe(true); expect(Utils.hasOwnProp({ 1: 1 }, 2)).toBe(false); + expect(Utils.hasOwnProp({ 1: 1 }, '2')).toBe(false); expect(Utils.hasOwnProp({ '1': '1' }, '1')).toBe(true); + expect(Utils.hasOwnProp({ '1': '1' }, 1)).toBe(true); expect(Utils.hasOwnProp({ '1': '1' }, '2')).toBe(false); + expect(Utils.hasOwnProp({ '1': '1' }, 2)).toBe(false); }); it('Verify isIterable()', () => {