X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;ds=inline;f=test%2Futils%2FUtilsTest.ts;h=15099685b3f5ba3025fee6c7e1f050f9bc705057;hb=f64ca10c3dfd40e1deda5aa7cf3397305575117e;hp=b189bfd52208934fe78d4d6f67e372909cdea9e1;hpb=268a74bb051fcbbad532fd833f0d8fd2b33b6c64;p=e-mobility-charging-stations-simulator.git diff --git a/test/utils/UtilsTest.ts b/test/utils/UtilsTest.ts index b189bfd5..15099685 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'; @@ -149,6 +149,35 @@ describe('Utils test suite', () => { expect(randomFloat).toBeLessThanOrEqual(0); }); + it('Verify isObject()', () => { + expect(Utils.isObject('test')).toBe(false); + expect(Utils.isObject(undefined)).toBe(false); + expect(Utils.isObject(null)).toBe(false); + expect(Utils.isObject(0)).toBe(false); + expect(Utils.isObject([])).toBe(false); + expect(Utils.isObject([0, 1])).toBe(false); + expect(Utils.isObject(['0', '1'])).toBe(false); + expect(Utils.isObject({})).toBe(true); + expect(Utils.isObject({ 1: 1 })).toBe(true); + expect(Utils.isObject({ '1': '1' })).toBe(true); + expect(Utils.isObject(new Map())).toBe(true); + expect(Utils.isObject(new Set())).toBe(true); + expect(Utils.isObject(new WeakMap())).toBe(true); + expect(Utils.isObject(new WeakSet())).toBe(true); + }); + + it('Verify hasOwnProp()', () => { + expect(Utils.hasOwnProp('test', '')).toBe(false); + expect(Utils.hasOwnProp(undefined, '')).toBe(false); + expect(Utils.hasOwnProp(null, '')).toBe(false); + expect(Utils.hasOwnProp([], '')).toBe(false); + expect(Utils.hasOwnProp({}, '')).toBe(false); + expect(Utils.hasOwnProp({ 1: 1 }, 1)).toBe(true); + expect(Utils.hasOwnProp({ 1: 1 }, 2)).toBe(false); + expect(Utils.hasOwnProp({ '1': '1' }, '1')).toBe(true); + expect(Utils.hasOwnProp({ '1': '1' }, '2')).toBe(false); + }); + it('Verify isIterable()', () => { expect(Utils.isIterable('')).toBe(true); expect(Utils.isIterable(' ')).toBe(true);