electron/spec-main/api-callbacks-registry-spec.ts

45 lines
1.1 KiB
TypeScript
Raw Normal View History

import { expect } from 'chai'
import { CallbacksRegistry } from '../lib/renderer/callbacks-registry'
2017-11-16 05:04:33 +00:00
2017-11-16 19:51:24 +00:00
describe('CallbacksRegistry module', () => {
let registry: CallbacksRegistry
2017-11-16 05:04:33 +00:00
beforeEach(() => {
registry = new CallbacksRegistry()
})
it('adds a callback to the registry', () => {
const cb = () => [1, 2, 3, 4, 5]
2017-11-16 18:39:07 +00:00
const key = registry.add(cb)
expect(key).to.exist('key')
2017-11-16 05:04:33 +00:00
})
it('returns a specified callback if it is in the registry', () => {
const cb = () => [1, 2, 3, 4, 5]
2017-11-16 18:39:07 +00:00
const key = registry.add(cb)
expect(key).to.exist('key')
const callback = registry.get(key!)
2017-11-16 05:04:33 +00:00
expect(callback.toString()).equal(cb.toString())
2017-11-16 05:04:33 +00:00
})
it('returns an empty function if the cb doesnt exist', () => {
const callback = registry.get(1)
2017-11-16 18:39:07 +00:00
expect(callback).to.be.a('function')
2017-11-16 05:04:33 +00:00
})
it('removes a callback to the registry', () => {
const cb = () => [1, 2, 3, 4, 5]
2017-11-16 18:39:07 +00:00
const key = registry.add(cb)
expect(key).to.exist('key')
2017-11-16 18:39:07 +00:00
registry.remove(key!)
const afterCB = registry.get(key!)
2017-11-16 18:39:07 +00:00
expect(afterCB).to.be.a('function')
expect(afterCB.toString()).to.not.equal(cb.toString())
2017-11-16 05:04:33 +00:00
})
2017-11-16 05:08:18 +00:00
})