sudo-prompt/test.js

41 lines
1 KiB
JavaScript
Raw Normal View History

var fs = require('fs');
2015-09-07 08:51:27 +02:00
var sudo = require('./');
var exec = require('child_process').exec;
function kill(end) {
exec('sudo -k', end);
2015-09-07 08:51:27 +02:00
}
function icns() {
if (process.platform !== 'darwin') return undefined;
var path = '/Applications/Chess.app/Contents/Resources/Chess.icns';
try {
fs.statSync(path);
return path;
} catch (error) {}
return undefined;
}
kill(
function() {
var options = {
icns: icns(),
name: 'Chess'
};
console.log('sudo.exec("echo hello", ' + JSON.stringify(options) + ')');
sudo.exec('echo hello', options,
function(error, stdout, stderr) {
console.log('error: ' + error);
console.log('stdout: ' + JSON.stringify(stdout));
console.log('stderr: ' + JSON.stringify(stderr));
kill(
function() {
if (error) throw error;
if (stdout !== 'hello\n') throw new Error('stdout != "hello\n"');
if (stderr !== "") throw new Error('stderr != ""');
console.log('OK');
}
);
}
);
2015-09-07 08:51:27 +02:00
}
);