2017-03-03 21:22:25 +03:00
|
|
|
const assert = require('assert')
|
|
|
|
const {BrowserWindow, TouchBar} = require('electron').remote
|
|
|
|
const {closeWindow} = require('./window-helpers')
|
|
|
|
|
|
|
|
const {TouchBarButton, TouchBarColorPicker, TouchBarGroup} = TouchBar
|
2017-03-13 21:17:55 +03:00
|
|
|
const {TouchBarLabel, TouchBarPopover, TouchBarScrubber, TouchBarSegmentedControl, TouchBarSlider, TouchBarSpacer} = TouchBar
|
2017-03-03 21:22:25 +03:00
|
|
|
|
|
|
|
describe('TouchBar module', function () {
|
|
|
|
it('throws an error when created without an items array', function () {
|
|
|
|
assert.throws(() => {
|
|
|
|
const touchBar = new TouchBar()
|
|
|
|
touchBar.toString()
|
|
|
|
}, /Must specify items array as first argument/)
|
|
|
|
})
|
|
|
|
|
|
|
|
it('throws an error when created with invalid items', function () {
|
|
|
|
assert.throws(() => {
|
|
|
|
const touchBar = new TouchBar([1, true, {}, []])
|
|
|
|
touchBar.toString()
|
|
|
|
}, /Each item must be an instance of TouchBarItem/)
|
|
|
|
})
|
|
|
|
|
|
|
|
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 21:49:42 +03:00
|
|
|
const label = new TouchBarLabel({label: 'bar'})
|
2017-03-03 21:22:25 +03:00
|
|
|
const touchBar = new TouchBar([
|
|
|
|
new TouchBarButton({label: 'foo', backgroundColor: '#F00', click: () => {}}),
|
|
|
|
new TouchBarColorPicker({selectedColor: '#F00', change: () => {}}),
|
|
|
|
new TouchBarGroup({items: new TouchBar([new TouchBarLabel({label: 'hello'})])}),
|
2017-03-03 21:49:42 +03:00
|
|
|
label,
|
2017-03-03 21:22:25 +03:00
|
|
|
new TouchBarPopover({items: new TouchBar([new TouchBarButton({label: 'pop'})])}),
|
|
|
|
new TouchBarSlider({label: 'slide', value: 5, minValue: 2, maxValue: 75, change: () => {}}),
|
2017-03-10 21:04:22 +03:00
|
|
|
new TouchBarSpacer({size: 'large'}),
|
|
|
|
new TouchBarSegmentedControl({
|
|
|
|
segmentStyle: 'capsule',
|
|
|
|
segments: [{label: 'baz', enabled: false}],
|
2017-03-10 21:09:14 +03:00
|
|
|
selectedIndex: 5
|
|
|
|
}),
|
2017-03-13 21:17:55 +03:00
|
|
|
new TouchBarSegmentedControl({segments: []}),
|
|
|
|
new TouchBarScrubber({
|
|
|
|
items: [{label: 'foo'}, {label: 'bar'}, {label: 'baz'}]
|
|
|
|
})
|
2017-03-03 21:22:25 +03:00
|
|
|
])
|
|
|
|
window.setTouchBar(touchBar)
|
2017-03-03 21:49:42 +03:00
|
|
|
label.label = 'baz'
|
2017-03-03 21:22:25 +03:00
|
|
|
window.setTouchBar()
|
|
|
|
window.setTouchBar(new TouchBar([new TouchBarLabel({label: 'two'})]))
|
|
|
|
})
|
|
|
|
})
|
|
|
|
})
|