2015-11-17 14:40:53 +01:00
|
|
|
var fs = require('fs');
|
2015-09-07 08:51:27 +02:00
|
|
|
var sudo = require('./');
|
|
|
|
var exec = require('child_process').exec;
|
|
|
|
|
2015-11-17 14:40:53 +01:00
|
|
|
function kill(end) {
|
|
|
|
exec('sudo -k', end);
|
2015-09-07 08:51:27 +02:00
|
|
|
}
|
2015-11-17 14:40:53 +01: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'
|
|
|
|
};
|
2016-04-16 12:29:20 +02:00
|
|
|
var command = 'echo hello';
|
|
|
|
console.log('sudo.exec(' + JSON.stringify(command) + ', ' + JSON.stringify(options) + ')');
|
|
|
|
sudo.exec(command, options,
|
2015-11-17 14:40:53 +01:00
|
|
|
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
|
|
|
}
|
|
|
|
);
|