2017-03-03 10:22:25 -08:00
|
|
|
const assert = require('assert')
|
2017-04-18 09:01:43 -07:00
|
|
|
const path = require('path')
|
2017-03-03 10:22:25 -08:00
|
|
|
const {BrowserWindow, TouchBar} = require('electron').remote
|
|
|
|
const {closeWindow} = require('./window-helpers')
|
|
|
|
|
|
|
|
const {TouchBarButton, TouchBarColorPicker, TouchBarGroup} = TouchBar
|
2017-03-13 11:17:55 -07:00
|
|
|
const {TouchBarLabel, TouchBarPopover, TouchBarScrubber, TouchBarSegmentedControl, TouchBarSlider, TouchBarSpacer} = TouchBar
|
2017-03-03 10:22:25 -08:00
|
|
|
|
|
|
|
describe('TouchBar module', function () {
|
2017-04-03 15:12:57 -07:00
|
|
|
it('throws an error when created without an options object', function () {
|
2017-03-03 10:22:25 -08:00
|
|
|
assert.throws(() => {
|
|
|
|
const touchBar = new TouchBar()
|
|
|
|
touchBar.toString()
|
2017-04-03 15:12:57 -07:00
|
|
|
}, /Must specify options object as first argument/)
|
2017-03-03 10:22:25 -08:00
|
|
|
})
|
|
|
|
|
|
|
|
it('throws an error when created with invalid items', function () {
|
|
|
|
assert.throws(() => {
|
2017-04-03 15:12:57 -07:00
|
|
|
const touchBar = new TouchBar({items: [1, true, {}, []]})
|
2017-03-03 10:22:25 -08:00
|
|
|
touchBar.toString()
|
|
|
|
}, /Each item must be an instance of TouchBarItem/)
|
|
|
|
})
|
|
|
|
|
2017-03-29 13:11:25 -07:00
|
|
|
it('throws an error when an invalid escape item is set', function () {
|
|
|
|
assert.throws(() => {
|
2017-04-03 15:12:57 -07:00
|
|
|
const touchBar = new TouchBar({items: [], escapeItem: 'esc'})
|
|
|
|
touchBar.toString()
|
|
|
|
}, /Escape item must be an instance of TouchBarItem/)
|
|
|
|
|
|
|
|
assert.throws(() => {
|
|
|
|
const touchBar = new TouchBar({items: []})
|
2017-04-03 09:34:55 -07:00
|
|
|
touchBar.escapeItem = 'esc'
|
2017-03-29 13:11:25 -07:00
|
|
|
}, /Escape item must be an instance of TouchBarItem/)
|
|
|
|
})
|
|
|
|
|
2017-03-03 10:22:25 -08:00
|
|
|
describe('BrowserWindow behavior', function () {
|
|
|
|
let window
|
|
|
|
|
|
|
|
beforeEach(function () {
|
|
|
|
window = new BrowserWindow()
|
|
|
|
})
|
|
|
|
|
|
|
|
afterEach(function () {
|
|
|
|
window.setTouchBar(null)
|
|
|
|
return closeWindow(window).then(function () { window = null })
|
|
|
|
})
|
|
|
|
|
|
|
|
it('can be added to and removed from a window', function () {
|
2017-03-03 10:49:42 -08:00
|
|
|
const label = new TouchBarLabel({label: 'bar'})
|
2017-03-03 10:22:25 -08:00
|
|
|
const touchBar = new TouchBar([
|
|
|
|
new TouchBarButton({label: 'foo', backgroundColor: '#F00', click: () => {}}),
|
2017-04-18 09:01:43 -07:00
|
|
|
new TouchBarButton({
|
|
|
|
icon: path.join(__dirname, 'fixtures', 'assets', 'logo.png'),
|
|
|
|
iconPosition: 'right',
|
|
|
|
click: () => {}
|
|
|
|
}),
|
2017-03-03 10:22:25 -08:00
|
|
|
new TouchBarColorPicker({selectedColor: '#F00', change: () => {}}),
|
|
|
|
new TouchBarGroup({items: new TouchBar([new TouchBarLabel({label: 'hello'})])}),
|
2017-03-03 10:49:42 -08:00
|
|
|
label,
|
2017-03-03 10:22:25 -08:00
|
|
|
new TouchBarPopover({items: new TouchBar([new TouchBarButton({label: 'pop'})])}),
|
|
|
|
new TouchBarSlider({label: 'slide', value: 5, minValue: 2, maxValue: 75, change: () => {}}),
|
2017-03-10 10:04:22 -08:00
|
|
|
new TouchBarSpacer({size: 'large'}),
|
|
|
|
new TouchBarSegmentedControl({
|
|
|
|
segmentStyle: 'capsule',
|
|
|
|
segments: [{label: 'baz', enabled: false}],
|
2017-03-10 10:09:14 -08:00
|
|
|
selectedIndex: 5
|
|
|
|
}),
|
2017-03-13 11:17:55 -07:00
|
|
|
new TouchBarSegmentedControl({segments: []}),
|
|
|
|
new TouchBarScrubber({
|
2017-03-14 14:15:04 -07:00
|
|
|
items: [{label: 'foo'}, {label: 'bar'}, {label: 'baz'}],
|
|
|
|
selectedStyle: 'outline',
|
|
|
|
mode: 'fixed',
|
|
|
|
showArrowButtons: true
|
2017-03-13 11:17:55 -07:00
|
|
|
})
|
2017-03-03 10:22:25 -08:00
|
|
|
])
|
2017-03-29 13:26:52 -07:00
|
|
|
const escapeButton = new TouchBarButton({
|
2017-03-27 11:23:48 +11:00
|
|
|
label: 'foo'
|
2017-03-29 13:26:52 -07:00
|
|
|
})
|
|
|
|
window.setTouchBar(touchBar)
|
2017-04-03 09:34:55 -07:00
|
|
|
touchBar.escapeItem = escapeButton
|
2017-03-03 10:49:42 -08:00
|
|
|
label.label = 'baz'
|
2017-03-29 13:26:52 -07:00
|
|
|
escapeButton.label = 'hello'
|
2017-03-03 10:22:25 -08:00
|
|
|
window.setTouchBar()
|
|
|
|
window.setTouchBar(new TouchBar([new TouchBarLabel({label: 'two'})]))
|
2017-04-03 09:34:55 -07:00
|
|
|
touchBar.escapeItem = null
|
2017-03-03 10:22:25 -08:00
|
|
|
})
|
2017-04-04 13:12:29 -07:00
|
|
|
|
|
|
|
it('calls the callback on the items when a window interaction event fires', function (done) {
|
|
|
|
const button = new TouchBarButton({
|
|
|
|
label: 'bar',
|
|
|
|
click: () => {
|
|
|
|
done()
|
|
|
|
}
|
|
|
|
})
|
|
|
|
const touchBar = new TouchBar({items: [button]})
|
|
|
|
window.setTouchBar(touchBar)
|
|
|
|
window.emit('-touch-bar-interaction', {}, button.id)
|
|
|
|
})
|
2017-04-04 13:14:56 -07:00
|
|
|
|
|
|
|
it('calls the callback on the escape item when a window interaction event fires', function (done) {
|
|
|
|
const button = new TouchBarButton({
|
|
|
|
label: 'bar',
|
|
|
|
click: () => {
|
|
|
|
done()
|
|
|
|
}
|
|
|
|
})
|
|
|
|
const touchBar = new TouchBar({escapeItem: button})
|
|
|
|
window.setTouchBar(touchBar)
|
|
|
|
window.emit('-touch-bar-interaction', {}, button.id)
|
|
|
|
})
|
2017-03-03 10:22:25 -08:00
|
|
|
})
|
|
|
|
})
|