|
| 1 | +import { getInstanceWithScope, TransientScope } from '../' |
| 2 | +import { createNewInstance, createOrGetInstanceInScope } from '../utils' |
| 3 | + |
| 4 | +describe('Scope spec:', () => { |
| 5 | + describe('createNewInstance', () => { |
| 6 | + it('should always return new instance', () => { |
| 7 | + class Test {} |
| 8 | + |
| 9 | + expect(createNewInstance(Test)).toBeInstanceOf(Test) |
| 10 | + expect(createNewInstance(Test) === createNewInstance(Test)).toBeFalsy() |
| 11 | + }) |
| 12 | + }) |
| 13 | + |
| 14 | + describe('createOrGetInstanceInScope', () => { |
| 15 | + class Test {} |
| 16 | + const scope = 'Scope' |
| 17 | + |
| 18 | + it('should create a new instance if not in scope', () => { |
| 19 | + expect(createOrGetInstanceInScope(Test, scope)).toBeInstanceOf(Test) |
| 20 | + }) |
| 21 | + |
| 22 | + it('should return a same instance if in scope', () => { |
| 23 | + expect(createOrGetInstanceInScope(Test, scope)).toBe(createOrGetInstanceInScope(Test, scope)) |
| 24 | + }) |
| 25 | + }) |
| 26 | + |
| 27 | + describe('getInstanceWithScope', () => { |
| 28 | + it('should accept any valid variable as scope', () => { |
| 29 | + const scopes = ['', 0, Symbol('symbol'), {}, null] |
| 30 | + |
| 31 | + scopes.forEach((scope) => { |
| 32 | + class Test {} |
| 33 | + expect(getInstanceWithScope(Test, { scope })).toBeInstanceOf(Test) |
| 34 | + }) |
| 35 | + }) |
| 36 | + |
| 37 | + it('should always return same instance if same scope', () => { |
| 38 | + const scope = 'scope' |
| 39 | + class Test {} |
| 40 | + |
| 41 | + expect(getInstanceWithScope(Test, { scope })).toBe(getInstanceWithScope(Test, { scope })) |
| 42 | + }) |
| 43 | + |
| 44 | + it('should always return new instance if scope is TransientScope', () => { |
| 45 | + class Test {} |
| 46 | + |
| 47 | + expect(getInstanceWithScope(Test, { scope: TransientScope })).toBeInstanceOf(Test) |
| 48 | + |
| 49 | + expect( |
| 50 | + getInstanceWithScope(Test, { scope: TransientScope }) === |
| 51 | + getInstanceWithScope(Test, { scope: TransientScope }), |
| 52 | + ).toBeFalsy() |
| 53 | + }) |
| 54 | + }) |
| 55 | +}) |
0 commit comments