123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610 |
- import 'reflect-metadata';
- import { ServiceIdentifiers } from '../../../src/container/ServiceIdentifiers';
- import { assert } from 'chai';
- import { TInputOptions } from '../../../src/types/options/TInputOptions';
- import { IInversifyContainerFacade } from '../../../src/interfaces/container/IInversifyContainerFacade';
- import { IOptions } from '../../../src/interfaces/options/IOptions';
- import { IOptionsNormalizer } from '../../../src/interfaces/options/IOptionsNormalizer';
- import { StringArrayEncoding } from '../../../src/enums/StringArrayEncoding';
- import { DEFAULT_PRESET } from '../../../src/options/presets/Default';
- import { InversifyContainerFacade } from '../../../src/container/InversifyContainerFacade';
- /**
- * @param optionsPreset
- * @returns {IOptions}
- */
- function getNormalizedOptions (optionsPreset: TInputOptions): TInputOptions {
- const inversifyContainerFacade: IInversifyContainerFacade = new InversifyContainerFacade();
- inversifyContainerFacade.load('', '', optionsPreset);
- const options: IOptions = inversifyContainerFacade
- .get<IOptions>(ServiceIdentifiers.IOptions);
- const optionsNormalizer: IOptionsNormalizer = inversifyContainerFacade
- .get<IOptionsNormalizer>(ServiceIdentifiers.IOptionsNormalizer);
- return <TInputOptions>optionsNormalizer.normalize(options);
- }
- function getDefaultOptions(): TInputOptions {
- return {
- ...DEFAULT_PRESET,
- seed: 1 // set `seed` to the fixed value, to prevent a new seed for the each case
- };
- }
- describe('OptionsNormalizer', () => {
- describe('normalize', () => {
- let optionsPreset: TInputOptions,
- expectedOptionsPreset: TInputOptions;
- describe('controlFlowFlatteningThresholdRule', () => {
- before(() => {
- optionsPreset = getNormalizedOptions({
- ...getDefaultOptions(),
- controlFlowFlattening: true,
- controlFlowFlatteningThreshold: 0
- });
- expectedOptionsPreset = {
- ...getDefaultOptions(),
- controlFlowFlattening: false,
- controlFlowFlatteningThreshold: 0
- };
- });
- it('should normalize options preset', () => {
- assert.deepEqual(optionsPreset, expectedOptionsPreset);
- });
- });
- describe('deadCodeInjectionRule', () => {
- before(() => {
- optionsPreset = getNormalizedOptions({
- ...getDefaultOptions(),
- deadCodeInjection: true,
- deadCodeInjectionThreshold: 0.4,
- stringArray: false,
- stringArrayThreshold: 0
- });
- expectedOptionsPreset = {
- ...getDefaultOptions(),
- deadCodeInjection: true,
- deadCodeInjectionThreshold: 0.4,
- stringArray: true,
- stringArrayThreshold: 0.75
- };
- });
- it('should normalize options preset', () => {
- assert.deepEqual(optionsPreset, expectedOptionsPreset);
- });
- });
- describe('deadCodeInjectionRule', () => {
- describe('`stringArrayThreshold` option is empty', () => {
- before(() => {
- optionsPreset = getNormalizedOptions({
- ...getDefaultOptions(),
- deadCodeInjection: true,
- deadCodeInjectionThreshold: 0.4,
- stringArray: false,
- stringArrayThreshold: 0
- });
- expectedOptionsPreset = {
- ...getDefaultOptions(),
- deadCodeInjection: true,
- deadCodeInjectionThreshold: 0.4,
- stringArray: true,
- stringArrayThreshold: 0.75
- };
- });
- it('should normalize options preset', () => {
- assert.deepEqual(optionsPreset, expectedOptionsPreset);
- });
- });
- describe('`stringArrayThreshold` option is not empty', () => {
- before(() => {
- optionsPreset = getNormalizedOptions({
- ...getDefaultOptions(),
- deadCodeInjection: true,
- deadCodeInjectionThreshold: 0.4,
- stringArray: false,
- stringArrayThreshold: 0.5
- });
- expectedOptionsPreset = {
- ...getDefaultOptions(),
- deadCodeInjection: true,
- deadCodeInjectionThreshold: 0.4,
- stringArray: true,
- stringArrayThreshold: 0.5
- };
- });
- it('should normalize options preset', () => {
- assert.deepEqual(optionsPreset, expectedOptionsPreset);
- });
- });
- });
- describe('deadCodeInjectionThresholdRule', () => {
- before(() => {
- optionsPreset = getNormalizedOptions({
- ...getDefaultOptions(),
- deadCodeInjection: true,
- deadCodeInjectionThreshold: 0
- });
- expectedOptionsPreset = {
- ...getDefaultOptions(),
- deadCodeInjection: false,
- deadCodeInjectionThreshold: 0
- };
- });
- it('should normalize options preset', () => {
- assert.deepEqual(optionsPreset, expectedOptionsPreset);
- });
- });
- describe('domainLockRule', () => {
- before(() => {
- optionsPreset = getNormalizedOptions({
- ...getDefaultOptions(),
- domainLock: [
- '//localhost:9000',
- 'https://google.ru/abc?cde=fgh'
- ]
- });
- expectedOptionsPreset = {
- ...getDefaultOptions(),
- domainLock: [
- 'localhost',
- 'google.ru'
- ]
- };
- });
- it('should normalize options preset', () => {
- assert.deepEqual(optionsPreset, expectedOptionsPreset);
- });
- });
- describe('inputFileNameRule', () => {
- describe('Variant #1: extension isn\'t set', () => {
- before(() => {
- optionsPreset = getNormalizedOptions({
- ...getDefaultOptions(),
- inputFileName: 'foo'
- });
- expectedOptionsPreset = {
- ...getDefaultOptions(),
- inputFileName: 'foo.js'
- };
- });
- it('should normalize options preset', () => {
- assert.deepEqual(optionsPreset, expectedOptionsPreset);
- });
- });
- describe('Variant #2: extension is set', () => {
- before(() => {
- optionsPreset = getNormalizedOptions({
- ...getDefaultOptions(),
- inputFileName: 'foo.js'
- });
- expectedOptionsPreset = {
- ...getDefaultOptions(),
- inputFileName: 'foo.js'
- };
- });
- it('should normalize options preset', () => {
- assert.deepEqual(optionsPreset, expectedOptionsPreset);
- });
- });
- describe('Variant #3: extension in set with `.map` postfix', () => {
- before(() => {
- optionsPreset = getNormalizedOptions({
- ...getDefaultOptions(),
- inputFileName: 'foo.map.js'
- });
- expectedOptionsPreset = {
- ...getDefaultOptions(),
- inputFileName: 'foo.map.js'
- };
- });
- it('should normalize options preset', () => {
- assert.deepEqual(optionsPreset, expectedOptionsPreset);
- });
- });
- describe('Variant #4: no file name', () => {
- before(() => {
- optionsPreset = getNormalizedOptions({
- ...getDefaultOptions(),
- inputFileName: ''
- });
- expectedOptionsPreset = {
- ...getDefaultOptions(),
- inputFileName: ''
- };
- });
- it('should normalize options preset', () => {
- assert.deepEqual(optionsPreset, expectedOptionsPreset);
- });
- });
- });
- describe('seedRule', () => {
- describe('Variant #1: seed value is string', () => {
- before(() => {
- optionsPreset = getNormalizedOptions({
- ...getDefaultOptions(),
- seed: 'abc'
- });
- expectedOptionsPreset = {
- ...getDefaultOptions(),
- seed: 'abc'
- };
- });
- it('should not normalize options preset', () => {
- assert.deepEqual(optionsPreset, expectedOptionsPreset);
- });
- });
- describe('Variant #2: seed value is number', () => {
- before(() => {
- optionsPreset = getNormalizedOptions({
- ...getDefaultOptions(),
- seed: 123
- });
- expectedOptionsPreset = {
- ...getDefaultOptions(),
- seed: 123
- };
- });
- it('should normalize options preset', () => {
- assert.deepEqual(optionsPreset, expectedOptionsPreset);
- });
- });
- describe('Variant #3: seed value is `0``', () => {
- let seedValue: number;
- before(() => {
- optionsPreset = getNormalizedOptions({
- ...getDefaultOptions(),
- seed: 0
- });
- seedValue = Number(optionsPreset.seed);
- });
- it('should normalize seed value', () => {
- assert.isAtLeast(seedValue, 0);
- assert.isBelow(seedValue, 999_999_999);
- });
- });
- });
- describe('selfDefendingRule', () => {
- before(() => {
- optionsPreset = getNormalizedOptions({
- ...getDefaultOptions(),
- selfDefending: true,
- compact: false
- });
- expectedOptionsPreset = {
- ...getDefaultOptions(),
- selfDefending: true,
- compact: true
- };
- });
- it('should normalize options preset', () => {
- assert.deepEqual(optionsPreset, expectedOptionsPreset);
- });
- });
- describe('sourceMapBaseUrlRule', () => {
- describe('Variant #1: only source map base url', () => {
- before(() => {
- optionsPreset = getNormalizedOptions({
- ...getDefaultOptions(),
- sourceMapBaseUrl: 'http://localhost:9000',
- });
- expectedOptionsPreset = {
- ...getDefaultOptions(),
- sourceMapBaseUrl: ''
- };
- });
- it('should normalize options preset', () => {
- assert.deepEqual(optionsPreset, expectedOptionsPreset);
- });
- });
- describe('Variant #2: source map base url with source map file name', () => {
- before(() => {
- optionsPreset = getNormalizedOptions({
- ...getDefaultOptions(),
- sourceMapBaseUrl: 'http://localhost:9000',
- sourceMapFileName: '/outputSourceMapName.map'
- });
- expectedOptionsPreset = {
- ...getDefaultOptions(),
- sourceMapBaseUrl: 'http://localhost:9000/',
- sourceMapFileName: 'outputSourceMapName.js.map'
- };
- });
- it('should normalize options preset', () => {
- assert.deepEqual(optionsPreset, expectedOptionsPreset);
- });
- });
- });
- describe('sourceMapFileNameRule', () => {
- describe('Base filename without extension', () => {
- before(() => {
- optionsPreset = getNormalizedOptions({
- ...getDefaultOptions(),
- sourceMapBaseUrl: 'http://localhost:9000',
- sourceMapFileName: 'outputSourceMapName'
- });
- expectedOptionsPreset = {
- ...getDefaultOptions(),
- sourceMapBaseUrl: 'http://localhost:9000/',
- sourceMapFileName: 'outputSourceMapName.js.map'
- };
- });
- it('should normalize options preset', () => {
- assert.deepEqual(optionsPreset, expectedOptionsPreset);
- });
- });
- describe('Slashes in file name', () => {
- before(() => {
- optionsPreset = getNormalizedOptions({
- ...getDefaultOptions(),
- sourceMapBaseUrl: 'http://localhost:9000',
- sourceMapFileName: '//outputSourceMapName'
- });
- expectedOptionsPreset = {
- ...getDefaultOptions(),
- sourceMapBaseUrl: 'http://localhost:9000/',
- sourceMapFileName: 'outputSourceMapName.js.map'
- };
- });
- it('should normalize options preset', () => {
- assert.deepEqual(optionsPreset, expectedOptionsPreset);
- });
- });
- describe('`js` file extension in file name', () => {
- before(() => {
- optionsPreset = getNormalizedOptions({
- ...getDefaultOptions(),
- sourceMapBaseUrl: 'http://localhost:9000',
- sourceMapFileName: 'outputSourceMapName.js'
- });
- expectedOptionsPreset = {
- ...getDefaultOptions(),
- sourceMapBaseUrl: 'http://localhost:9000/',
- sourceMapFileName: 'outputSourceMapName.js.map'
- };
- });
- it('should normalize options preset', () => {
- assert.deepEqual(optionsPreset, expectedOptionsPreset);
- });
- });
- describe('Non `js` file extension in file name', () => {
- before(() => {
- optionsPreset = getNormalizedOptions({
- ...getDefaultOptions(),
- sourceMapBaseUrl: 'http://localhost:9000',
- sourceMapFileName: 'outputSourceMapName.exe'
- });
- expectedOptionsPreset = {
- ...getDefaultOptions(),
- sourceMapBaseUrl: 'http://localhost:9000/',
- sourceMapFileName: 'outputSourceMapName.js.map'
- };
- });
- it('should normalize options preset', () => {
- assert.deepEqual(optionsPreset, expectedOptionsPreset);
- });
- });
- describe('File hash in file name', () => {
- before(() => {
- optionsPreset = getNormalizedOptions({
- ...getDefaultOptions(),
- sourceMapBaseUrl: 'http://localhost:9000',
- sourceMapFileName: 'outputSourceMapName.7e2c49a622975ebd9b7e'
- });
- expectedOptionsPreset = {
- ...getDefaultOptions(),
- sourceMapBaseUrl: 'http://localhost:9000/',
- sourceMapFileName: 'outputSourceMapName.7e2c49a622975ebd9b7e.js.map'
- };
- });
- it('should normalize options preset', () => {
- assert.deepEqual(optionsPreset, expectedOptionsPreset);
- });
- });
- describe('File hash and `js` file extension in file name #1', () => {
- before(() => {
- optionsPreset = getNormalizedOptions({
- ...getDefaultOptions(),
- sourceMapBaseUrl: 'http://localhost:9000',
- sourceMapFileName: 'outputSourceMapName.7e2c49a622975ebd9b7e.js'
- });
- expectedOptionsPreset = {
- ...getDefaultOptions(),
- sourceMapBaseUrl: 'http://localhost:9000/',
- sourceMapFileName: 'outputSourceMapName.7e2c49a622975ebd9b7e.js.map'
- };
- });
- it('should normalize options preset', () => {
- assert.deepEqual(optionsPreset, expectedOptionsPreset);
- });
- });
- describe('File hash and non `js` file extension in file name', () => {
- before(() => {
- optionsPreset = getNormalizedOptions({
- ...getDefaultOptions(),
- sourceMapBaseUrl: 'http://localhost:9000',
- sourceMapFileName: 'outputSourceMapName.7e2c49a622975ebd9b7e.exe'
- });
- expectedOptionsPreset = {
- ...getDefaultOptions(),
- sourceMapBaseUrl: 'http://localhost:9000/',
- sourceMapFileName: 'outputSourceMapName.7e2c49a622975ebd9b7e.js.map'
- };
- });
- it('should normalize options preset', () => {
- assert.deepEqual(optionsPreset, expectedOptionsPreset);
- });
- });
- });
- describe('splitStringsChunkLengthRule', () => {
- describe('`splitStringsChunkLengthRule` value is float number', () => {
- before(() => {
- optionsPreset = getNormalizedOptions({
- ...getDefaultOptions(),
- splitStrings: true,
- splitStringsChunkLength: 5.6
- });
- expectedOptionsPreset = {
- ...getDefaultOptions(),
- splitStrings: true,
- splitStringsChunkLength: 5
- };
- });
- it('should normalize options preset', () => {
- assert.deepEqual(optionsPreset, expectedOptionsPreset);
- });
- });
- });
- describe('stringArrayRule', () => {
- before(() => {
- optionsPreset = getNormalizedOptions({
- ...getDefaultOptions(),
- shuffleStringArray: true,
- stringArray: false,
- stringArrayEncoding: [StringArrayEncoding.Rc4],
- stringArrayThreshold: 0.5,
- rotateStringArray: true
- });
- expectedOptionsPreset = {
- ...getDefaultOptions(),
- shuffleStringArray: false,
- stringArray: false,
- stringArrayEncoding: [StringArrayEncoding.None],
- stringArrayThreshold: 0,
- rotateStringArray: false
- };
- });
- it('should normalize options preset', () => {
- assert.deepEqual(optionsPreset, expectedOptionsPreset);
- });
- });
- describe('stringArrayEncodingRule', () => {
- before(() => {
- optionsPreset = getNormalizedOptions({
- ...getDefaultOptions(),
- stringArrayEncoding: []
- });
- expectedOptionsPreset = {
- ...getDefaultOptions(),
- stringArrayEncoding: [
- StringArrayEncoding.None
- ]
- };
- });
- it('should normalize options preset', () => {
- assert.deepEqual(optionsPreset, expectedOptionsPreset);
- });
- });
- describe('stringArrayThresholdRule', () => {
- before(() => {
- optionsPreset = getNormalizedOptions({
- ...getDefaultOptions(),
- rotateStringArray: true,
- shuffleStringArray: true,
- stringArray: true,
- stringArrayThreshold: 0
- });
- expectedOptionsPreset = {
- ...getDefaultOptions(),
- rotateStringArray: false,
- shuffleStringArray: false,
- stringArray: false,
- stringArrayThreshold: 0
- };
- });
- it('should normalize options preset', () => {
- assert.deepEqual(optionsPreset, expectedOptionsPreset);
- });
- });
- });
- });
|