anobis
Version:
JavaScript obfuscator
103 lines (76 loc) • 3.24 kB
text/typescript
import { assert } from 'chai';
import { initializable } from '../../../../src/decorators/Initializable';
import { IInitializable } from '../../../../src/interfaces/IInitializable';
describe('@initializable', () => {
describe('initializable (initializeMethodKey: string): any', () => {
describe('variant #1: property was initialized', () => {
const testFunc: () => void = () => {
class Foo implements IInitializable {
()
public property: string;
public initialize (property: string): void {
this.property = property;
}
}
const foo: Foo = new Foo();
foo.initialize('baz');
foo.property;
};
it('shouldn\'t throws an errors if property was initialized', () => {
assert.doesNotThrow(testFunc, Error);
});
});
describe('variant #2: custom initialization method name is passed', () => {
const testFunc: () => void = () => {
class Foo implements IInitializable {
()
public property: string;
public initialize (): void {
}
public bar (property: string): void {
this.property = property;
}
}
const foo: Foo = new Foo();
foo.bar('baz');
foo.property;
};
it('shouldn\'t throws an errors if custom initialization method name is passed', () => {
assert.doesNotThrow(testFunc, Error);
});
});
describe('variant #3: property didn\'t initialized', () => {
const testFunc: () => void = () => {
class Foo implements IInitializable {
()
public property: string;
public initialize (property: string): void {
}
}
const foo: Foo = new Foo();
foo.initialize('baz');
foo.property;
};
it('should throws an error if property didn\'t initialized', () => {
assert.throws(testFunc, /Property `property` is not initialized/);
});
});
describe('variant #4: `initialize` method with custom name', () => {
const testFunc: () => void = () => {
class Foo {
('bar')
public property: string;
public initialize (property: string): void {
this.property = property;
}
}
const foo: Foo = new Foo();
foo.initialize('baz');
foo.property;
};
it('should throws an error if `initialize` method with custom name wasn\'t found', () => {
assert.throws(testFunc, /method with initialization logic not found/);
});
});
});
});