Files
appium/app/parser.js
2013-05-09 15:55:47 -07:00

238 lines
6.1 KiB
JavaScript

"use strict";
var ap = require('argparse').ArgumentParser
, pkgObj = require("../package")
, _ = require("underscore");
var args = [
[['--app'] , {
required: false
, defaultValue: null
, help: 'IOS: abs path to simulator-compiled .app file or the bundle_id of the desired target on device; Android: abs path to .apk file'
, example: "/abs/path/to/my.app"
}],
[['--ipa'] , {
required: false
, defaultValue: null
, help: '(IOS-only) abs path to compiled .ipa file'
, example: "/abs/path/to/my.ipa"
}],
[['-V', '--verbose'], {
required: false
, defaultValue: true
, action: 'storeTrue'
, help: '(DEPRECATED, see --quiet) Get verbose logging output'
, nargs: 0
}],
[['-q', '--quiet'], {
required: false
, defaultValue: false
, action: 'storeTrue'
, help: "Don't use verbose logging output"
, nargs: 0
}],
[['-U', '--udid'] , {
required: false
, defaultValue: null
, example: "1adsf-sdfas-asdf-123sdf"
, help: 'Unique device identifier of the connected physical device'
}],
[['-a', '--address'] , {
defaultValue: '0.0.0.0'
, required: false
, example: "0.0.0.0"
, help: 'IP Address to listen on'
}],
[['-p', '--port'] , {
defaultValue: 4723
, required: false
, type: 'int'
, example: "4723"
, help: 'port to listen on'
}],
[['-k', '--keep-artifacts'] , {
defaultValue: false
, dest: 'keepArtifacts'
, action: 'storeTrue'
, required: false
, help: '(IOS-only) Keep Instruments trace directories'
, nargs: 0
}],
[['--fast-reset'] , {
defaultValue: true
, dest: 'fastReset'
, action: 'storeTrue'
, required: false
, help: '(Android-only, DEPRECATED, see --full-reset) Reset app state ' +
'using clean.apk'
, nargs: 0
}],
[['--full-reset'] , {
defaultValue: false
, dest: 'fullReset'
, action: 'storeTrue'
, required: false
, help: '(Android-only) Reset app state by uninstalling app instead of ' +
'using clean.apk'
, nargs: 0
}],
[['--no-reset'] , {
defaultValue: false
, dest: 'noReset'
, action: 'storeTrue'
, required: false
, help: 'Reset app state after each session (IOS: delete plist; Android: ' +
'install app before session and uninstall after session)'
, nargs: 0
}],
[['-l', '--pre-launch'] , {
defaultValue: false
, dest: 'launch'
, action: 'storeTrue'
, required: false
, help: 'Pre-launch the application before allowing the first session ' +
'(Requires --app and, for Android, --app-pkg and --app-activity)'
, nargs: 0
}],
[['-g', '--log'] , {
defaultValue: null
, required: false
, example: "/path/to/appium.log"
, help: 'Log output to this file instead of stdout'
}],
[['-G', '--webhook'] , {
defaultValue: null
, required: false
, example: "localhost:9876"
, help: 'Also send log output to this HTTP listener'
}],
[['--without-delay'] , {
defaultValue: true
, dest: 'withoutDelay'
, action: 'storeTrue'
, required: false
, help: '(IOS-only, DEPRECATED) IOS has a weird built-in unavoidable ' +
'delay. One way around this is to run instruments with a library ' +
'loaded to patch it so that it skips the delay. Use this flag to ' +
'speed up test execution.'
, nargs: 0
}],
[['--native-instruments-lib'] , {
defaultValue: false
, dest: 'nativeInstrumentsLib'
, action: 'storeTrue'
, required: false
, help: '(IOS-only) IOS has a weird built-in unavoidable ' +
'delay. We patch this in appium. If you do not want it patched, ' +
'pass in this flag.'
, nargs: 0
}],
[['--app-pkg'], {
dest: 'androidPackage'
, defaultValue: null
, required: false
, example: "com.example.android.myApp"
, help: "(Android-only) Java package of the Android app you want to run " +
"(e.g., com.example.android.myApp)"
}],
[['--app-activity'], {
dest: 'androidActivity'
, defaultValue: null
, required: false
, example: "MainActivity"
, help: "(Android-only) Activity name for the Android activity you want " +
"to launch from your package (e.g., MainActivity)"
}],
[['--app-wait-activity'], {
dest: 'androidWaitActivity'
, defaultValue: false
, required: false
, example: "SplashActivity"
, help: "(Android-only) Activity name for the Android activity you want " +
"to wait for (e.g., SplashActivity)"
}],
[['--avd'] , {
defaultValue: null
, required: false
, example: "@default"
, help: 'name of the avd to launch'
}],
[['--device-ready-timeout'], {
dest: 'androidDeviceReadyTimeout'
, defaultValue: '5'
, required: false
, example: "5"
, help: "(Android-only) Timeout in seconds while waiting for device to become ready"
}],
[['--safari'], {
defaultValue: false
, action: 'storeTrue'
, required: false
, help: "(IOS-Only) Use the safari app"
, nargs: 0
}],
[['--force-iphone'], {
defaultValue: false
, dest: 'forceIphone'
, action: 'storeTrue'
, required: false
, help: "(IOS-only) Use the iPhone Simulator no matter what the app wants"
, nargs: 0
}],
[['--force-ipad'], {
defaultValue: false
, dest: 'forceIpad'
, action: 'storeTrue'
, required: false
, help: "(IOS-only) Use the iPad Simulator no matter what the app wants"
, nargs: 0
}],
[['--orientation'], {
defaultValue: null
, required: false
, example: "LANDSCAPE"
, help: "(IOS-only) use LANDSCAPE or PORTRAIT to initialize all requests " +
"to this orientation"
}]
];
// Setup all the command line argument parsing
module.exports = function() {
var parser = new ap({
version: pkgObj.version,
addHelp: true,
description: 'A webdriver-compatible server for use with native and hybrid iOS and Android applications.'
});
_.each(args, function(arg) {
parser.addArgument(arg[0], arg[1]);
});
parser.rawArgs = args;
return parser;
};