import { Utils } from '../../src/Utils'; import { JSFuck } from '../../src/enums/JSFuck'; const assert: Chai.AssertStatic = require('chai').assert; describe('Utils', () => { describe('arrayContains (array: any[], searchElement: any): boolean', () => { it('should return boolean depends on condition if array is contains given value or not', () => { assert.equal(Utils.arrayContains(['1', '2', '3'], '2'), true); assert.equal(Utils.arrayContains([1, 2, 3], 2), true); assert.equal(Utils.arrayContains([1, 2, 3], 4), false); }); }); describe('arrayRotate (array: T[], times: number): T[]', () => { let array: number[]; beforeEach(() => { array = [1, 2, 3, 4, 5, 6]; }); it('should rotate (shift) array by a given value', () => { assert.deepEqual(Utils.arrayRotate(array, 2), [5, 6, 1, 2, 3, 4]); }); it('should do nothing if value <= 0', () => { assert.deepEqual(Utils.arrayRotate(array, 0), [1, 2, 3, 4, 5, 6]); assert.deepEqual(Utils.arrayRotate(array, -1), [1, 2, 3, 4, 5, 6]); }); it('should throw exception if array is empty', () => { assert.throws(() => Utils.arrayRotate([], 5), ReferenceError); }); }); describe('btoa (string: string): string', () => { it('should creates a base-64 encoded string from a given string', () => { assert.equal(Utils.btoa('string'), 'c3RyaW5n'); }); }); describe('decToHex (dec: number): string', () => { it('should creates a string with hexadecimal value from a given decimal number', () => { assert.equal(Utils.decToHex(0), '0'); assert.equal(Utils.decToHex(10), 'a'); assert.equal(Utils.decToHex(17), '11'); assert.equal(Utils.decToHex(536870912), '20000000'); }); }); describe('extractDomainFromUrl (url: string): string', () => { it('should extract domain from the given URL', () => { assert.equal(Utils.extractDomainFromUrl('http://google.ru'), 'google.ru'); assert.equal(Utils.extractDomainFromUrl('http://www.google.ru'), 'www.google.ru'); assert.equal(Utils.extractDomainFromUrl('https://www.google.ru:9000'), 'www.google.ru'); assert.equal(Utils.extractDomainFromUrl('//google.ru/abc'), 'google.ru'); assert.equal(Utils.extractDomainFromUrl('//localhost:9000'), 'localhost'); }); }); describe('getRandomVariableName (length: number = 6): string', () => { it('should return a string of given length with random variable name', () => { assert.match(Utils.getRandomVariableName(4), /^_0x(\w){4}$/); assert.match(Utils.getRandomVariableName(6), /^_0x(\w){4,6}$/); }); }); describe('isInteger (number: number): boolean', () => { it('should return true if given number or string is integer', () => { assert.equal(Utils.isInteger(4), true); assert.equal(Utils.isInteger('4'), true); assert.equal(Utils.isInteger('a'), false); }); }); describe('stringToJSFuck (string: string): string', () => { let expected: string = `${JSFuck.s} + ${JSFuck.t} + ${JSFuck.r} + ${JSFuck.i} + ${JSFuck.n} + ${JSFuck.g}`; it('should creates a JSFuck encoded string from a given string', () => { assert.equal(Utils.stringToJSFuck('string'), expected); }); }); describe('stringToUnicode (string: string): string', () => { let expected: string = `'\\x73\\x74\\x72\\x69\\x6e\\x67'`; it('should return a unicode encoded string from a given string', () => { assert.equal(Utils.stringToUnicode('string'), expected); }); }); describe('hideString (str: string, length: number): [string, string]', () => { let original1: string = 'example.com', [str1, diff] = Utils.hideString(original1, 30); it('should return a string with the original string within', () => { assert.isTrue(str1.length > original1.length); assert.equal(str1.replace(new RegExp('[' + diff + ']', 'g'), ''), original1); }); }); });