perf(simulator): build once address for tags caches addressable indexes
[e-mobility-charging-stations-simulator.git] / test / utils / UtilsTest.ts
index 836e41b93bea826baaa3a67ddd7c868aaf074bcd..9bf708027caf654f390b7bad646c4c94589cdb72 100644 (file)
@@ -1,7 +1,7 @@
-import expect from 'expect';
+import { expect } from 'expect';
 
-import Constants from '../../src/utils/Constants';
-import Utils from '../../src/utils/Utils';
+import { Constants } from '../../src/utils/Constants';
+import { Utils } from '../../src/utils/Utils';
 
 describe('Utils test suite', () => {
   it('Verify generateUUID()/validateUUID()', () => {
@@ -149,6 +149,67 @@ 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 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);
+    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 }, '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()', () => {
     expect(Utils.isIterable('')).toBe(true);
     expect(Utils.isIterable(' ')).toBe(true);