Apply dependencies update
[e-mobility-charging-stations-simulator.git] / test / utils / UtilsTest.ts
1 import expect from 'expect';
2
3 import Utils from '../../src/utils/Utils';
4
5 describe('Utils test suite', () => {
6 it('Verify generateUUID()/validateUUID()', () => {
7 const uuid = Utils.generateUUID();
8 expect(uuid).toBeDefined();
9 expect(uuid.length).toEqual(36);
10 expect(Utils.validateUUID(uuid)).toBe(true);
11 expect(Utils.validateUUID('abcdef00-0000-4000-0000-000000000000')).toBe(true);
12 expect(Utils.validateUUID('')).toBe(false);
13 // Shall invalidate Nil UUID
14 expect(Utils.validateUUID('00000000-0000-0000-0000-000000000000')).toBe(false);
15 expect(Utils.validateUUID('987FBC9-4BED-3078-CF07A-9141BA07C9F3')).toBe(false);
16 });
17
18 it('Verify sleep()', async () => {
19 const start = Date.now();
20 await Utils.sleep(1000);
21 const end = Date.now();
22 expect(end - start).toBeGreaterThanOrEqual(1000);
23 });
24
25 it('Verify convertToDate()', () => {
26 expect(Utils.convertToDate(undefined)).toBe(undefined);
27 expect(Utils.convertToDate(null)).toBe(null);
28 const invalidDate = Utils.convertToDate('');
29 expect(invalidDate instanceof Date && !isNaN(invalidDate.getTime())).toBe(false);
30 expect(Utils.convertToDate(0)).toStrictEqual(new Date('1970-01-01T00:00:00.000Z'));
31 expect(Utils.convertToDate([])).toBe(null);
32 expect(Utils.convertToDate({})).toBe(null);
33 expect(Utils.convertToDate(new Map())).toBe(null);
34 expect(Utils.convertToDate(new Set())).toBe(null);
35 expect(Utils.convertToDate(new WeakMap())).toBe(null);
36 expect(Utils.convertToDate(new WeakSet())).toBe(null);
37 const dateStr = '2020-01-01T00:00:00.000Z';
38 let date = Utils.convertToDate(dateStr);
39 expect(date).toBeInstanceOf(Date);
40 expect(date).toStrictEqual(new Date(dateStr));
41 date = Utils.convertToDate(new Date(dateStr));
42 expect(date).toBeInstanceOf(Date);
43 expect(date).toStrictEqual(new Date(dateStr));
44 });
45
46 it('Verify convertToInt()', () => {
47 expect(Utils.convertToInt(undefined)).toBe(0);
48 expect(Utils.convertToInt(null)).toBe(0);
49 expect(Utils.convertToInt(0)).toBe(0);
50 const randomInteger = Utils.getRandomInteger();
51 expect(Utils.convertToInt(randomInteger)).toEqual(randomInteger);
52 expect(Utils.convertToInt('-1')).toBe(-1);
53 expect(Utils.convertToInt('1')).toBe(1);
54 expect(Utils.convertToInt('1.1')).toBe(1);
55 expect(Utils.convertToInt('1.9')).toBe(1);
56 expect(Utils.convertToInt('1.999')).toBe(1);
57 expect(Utils.convertToInt(-1)).toBe(-1);
58 expect(Utils.convertToInt(1)).toBe(1);
59 expect(Utils.convertToInt(1.1)).toBe(1);
60 expect(Utils.convertToInt(1.9)).toBe(1);
61 expect(Utils.convertToInt(1.999)).toBe(1);
62 });
63
64 it('Verify convertToFloat()', () => {
65 expect(Utils.convertToFloat(undefined)).toBe(0);
66 expect(Utils.convertToFloat(null)).toBe(0);
67 expect(Utils.convertToFloat(0)).toBe(0);
68 const randomFloat = Utils.getRandomFloat();
69 expect(Utils.convertToFloat(randomFloat)).toEqual(randomFloat);
70 expect(Utils.convertToFloat('-1')).toBe(-1);
71 expect(Utils.convertToFloat('1')).toBe(1);
72 expect(Utils.convertToFloat('1.1')).toBe(1.1);
73 expect(Utils.convertToFloat('1.9')).toBe(1.9);
74 expect(Utils.convertToFloat('1.999')).toBe(1.999);
75 expect(Utils.convertToFloat(-1)).toBe(-1);
76 expect(Utils.convertToFloat(1)).toBe(1);
77 expect(Utils.convertToFloat(1.1)).toBe(1.1);
78 expect(Utils.convertToFloat(1.9)).toBe(1.9);
79 expect(Utils.convertToFloat(1.999)).toBe(1.999);
80 });
81
82 it('Verify convertToBoolean()', () => {
83 expect(Utils.convertToBoolean(undefined)).toBe(false);
84 expect(Utils.convertToBoolean(null)).toBe(false);
85 expect(Utils.convertToBoolean('true')).toBe(true);
86 expect(Utils.convertToBoolean('false')).toBe(false);
87 expect(Utils.convertToBoolean('TRUE')).toBe(true);
88 expect(Utils.convertToBoolean('FALSE')).toBe(false);
89 expect(Utils.convertToBoolean('1')).toBe(true);
90 expect(Utils.convertToBoolean('0')).toBe(false);
91 expect(Utils.convertToBoolean(1)).toBe(true);
92 expect(Utils.convertToBoolean(0)).toBe(false);
93 expect(Utils.convertToBoolean(true)).toBe(true);
94 expect(Utils.convertToBoolean(false)).toBe(false);
95 expect(Utils.convertToBoolean('')).toBe(false);
96 expect(Utils.convertToBoolean('NoNBoolean')).toBe(false);
97 });
98
99 it('Verify secureRandom()', () => {
100 const random = Utils.secureRandom();
101 expect(typeof random === 'number').toBe(true);
102 expect(random).toBeGreaterThanOrEqual(0);
103 expect(random).toBeLessThan(1);
104 });
105
106 it('Verify getRandomInteger()', () => {
107 let randomInteger = Utils.getRandomInteger();
108 expect(Number.isSafeInteger(randomInteger)).toBe(true);
109 expect(randomInteger).toBeGreaterThanOrEqual(0);
110 expect(randomInteger).toBeLessThanOrEqual(Number.MAX_SAFE_INTEGER);
111 expect(() => Utils.getRandomInteger(0, 1)).toThrowError(new RangeError('Invalid interval'));
112 expect(() => Utils.getRandomInteger(-1)).toThrowError(new RangeError('Invalid interval'));
113 expect(() => Utils.getRandomInteger(0, -1)).toThrowError(new RangeError('Invalid interval'));
114 randomInteger = Utils.getRandomInteger(2, 1);
115 expect(randomInteger).toBeGreaterThanOrEqual(1);
116 expect(randomInteger).toBeLessThanOrEqual(2);
117 const max = 2.2,
118 min = 1.1;
119 randomInteger = Utils.getRandomInteger(max, min);
120 expect(randomInteger).toBeGreaterThanOrEqual(Math.ceil(min));
121 expect(randomInteger).toBeLessThanOrEqual(Math.floor(max));
122 });
123
124 it('Verify getRandomFloat()', () => {
125 let randomFloat = Utils.getRandomFloat();
126 expect(typeof randomFloat === 'number').toBe(true);
127 expect(randomFloat).toBeGreaterThanOrEqual(0);
128 expect(randomFloat).toBeLessThanOrEqual(Number.MAX_VALUE);
129 expect(() => Utils.getRandomFloat(0, 1)).toThrowError(new RangeError('Invalid interval'));
130 expect(() => Utils.getRandomFloat(-1)).toThrowError(new RangeError('Invalid interval'));
131 expect(() => Utils.getRandomFloat(0, -1)).toThrowError(new RangeError('Invalid interval'));
132 randomFloat = Utils.getRandomFloat(Number.MAX_VALUE, 0, true);
133 expect(randomFloat).toBeGreaterThanOrEqual(-Number.MAX_VALUE);
134 expect(randomFloat).toBeLessThanOrEqual(Number.MAX_VALUE);
135 });
136
137 it('Verify isIterable()', () => {
138 expect(Utils.isIterable('')).toBe(false);
139 expect(Utils.isIterable(' ')).toBe(true);
140 expect(Utils.isIterable('test')).toBe(true);
141 expect(Utils.isIterable(null)).toBe(false);
142 expect(Utils.isIterable(undefined)).toBe(false);
143 expect(Utils.isIterable(0)).toBe(false);
144 expect(Utils.isIterable({})).toBe(false);
145 expect(Utils.isIterable({ 1: 1 })).toBe(false);
146 expect(Utils.isIterable([])).toBe(true);
147 expect(Utils.isIterable(new Map())).toBe(true);
148 expect(Utils.isIterable(new Set())).toBe(true);
149 expect(Utils.isIterable(new WeakMap())).toBe(false);
150 expect(Utils.isIterable(new WeakSet())).toBe(false);
151 });
152
153 it('Verify isEmptyString()', () => {
154 expect(Utils.isEmptyString('')).toBe(true);
155 expect(Utils.isEmptyString(' ')).toBe(true);
156 expect(Utils.isEmptyString(' ')).toBe(true);
157 expect(Utils.isEmptyString('test')).toBe(false);
158 expect(Utils.isEmptyString(' test')).toBe(false);
159 expect(Utils.isEmptyString('test ')).toBe(false);
160 expect(Utils.isEmptyString(null)).toBe(false);
161 expect(Utils.isEmptyString(undefined)).toBe(false);
162 expect(Utils.isEmptyString(0)).toBe(false);
163 expect(Utils.isEmptyString({})).toBe(false);
164 expect(Utils.isEmptyString([])).toBe(false);
165 expect(Utils.isEmptyString(new Map())).toBe(false);
166 expect(Utils.isEmptyString(new Set())).toBe(false);
167 expect(Utils.isEmptyString(new WeakMap())).toBe(false);
168 expect(Utils.isEmptyString(new WeakSet())).toBe(false);
169 });
170
171 it('Verify isUndefined()', () => {
172 expect(Utils.isUndefined(undefined)).toBe(true);
173 expect(Utils.isUndefined(null)).toBe(false);
174 expect(Utils.isUndefined('')).toBe(false);
175 expect(Utils.isUndefined(0)).toBe(false);
176 expect(Utils.isUndefined({})).toBe(false);
177 expect(Utils.isUndefined([])).toBe(false);
178 expect(Utils.isUndefined(new Map())).toBe(false);
179 expect(Utils.isUndefined(new Set())).toBe(false);
180 expect(Utils.isUndefined(new WeakMap())).toBe(false);
181 expect(Utils.isUndefined(new WeakSet())).toBe(false);
182 });
183
184 it('Verify isNullOrUndefined()', () => {
185 expect(Utils.isNullOrUndefined(null)).toBe(true);
186 expect(Utils.isNullOrUndefined(undefined)).toBe(true);
187 expect(Utils.isNullOrUndefined('')).toBe(false);
188 expect(Utils.isNullOrUndefined(0)).toBe(false);
189 expect(Utils.isNullOrUndefined({})).toBe(false);
190 expect(Utils.isNullOrUndefined([])).toBe(false);
191 expect(Utils.isNullOrUndefined(new Map())).toBe(false);
192 expect(Utils.isNullOrUndefined(new Set())).toBe(false);
193 expect(Utils.isNullOrUndefined(new WeakMap())).toBe(false);
194 expect(Utils.isNullOrUndefined(new WeakSet())).toBe(false);
195 });
196
197 it('Verify isEmptyArray()', () => {
198 expect(Utils.isEmptyArray([])).toBe(true);
199 expect(Utils.isEmptyArray([1, 2])).toBe(false);
200 expect(Utils.isEmptyArray(null)).toBe(true);
201 expect(Utils.isEmptyArray(undefined)).toBe(true);
202 expect(Utils.isEmptyArray('')).toBe(true);
203 expect(Utils.isEmptyArray('test')).toBe(true);
204 expect(Utils.isEmptyArray(0)).toBe(true);
205 expect(Utils.isEmptyArray({})).toBe(true);
206 expect(Utils.isEmptyArray(new Map())).toBe(true);
207 expect(Utils.isEmptyArray(new Set())).toBe(true);
208 expect(Utils.isEmptyArray(new WeakMap())).toBe(true);
209 expect(Utils.isEmptyArray(new WeakSet())).toBe(true);
210 });
211
212 it('Verify isEmptyObject()', () => {
213 expect(Utils.isEmptyObject({})).toBe(true);
214 expect(Utils.isEmptyObject({ 1: 1, 2: 2 })).toBe(false);
215 expect(Utils.isEmptyObject(null)).toBe(false);
216 expect(Utils.isEmptyObject(undefined)).toBe(false);
217 expect(Utils.isEmptyObject(new Map())).toBe(false);
218 expect(Utils.isEmptyObject(new Set())).toBe(false);
219 expect(Utils.isEmptyObject(new WeakMap())).toBe(false);
220 expect(Utils.isEmptyObject(new WeakSet())).toBe(false);
221 });
222 });