2019-07-17 00:14:32 +00:00
|
|
|
import { expect } from 'chai'
|
|
|
|
import { systemPreferences } from 'electron'
|
2019-07-24 17:40:12 +00:00
|
|
|
import { ifdescribe } from './spec-helpers'
|
2019-05-20 17:04:18 +00:00
|
|
|
|
2017-12-12 18:39:38 +00:00
|
|
|
describe('systemPreferences module', () => {
|
2019-07-17 00:14:32 +00:00
|
|
|
ifdescribe(process.platform === 'win32')('systemPreferences.getAccentColor', () => {
|
2017-10-27 00:58:48 +00:00
|
|
|
it('should return a non-empty string', () => {
|
2018-10-02 01:56:31 +00:00
|
|
|
const accentColor = systemPreferences.getAccentColor()
|
2019-07-17 00:14:32 +00:00
|
|
|
expect(accentColor).to.be.a('string').that.is.not.empty('accent color')
|
2016-09-16 16:13:09 +00:00
|
|
|
})
|
|
|
|
})
|
2016-06-02 01:56:25 +00:00
|
|
|
|
2019-07-17 00:14:32 +00:00
|
|
|
ifdescribe(process.platform === 'win32')('systemPreferences.getColor(id)', () => {
|
2017-10-27 00:58:48 +00:00
|
|
|
it('throws an error when the id is invalid', () => {
|
2019-05-20 17:04:18 +00:00
|
|
|
expect(() => {
|
2019-07-17 00:14:32 +00:00
|
|
|
systemPreferences.getColor('not-a-color' as any)
|
2019-05-20 17:04:18 +00:00
|
|
|
}).to.throw('Unknown color: not-a-color')
|
2016-10-10 22:06:25 +00:00
|
|
|
})
|
|
|
|
|
2017-10-27 00:58:48 +00:00
|
|
|
it('returns a hex RGB color string', () => {
|
2019-05-20 17:04:18 +00:00
|
|
|
expect(systemPreferences.getColor('window')).to.match(/^#[0-9A-F]{6}$/i)
|
2016-10-10 22:06:25 +00:00
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2019-07-17 00:14:32 +00:00
|
|
|
ifdescribe(process.platform === 'darwin')('systemPreferences.registerDefaults(defaults)', () => {
|
2017-12-12 18:08:09 +00:00
|
|
|
it('registers defaults', () => {
|
|
|
|
const defaultsMap = [
|
|
|
|
{ key: 'one', type: 'string', value: 'ONE' },
|
|
|
|
{ key: 'two', value: 2, type: 'integer' },
|
|
|
|
{ key: 'three', value: [1, 2, 3], type: 'array' }
|
|
|
|
]
|
|
|
|
|
2019-07-17 00:14:32 +00:00
|
|
|
const defaultsDict: Record<string, any> = {}
|
2017-12-12 18:08:09 +00:00
|
|
|
defaultsMap.forEach(row => { defaultsDict[row.key] = row.value })
|
|
|
|
|
|
|
|
systemPreferences.registerDefaults(defaultsDict)
|
|
|
|
|
|
|
|
for (const userDefault of defaultsMap) {
|
|
|
|
const { key, value: expectedValue, type } = userDefault
|
2019-07-17 00:14:32 +00:00
|
|
|
const actualValue = systemPreferences.getUserDefault(key, type as any)
|
2019-05-20 17:04:18 +00:00
|
|
|
expect(actualValue).to.deep.equal(expectedValue)
|
2017-12-12 18:08:09 +00:00
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
it('throws when bad defaults are passed', () => {
|
|
|
|
const badDefaults = [
|
|
|
|
1,
|
|
|
|
null,
|
|
|
|
new Date(),
|
2017-12-13 19:02:43 +00:00
|
|
|
{ 'one': null }
|
2017-12-12 18:08:09 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
for (const badDefault of badDefaults) {
|
2019-05-20 17:04:18 +00:00
|
|
|
expect(() => {
|
2019-08-05 17:45:58 +00:00
|
|
|
systemPreferences.registerDefaults(badDefault as any)
|
2019-05-20 17:04:18 +00:00
|
|
|
}).to.throw('Invalid userDefault data provided')
|
2017-12-12 18:08:09 +00:00
|
|
|
}
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2019-07-17 00:14:32 +00:00
|
|
|
ifdescribe(process.platform === 'darwin')('systemPreferences.getUserDefault(key, type)', () => {
|
2017-10-27 00:58:48 +00:00
|
|
|
it('returns values for known user defaults', () => {
|
2016-11-17 00:28:57 +00:00
|
|
|
const locale = systemPreferences.getUserDefault('AppleLocale', 'string')
|
2019-07-17 00:14:32 +00:00
|
|
|
expect(locale).to.be.a('string').that.is.not.empty('locale')
|
2016-06-02 01:56:25 +00:00
|
|
|
|
2016-11-17 00:28:57 +00:00
|
|
|
const languages = systemPreferences.getUserDefault('AppleLanguages', 'array')
|
2019-07-17 00:14:32 +00:00
|
|
|
expect(languages).to.be.an('array').that.is.not.empty('languages')
|
2016-06-02 02:29:24 +00:00
|
|
|
})
|
2016-11-17 00:28:57 +00:00
|
|
|
|
2017-10-27 00:58:48 +00:00
|
|
|
it('returns values for unknown user defaults', () => {
|
2019-05-20 17:04:18 +00:00
|
|
|
expect(systemPreferences.getUserDefault('UserDefaultDoesNotExist', 'boolean')).to.equal(false)
|
|
|
|
expect(systemPreferences.getUserDefault('UserDefaultDoesNotExist', 'integer')).to.equal(0)
|
|
|
|
expect(systemPreferences.getUserDefault('UserDefaultDoesNotExist', 'float')).to.equal(0)
|
|
|
|
expect(systemPreferences.getUserDefault('UserDefaultDoesNotExist', 'double')).to.equal(0)
|
|
|
|
expect(systemPreferences.getUserDefault('UserDefaultDoesNotExist', 'string')).to.equal('')
|
|
|
|
expect(systemPreferences.getUserDefault('UserDefaultDoesNotExist', 'url')).to.equal('')
|
2019-07-17 00:14:32 +00:00
|
|
|
expect(systemPreferences.getUserDefault('UserDefaultDoesNotExist', 'badtype' as any)).to.be.undefined('user default')
|
2019-05-20 17:04:18 +00:00
|
|
|
expect(systemPreferences.getUserDefault('UserDefaultDoesNotExist', 'array')).to.deep.equal([])
|
|
|
|
expect(systemPreferences.getUserDefault('UserDefaultDoesNotExist', 'dictionary')).to.deep.equal({})
|
2016-11-17 00:28:57 +00:00
|
|
|
})
|
2016-06-02 01:56:25 +00:00
|
|
|
})
|
2016-10-06 22:27:24 +00:00
|
|
|
|
2019-07-17 00:14:32 +00:00
|
|
|
ifdescribe(process.platform === 'darwin')('systemPreferences.setUserDefault(key, type, value)', () => {
|
2016-11-28 23:08:22 +00:00
|
|
|
const KEY = 'SystemPreferencesTest'
|
|
|
|
const TEST_CASES = [
|
|
|
|
['string', 'abc'],
|
|
|
|
['boolean', true],
|
|
|
|
['float', 2.5],
|
|
|
|
['double', 10.1],
|
|
|
|
['integer', 11],
|
|
|
|
['url', 'https://github.com/electron'],
|
|
|
|
['array', [1, 2, 3]],
|
2018-09-13 16:10:51 +00:00
|
|
|
['dictionary', { 'a': 1, 'b': 2 }]
|
2016-11-28 23:08:22 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
it('sets values', () => {
|
|
|
|
for (const [type, value] of TEST_CASES) {
|
2019-07-17 00:14:32 +00:00
|
|
|
systemPreferences.setUserDefault(KEY, type as any, value as any)
|
|
|
|
const retrievedValue = systemPreferences.getUserDefault(KEY, type as any)
|
2019-05-20 17:04:18 +00:00
|
|
|
expect(retrievedValue).to.deep.equal(value)
|
2016-11-28 23:08:22 +00:00
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
it('throws when type and value conflict', () => {
|
|
|
|
for (const [type, value] of TEST_CASES) {
|
2019-05-20 17:04:18 +00:00
|
|
|
expect(() => {
|
2019-07-17 00:14:32 +00:00
|
|
|
systemPreferences.setUserDefault(KEY, type as any, typeof value === 'string' ? {} : 'foo' as any)
|
2019-05-20 17:04:18 +00:00
|
|
|
}).to.throw(`Unable to convert value to: ${type}`)
|
2016-11-28 23:08:22 +00:00
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
it('throws when type is not valid', () => {
|
2019-05-20 17:04:18 +00:00
|
|
|
expect(() => {
|
2016-11-28 23:08:22 +00:00
|
|
|
systemPreferences.setUserDefault(KEY, 'abc', 'foo')
|
2019-05-20 17:04:18 +00:00
|
|
|
}).to.throw('Invalid type: abc')
|
2016-11-28 23:08:22 +00:00
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2019-07-24 17:40:12 +00:00
|
|
|
ifdescribe(process.platform === 'darwin')('systemPreferences.getSystemColor(color)', () => {
|
2019-08-19 16:10:18 +00:00
|
|
|
it('throws on invalid system colors', () => {
|
|
|
|
const color = 'bad-color'
|
|
|
|
expect(() => {
|
|
|
|
systemPreferences.getSystemColor(color as any)
|
|
|
|
}).to.throw(`Unknown system color: ${color}`)
|
|
|
|
})
|
2019-11-01 20:37:02 +00:00
|
|
|
|
2019-07-24 17:40:12 +00:00
|
|
|
it('returns a valid system color', () => {
|
|
|
|
const colors = ['blue', 'brown', 'gray', 'green', 'orange', 'pink', 'purple', 'red', 'yellow']
|
2019-11-01 20:37:02 +00:00
|
|
|
|
2019-07-24 17:40:12 +00:00
|
|
|
colors.forEach(color => {
|
|
|
|
const sysColor = systemPreferences.getSystemColor(color as any)
|
|
|
|
expect(sysColor).to.be.a('string')
|
|
|
|
})
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2019-10-21 21:31:03 +00:00
|
|
|
ifdescribe(process.platform === 'darwin')('systemPreferences.getColor(color)', () => {
|
|
|
|
it('throws on invalid colors', () => {
|
|
|
|
const color = 'bad-color'
|
|
|
|
expect(() => {
|
|
|
|
systemPreferences.getColor(color as any)
|
|
|
|
}).to.throw(`Unknown color: ${color}`)
|
|
|
|
})
|
2019-11-01 20:37:02 +00:00
|
|
|
|
2019-10-21 21:31:03 +00:00
|
|
|
it('returns a valid color', () => {
|
|
|
|
const colors = [
|
|
|
|
'alternate-selected-control-text',
|
|
|
|
'control-background',
|
|
|
|
'control',
|
|
|
|
'control-text',
|
|
|
|
'disabled-control-text',
|
|
|
|
'find-highlight',
|
|
|
|
'grid',
|
|
|
|
'header-text',
|
|
|
|
'highlight',
|
|
|
|
'keyboard-focus-indicator',
|
|
|
|
'label',
|
|
|
|
'link',
|
|
|
|
'placeholder-text',
|
|
|
|
'quaternary-label',
|
|
|
|
'scrubber-textured-background',
|
|
|
|
'secondary-label',
|
|
|
|
'selected-content-background',
|
|
|
|
'selected-control',
|
|
|
|
'selected-control-text',
|
|
|
|
'selected-menu-item-text',
|
|
|
|
'selected-text-background',
|
|
|
|
'selected-text',
|
|
|
|
'separator',
|
|
|
|
'shadow',
|
|
|
|
'tertiary-label',
|
|
|
|
'text-background',
|
|
|
|
'text',
|
|
|
|
'under-page-background',
|
|
|
|
'unemphasized-selected-content-background',
|
|
|
|
'unemphasized-selected-text-background',
|
|
|
|
'unemphasized-selected-text',
|
|
|
|
'window-background',
|
|
|
|
'window-frame-text'
|
|
|
|
]
|
2019-11-01 20:37:02 +00:00
|
|
|
|
2019-10-21 21:31:03 +00:00
|
|
|
colors.forEach(color => {
|
|
|
|
const sysColor = systemPreferences.getColor(color as any)
|
|
|
|
expect(sysColor).to.be.a('string')
|
|
|
|
})
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2019-07-17 00:14:32 +00:00
|
|
|
ifdescribe(process.platform === 'darwin')('systemPreferences.appLevelAppearance', () => {
|
2019-05-31 00:12:46 +00:00
|
|
|
it('has an appLevelAppearance property', () => {
|
2019-07-17 00:14:32 +00:00
|
|
|
expect(systemPreferences).to.have.property('appLevelAppearance')
|
2019-05-31 00:12:46 +00:00
|
|
|
|
|
|
|
// TODO(codebytere): remove when propertyification is complete
|
|
|
|
expect(systemPreferences.setAppLevelAppearance).to.be.a('function')
|
2019-06-05 05:44:16 +00:00
|
|
|
expect(() => { systemPreferences.getAppLevelAppearance() }).to.not.throw()
|
2019-05-31 00:12:46 +00:00
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2019-07-17 00:14:32 +00:00
|
|
|
ifdescribe(process.platform === 'darwin')('systemPreferences.setUserDefault(key, type, value)', () => {
|
2017-10-10 19:55:15 +00:00
|
|
|
it('removes keys', () => {
|
|
|
|
const KEY = 'SystemPreferencesTest'
|
|
|
|
systemPreferences.setUserDefault(KEY, 'string', 'foo')
|
|
|
|
systemPreferences.removeUserDefault(KEY)
|
2019-05-20 17:04:18 +00:00
|
|
|
expect(systemPreferences.getUserDefault(KEY, 'string')).to.equal('')
|
2017-10-10 19:55:15 +00:00
|
|
|
})
|
|
|
|
|
|
|
|
it('does not throw for missing keys', () => {
|
|
|
|
systemPreferences.removeUserDefault('some-missing-key')
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2017-10-27 00:58:48 +00:00
|
|
|
describe('systemPreferences.isInvertedColorScheme()', () => {
|
|
|
|
it('returns a boolean', () => {
|
2019-05-20 17:04:18 +00:00
|
|
|
expect(systemPreferences.isInvertedColorScheme()).to.be.a('boolean')
|
2016-10-06 22:27:24 +00:00
|
|
|
})
|
|
|
|
})
|
2019-03-19 19:15:40 +00:00
|
|
|
|
2019-07-24 17:40:12 +00:00
|
|
|
describe('systemPreferences.isHighContrastColorScheme()', () => {
|
|
|
|
it('returns a boolean', () => {
|
|
|
|
expect(systemPreferences.isHighContrastColorScheme()).to.be.a('boolean')
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
|
|
|
ifdescribe(process.platform === 'darwin')('systemPreferences.canPromptTouchID()', () => {
|
|
|
|
it('returns a boolean', () => {
|
|
|
|
expect(systemPreferences.canPromptTouchID()).to.be.a('boolean')
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
|
|
|
ifdescribe(process.platform === 'darwin')('systemPreferences.isTrustedAccessibilityClient(prompt)', () => {
|
|
|
|
it('returns a boolean', () => {
|
|
|
|
const trusted = systemPreferences.isTrustedAccessibilityClient(false)
|
|
|
|
expect(trusted).to.be.a('boolean')
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
|
|
|
ifdescribe(process.platform === 'darwin')('systemPreferences.getMediaAccessStatus(mediaType)', () => {
|
|
|
|
const statuses = ['not-determined', 'granted', 'denied', 'restricted', 'unknown']
|
2019-11-01 20:37:02 +00:00
|
|
|
|
2019-07-24 17:40:12 +00:00
|
|
|
it('returns an access status for a camera access request', () => {
|
|
|
|
const cameraStatus = systemPreferences.getMediaAccessStatus('camera')
|
|
|
|
expect(statuses).to.include(cameraStatus)
|
|
|
|
})
|
|
|
|
|
|
|
|
it('returns an access status for a microphone access request', () => {
|
|
|
|
const microphoneStatus = systemPreferences.getMediaAccessStatus('microphone')
|
|
|
|
expect(statuses).to.include(microphoneStatus)
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2019-03-19 19:15:40 +00:00
|
|
|
describe('systemPreferences.getAnimationSettings()', () => {
|
|
|
|
it('returns an object with all properties', () => {
|
|
|
|
const settings = systemPreferences.getAnimationSettings()
|
2019-05-20 17:04:18 +00:00
|
|
|
expect(settings).to.be.an('object')
|
2019-07-17 00:14:32 +00:00
|
|
|
expect(settings).to.have.property('shouldRenderRichAnimation').that.is.a('boolean')
|
|
|
|
expect(settings).to.have.property('scrollAnimationsEnabledBySystem').that.is.a('boolean')
|
|
|
|
expect(settings).to.have.property('prefersReducedMotion').that.is.a('boolean')
|
2019-03-19 19:15:40 +00:00
|
|
|
})
|
|
|
|
})
|
2016-06-02 01:56:25 +00:00
|
|
|
})
|