123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101 |
- import { expect } from 'chai'
- import { Menu, Tray, nativeImage } from 'electron'
- import { ifdescribe, ifit } from './spec-helpers'
- describe('tray module', () => {
- let tray: Tray;
- beforeEach(() => { tray = new Tray(nativeImage.createEmpty()) })
- afterEach(() => {
- tray.destroy()
- tray = null as any
- })
- ifdescribe(process.platform === 'darwin')('tray get/set ignoreDoubleClickEvents', () => {
- it('returns false by default', () => {
- const ignored = tray.getIgnoreDoubleClickEvents()
- expect(ignored).to.be.false('ignored')
- })
- it('can be set to true', () => {
- tray.setIgnoreDoubleClickEvents(true)
- const ignored = tray.getIgnoreDoubleClickEvents()
- expect(ignored).to.be.true('not ignored')
- })
- })
- describe('tray.setContextMenu(menu)', () => {
- it('accepts both null and Menu as parameters', () => {
- expect(() => { tray.setContextMenu(new Menu()) }).to.not.throw()
- expect(() => { tray.setContextMenu(null) }).to.not.throw()
- })
- })
- describe('tray.destroy()', () => {
- it('destroys a tray', () => {
- expect(tray.isDestroyed()).to.be.false('tray should not be destroyed')
- tray.destroy()
- expect(tray.isDestroyed()).to.be.true('tray should be destroyed')
- })
- })
- describe('tray.popUpContextMenu()', () => {
- ifit(process.platform === 'win32')('can be called when menu is showing', function (done) {
- tray.setContextMenu(Menu.buildFromTemplate([{ label: 'Test' }]))
- setTimeout(() => {
- tray.popUpContextMenu()
- done()
- })
- tray.popUpContextMenu()
- })
- it('can be called with a menu', () => {
- const menu = Menu.buildFromTemplate([{ label: 'Test' }])
- expect(() => {
- tray.popUpContextMenu(menu)
- }).to.not.throw()
- })
- })
- describe('tray.getBounds()', () => {
- afterEach(() => { tray.destroy() })
- ifit(process.platform !== 'linux') ('returns a bounds object', function () {
- const bounds = tray.getBounds()
- expect(bounds).to.be.an('object').and.to.have.all.keys('x', 'y', 'width', 'height');
- })
- })
- describe('tray.setImage(image)', () => {
- it('accepts empty image', () => {
- tray.setImage(nativeImage.createEmpty())
- })
- })
- describe('tray.setPressedImage(image)', () => {
- it('accepts empty image', () => {
- tray.setPressedImage(nativeImage.createEmpty())
- })
- })
- ifdescribe(process.platform === 'darwin')('tray get/set title', () => {
- it('sets/gets non-empty title', () => {
- const title = 'Hello World!'
- tray.setTitle(title)
- const newTitle = tray.getTitle()
- expect(newTitle).to.equal(title)
- })
- it('sets/gets empty title', () => {
- const title = ''
- tray.setTitle(title)
- const newTitle = tray.getTitle()
- expect(newTitle).to.equal(title)
- })
- })
- })
|