1234567891011121314151617181920212223242526272829303132333435363738 |
- import { IObfuscationResult } from '../../../src/interfaces/IObfuscationResult';
- import { NO_CUSTOM_NODES_PRESET } from '../../../src/preset-options/NoCustomNodesPreset';
- import { readFileAsString } from '../../helpers/readFileAsString';
- import { JavaScriptObfuscator } from '../../../src/JavaScriptObfuscator';
- const assert: Chai.AssertStatic = require('chai').assert;
- describe('CatchClauseObfuscator', () => {
- describe('obfuscateNode (catchClauseNode: ICatchClauseNode): void', () => {
- const obfuscationResult: IObfuscationResult = JavaScriptObfuscator.obfuscate(
- readFileAsString('./test/fixtures/node-obfuscators/catch-clause-obfuscator/catch-clause-obfuscator.js'),
- Object.assign({}, NO_CUSTOM_NODES_PRESET)
- );
- const obfuscatedCode: string = obfuscationResult.getObfuscatedCode();
- const paramNameRegExp: RegExp = /catch *\((_0x([a-z0-9]){4,6})\) *\{/;
- const bodyParamNameRegExp: RegExp = /console\['\\x6c\\x6f\\x67'\]\((_0x([a-z0-9]){4,6})\);/;
- it('should obfuscate catch clause node', () => {
- assert.match(obfuscatedCode, paramNameRegExp);
- assert.match(obfuscatedCode, bodyParamNameRegExp);
- });
- it('catch clause arguments param name and param name in body should be same', () => {
- const firstMatchArray: RegExpMatchArray|null = obfuscatedCode.match(paramNameRegExp);
- const secondMatchArray: RegExpMatchArray|null = obfuscatedCode.match(bodyParamNameRegExp);
- const firstMatch: string|undefined = firstMatchArray ? firstMatchArray[1] : undefined;
- const secondMatch: string|undefined = secondMatchArray ? secondMatchArray[1] : undefined;
- assert.isOk(firstMatch);
- assert.isOk(secondMatch);
- assert.equal(firstMatch, secondMatch);
- });
- });
- });
|