forked from appium/appium
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request appium#27 from admc/master
Getting the shell working and system binary
- Loading branch information
Showing
2 changed files
with
62 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,60 @@ | ||
#!/usr/bin/env node | ||
"use strict"; | ||
|
||
var net = require('net') | ||
, repl = require('repl') | ||
, underscore = require('underscore') | ||
, colors = require('colors') | ||
, appium = require('../server') | ||
, parser = require('./parser') | ||
; | ||
|
||
var startRepl = function() { | ||
var help = function() { | ||
console.log("\nWelcome to the Appium CLI".cyan); | ||
console.log(" - Access the appium object via the object: 'appium'".grey); | ||
console.log(" - appium.run is the function to start the server".grey); | ||
console.log(" - args is the default params data structure".grey); | ||
console.log(" - set args.app then run appium.run(args);\n".grey); | ||
return 'Thanks for asking'; | ||
}; | ||
|
||
help(); | ||
|
||
var r = repl.start('(appium): '); | ||
r.context.appium = appium; | ||
r.context.parser = parser(); | ||
r.context.help = help; | ||
r.context.args = { | ||
app: '/path/to/test/app' | ||
, verbose: '1' | ||
, udid: null | ||
, address: '127.0.0.1' | ||
, port: 4723 | ||
, remove: true | ||
}; | ||
|
||
var connections = 0; | ||
var server = net.createServer(function (socket) { | ||
connections += 1; | ||
socket.setTimeout(5*60*1000, function() { | ||
socket.destroy(); | ||
}); | ||
repl.start("(appium): ", socket); | ||
}).listen(process.platform === "win32" ? "\\\\.\\pipe\\node-repl-sock-" + process.pid : "/tmp/node-repl-sock-" + process.pid); | ||
|
||
r.on('exit', function () { | ||
server.close(); | ||
process.exit(); | ||
}); | ||
}; | ||
|
||
if (process.argv[2] === "shell") { | ||
startRepl(); | ||
} | ||
else { | ||
var args = parser().parseArgs(); | ||
args.verbose = 1; | ||
console.log("Pre-flight check ...".grey); | ||
appium.run(args, function() { console.log('Rock and roll.'.grey); }); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters