test(simulator): use named import
[e-mobility-charging-stations-simulator.git] / test / utils / UtilsTest.ts
index b189bfd52208934fe78d4d6f67e372909cdea9e1..15099685b3f5ba3025fee6c7e1f050f9bc705057 100644 (file)
@@ -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);