Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: conditional binding (#23) #24

Closed
wants to merge 6 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
- name: Use Node.js 14.x
uses: actions/setup-node@v1
with:
version: 14.x
node-version: 14.x
- name: Lint
run: |
npm install
Expand Down
9 changes: 6 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,17 @@ on:

jobs:
build:
runs-on: macOS-latest
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [macos-latest, ubuntu-latest]
steps:
- uses: actions/checkout@master
- name: Use Node.js 14.x
uses: actions/setup-node@v1
with:
version: 14.x
- name: npm install, build, and test
node-version: 14.x
- name: npm install, build, and test (${{ matrix.os }})
run: |
npm install
npm test
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,8 @@ This native Node.js module allows you to manage an app's access to:
* Speech Recognition
* Protected Folders

Note: Always will return `undefined` when imported on a non-Mac platform

If you need to ask for permissions, your app must be allowed to ask for permission :

* for a Nodejs script/app, you can use a terminal app such as [iTerm2](https://iterm2.com/) (it won't work on macOS Terminal.app)
Expand Down
32 changes: 20 additions & 12 deletions index.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,22 @@
const permissions = require('bindings')('permissions.node')
const nonMacResponse = () => undefined
const stub = {
askForCalendarAccess: nonMacResponse,
askForContactsAccess: nonMacResponse,
askForFoldersAccess: nonMacResponse,
askForFullDiskAccess: nonMacResponse,
askForRemindersAccess: nonMacResponse,
askForCameraAccess: nonMacResponse,
askForMicrophoneAccess: nonMacResponse,
askForMusicLibraryAccess: nonMacResponse,
askForPhotosAccess: nonMacResponse,
askForSpeechRecognitionAccess: nonMacResponse,
askForScreenCaptureAccess: nonMacResponse,
askForAccessibilityAccess: nonMacResponse,
getAuthStatus: nonMacResponse,
}

const { platform } = require('os')
const permissions = platform() === 'darwin' ? require('bindings')('permissions.node') : stub

function getAuthStatus(type) {
const validTypes = [
Expand Down Expand Up @@ -35,17 +53,7 @@ function askForFoldersAccess(folder) {
}

module.exports = {
askForCalendarAccess: permissions.askForCalendarAccess,
askForContactsAccess: permissions.askForContactsAccess,
...permissions,
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

we probably also need to handle calls to askForFoldersAccess and getAuthStatus - permissions.askForFoldersAccess.call(this, folder) @ L33 for example probably blows up, does it not?

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

These should also be covered in the additional unit test that runs on Linux 🙂

expect(permissions.getAuthStatus('contacts')).to.be.undefined
expect(permissions.askForFoldersAccess('desktop')).to.be.undefined

The type/folder is validated, and the call is still to permissions.askForFoldersAccess: () => undefined from the original stub, so it behaves as expected with the test's assert. I originally had nonMacResponse = (...args) => undefined but then ...args was just flagged as unused.

These two tests also run on all nodes to enforce consistency of the arg cross-platform.

it('should throw on invalid types', () => {
expect(() => {
permissions.getAuthStatus('bad-type')
}).to.throw(/bad-type is not a valid type/)
})

it('should throw on invalid types', () => {
expect(() => {
permissions.askForFoldersAccess('bad-type')
}).to.throw(/bad-type is not a valid protected folder/)
})

The only notable difference is that the index.d.ts does not specify the new undefined behavior. I felt that was acceptable as this is explicitly a mac-only module, this enhancement is mainly to allow type-safety with a standard import in local projects.

askForFoldersAccess,
askForFullDiskAccess: permissions.askForFullDiskAccess,
askForRemindersAccess: permissions.askForRemindersAccess,
askForCameraAccess: permissions.askForCameraAccess,
askForMicrophoneAccess: permissions.askForMicrophoneAccess,
askForMusicLibraryAccess: permissions.askForMusicLibraryAccess,
askForPhotosAccess: permissions.askForPhotosAccess,
askForSpeechRecognitionAccess: permissions.askForSpeechRecognitionAccess,
askForScreenCaptureAccess: permissions.askForScreenCaptureAccess,
askForAccessibilityAccess: permissions.askForAccessibilityAccess,
getAuthStatus,
}
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@
"scripts": {
"build": "node-gyp rebuild",
"clean": "node-gyp clean",
"lint": "prettier --check index.js",
"format": "clang-format -i permissions.mm && prettier --write index.js",
"lint": "prettier --check index.js test/module.spec.js",
"format": "clang-format -i permissions.mm && prettier --write index.js test/module.spec.js",
"test": "./node_modules/.bin/mocha --reporter spec"
},
"repository": {
Expand Down
41 changes: 36 additions & 5 deletions test/module.spec.js
Original file line number Diff line number Diff line change
@@ -1,15 +1,20 @@
const { expect } = require('chai')
const { askForFoldersAccess, getAuthStatus } = require('../index')
const permissions = require('../index')

const { platform } = require('os')
const isMac = platform() === 'darwin'
it.ifMac = isMac ? it : it.skip
it.ifNotMac = isMac ? it.skip : it

describe('node-mac-permissions', () => {
describe('getAuthStatus()', () => {
it('should throw on invalid types', () => {
expect(() => {
getAuthStatus('bad-type')
permissions.getAuthStatus('bad-type')
}).to.throw(/bad-type is not a valid type/)
})

it('should return a string', () => {
it.ifMac('should return a string', () => {
const types = [
'contacts',
'calendar',
Expand All @@ -27,7 +32,7 @@ describe('node-mac-permissions', () => {

const statuses = ['not determined', 'denied', 'authorized', 'restricted']
for (const type of types) {
const status = getAuthStatus(type)
const status = permissions.getAuthStatus(type)
expect(statuses).to.contain(status)
}
})
Expand All @@ -36,8 +41,34 @@ describe('node-mac-permissions', () => {
describe('askForFoldersAccess()', () => {
it('should throw on invalid types', () => {
expect(() => {
askForFoldersAccess('bad-type')
permissions.askForFoldersAccess('bad-type')
}).to.throw(/bad-type is not a valid protected folder/)
})
})

describe('conditional binding', () => {
it.ifNotMac('always return undefined for non-mac OS', async () => {
const asyncModuleExports = [
'askForCalendarAccess',
'askForContactsAccess',
'askForFullDiskAccess',
'askForRemindersAccess',
'askForCameraAccess',
'askForMicrophoneAccess',
'askForPhotosAccess',
'askForSpeechRecognitionAccess',
'askForScreenCaptureAccess',
'askForAccessibilityAccess',
'askForMusicLibraryAccess'
]

for (const func of asyncModuleExports) {
const auth = await permissions[func]()
expect(auth).to.be.undefined
}

expect(permissions.getAuthStatus('contacts')).to.be.undefined
expect(permissions.askForFoldersAccess('desktop')).to.be.undefined
})
})
})