def main(args=sys.argv[1:]): usage = "usage: %prog [options]" parser = optparse.OptionParser(usage=usage) eideticker.add_dashboard_options(parser) options, args = parser.parse_args() if args: # should not be specifying any arguments parser.print_usage() sys.exit(1) if not options.dashboard_server: parser.error("ERROR: Need to specify dashboard server (via the " "--dashboard-server option)") eideticker.upload_dashboard(options)
def main(args=sys.argv[1:]): usage = "usage: %prog [options] TEST..." parser = eideticker.TestOptionParser(usage=usage) eideticker.add_dashboard_options(parser) parser.add_option("--enable-profiling", action="store_true", dest="enable_profiling", help="Create SPS profile to go along with capture") parser.add_option("--device-id", action="store", dest="device_id", help="id of device (used in output json)", default=os.environ.get('DEVICE_ID')) parser.add_option("--branch", action="store", dest="branch_id", help="branch under test (used in output json)", default=os.environ.get('BRANCH')) parser.add_option("--device-name", action="store", dest="device_name", help="name of device to display in dashboard (if not " "specified, display model name)", default=os.environ.get('DEVICE_NAME')) parser.add_option("--apk", action="store", dest="apk", help="Product apk to get metadata from " "(Android-specific)") parser.add_option("--baseline", action="store_true", dest="baseline", help="Create baseline results for dashboard") parser.add_option("--num-runs", action="store", type="int", dest="num_runs", help="number of runs (default: %default)", default=1) parser.add_option("--app-version", action="store", dest="app_version", help="Specify app version (if not automatically " "available; Android-specific)") parser.add_option("--sources-xml", action="store", dest="sources_xml", help="Path to sources XML file for getting revision " "information (B2G-specific)") parser.add_option("--product", action="store", type="string", dest="product_name", default="nightly", help="product name (android-specific, default: " "%default)") options, args = parser.parse_args() if not args: # need to specify at least one test to run! parser.print_usage() sys.exit(1) if not options.device_id: print "ERROR: Must specify device id (either with --device-id or with " \ "DEVICE_ID environment variable)" sys.exit(1) if not options.branch_id: print "ERROR: Must specify branch (either with --branch or with " \ "BRANCH environment variable)" sys.exit(1) # get device info device_prefs = eideticker.getDevicePrefs(options) device = eideticker.getDevice(**device_prefs) device_name = options.device_name if not device_name: device_name = device.model # copy dashboard files to output directory (if applicable) eideticker.copy_dashboard_files(options.dashboard_dir) if options.devicetype == 'android': product = eideticker.get_product(options.product_name) device_info = { 'name': device_name, 'version': device.getprop('ro.build.version.release')} elif options.devicetype == 'b2g': product = eideticker.get_product('b2g-nightly') device_info = { 'name': device_name } else: print "ERROR: Unknown device type '%s'" % options.devicetype # update device index eideticker.update_dashboard_device_list(options.dashboard_dir, options.device_id, options.branch_id, device_info) # get application/build info if options.devicetype == "android": if options.apk: if options.app_version: raise Exception("Should specify either --app-version or " "--apk, not both!") appinfo = eideticker.get_fennec_appinfo(options.apk) options.appname = appinfo['appname'] print "Using application name '%s' from apk '%s'" % ( options.appname, options.apk) options.capture_name = "%s %s" % (product['name'], appinfo['appdate']) else: if not options.app_version: raise Exception("Should specify --app-version if not --apk!") # no apk, assume it's something static on the device appinfo = { 'appdate': time.strftime("%Y-%m-%d"), 'version': options.app_version} elif options.devicetype == "b2g": if not options.sources_xml: raise Exception("Must specify --sources-xml on b2g!") appinicontents = device.pullFile('/system/b2g/application.ini') sfh = StringIO.StringIO(appinicontents) appinfo = eideticker.get_appinfo(sfh) appinfo.update(get_revision_data(options.sources_xml)) options.appname = None else: print "Unknown device type '%s'!" % options.devicetype # run through the tests... failed_tests = [] for testkey in args: testinfo = eideticker.get_testinfo(testkey) eideticker.update_dashboard_test_list(options.dashboard_dir, options.device_id, options.branch_id, testinfo) current_date = time.strftime("%Y-%m-%d") options.capture_name = "%s - %s (taken on %s)" % (testkey, product['name'], current_date) if options.prepare_test: eideticker.prepare_test(testkey, options) # Run the test the specified number of times for i in range(options.num_runs): try: runtest(device, device_prefs, options, product, appinfo, testinfo, options.capture_name + " #%s" % i) except eideticker.TestException: print "Unable to run test '%s'. Skipping and continuing." % testkey failed_tests.append(testkey) break # synchronize with dashboard (if we have a server to upload to) if options.dashboard_server: eideticker.upload_dashboard(options) else: print "No dashboard server specified. Skipping upload." if failed_tests: print "The following tests failed: %s" % ", ".join(failed_tests) sys.exit(1)
def main(args=sys.argv[1:]): usage = "usage: %prog [options] TEST..." parser = eideticker.TestOptionParser(usage=usage) eideticker.add_dashboard_options(parser) parser.add_option("--enable-profiling", action="store_true", dest="enable_profiling", help="Create SPS profile to go along with capture") parser.add_option("--dashboard-id", action="store", dest="dashboard_id", help="id of dashboard (used in output json)", default=os.environ.get('DASHBOARD_ID')) parser.add_option("--dashboard-name", action="store", dest="dashboard_name", help="name of dashboard to display", default=os.environ.get('DASHBOARD_NAME')) parser.add_option("--device-id", action="store", dest="device_id", help="id of device (used in output json)", default=os.environ.get('DEVICE_ID')) parser.add_option("--branch", action="store", dest="branch_id", help="branch under test (used in output json)", default=os.environ.get('BRANCH')) parser.add_option("--device-name", action="store", dest="device_name", help="name of device to display in dashboard (if not " "specified, display model name)", default=os.environ.get('DEVICE_NAME')) parser.add_option("--apk", action="store", dest="apk", help="Product apk to get metadata from " "(Android-specific)") parser.add_option("--baseline", action="store_true", dest="baseline", help="Create baseline results for dashboard") parser.add_option("--num-runs", action="store", type="int", dest="num_runs", help="number of runs (default: %default)", default=1) parser.add_option("--app-version", action="store", dest="app_version", help="Specify app version (if not automatically " "available; Android-specific)") parser.add_option("--sources-xml", action="store", dest="sources_xml", help="Path to sources XML file for getting revision " "information (B2G-specific)") parser.add_option("--product", action="store", type="string", dest="product_name", default="nightly", help="product name (android-specific, default: " "%default)") options, args = parser.parse_args() if not args: # need to specify at least one test to run! parser.print_usage() sys.exit(1) if not options.dashboard_id: parser.error("Must specify dashboard id (either with --dashboard-id " "or with DASHBOARD_ID environment variable)") if not options.dashboard_name: parser.error("Must specify dashboard name (either with " "--dashboard-name or with DASHBOARD_NAME environment " "varaiable)") if not options.device_id: parser.error("Must specify device id (either with --device-id or with " "DEVICE_ID environment variable)") if not options.branch_id: parser.error("Must specify branch (either with --branch or with " "BRANCH environment variable)") # get device info device_prefs = eideticker.getDevicePrefs(options) device = eideticker.getDevice(**device_prefs) device_name = options.device_name if not device_name: device_name = device.model # copy dashboard files to output directory (if applicable) eideticker.copy_dashboard_files(options.dashboard_dir) if options.devicetype == 'android': product = eideticker.get_product(options.product_name) device_info = { 'name': device_name, 'version': device.getprop('ro.build.version.release') } elif options.devicetype == 'b2g': product = eideticker.get_product('b2g-nightly') device_info = {'name': device_name} else: print "ERROR: Unknown device type '%s'" % options.devicetype # update dashboard / device index eideticker.update_dashboard_list(options.dashboard_dir, options.dashboard_id, options.dashboard_name) eideticker.update_dashboard_device_list(options.dashboard_dir, options.dashboard_id, options.device_id, options.branch_id, device_info) # get application/build info if options.devicetype == "android": if options.apk: if options.app_version: raise Exception("Should specify either --app-version or " "--apk, not both!") appinfo = eideticker.get_fennec_appinfo(options.apk) options.appname = appinfo['appname'] print "Using application name '%s' from apk '%s'" % ( options.appname, options.apk) options.capture_name = "%s %s" % (product['name'], appinfo['appdate']) else: if not options.app_version: raise Exception("Should specify --app-version if not --apk!") # no apk, assume it's something static on the device appinfo = { 'appdate': time.strftime("%Y-%m-%d"), 'version': options.app_version } elif options.devicetype == "b2g": if not options.sources_xml: raise Exception("Must specify --sources-xml on b2g!") appinicontents = device.pullFile('/system/b2g/application.ini') sfh = StringIO.StringIO(appinicontents) appinfo = eideticker.get_appinfo(sfh) appinfo.update(get_revision_data(options.sources_xml)) options.appname = None else: print "Unknown device type '%s'!" % options.devicetype # run through the tests... failed_tests = [] for testkey in args: testinfo = eideticker.get_testinfo(testkey) eideticker.update_dashboard_test_list(options.dashboard_dir, options.dashboard_id, options.device_id, options.branch_id, testinfo) current_date = time.strftime("%Y-%m-%d") options.capture_name = "%s - %s (taken on %s)" % ( testkey, product['name'], current_date) if options.prepare_test: eideticker.prepare_test(testkey, options) # Run the test the specified number of times for i in range(options.num_runs): try: runtest(device, device_prefs, options, product, appinfo, testinfo, options.capture_name + " #%s" % i) except eideticker.TestException: print "Unable to run test '%s'. Skipping and continuing." % testkey failed_tests.append(testkey) break # synchronize with dashboard (if we have a server to upload to) if options.dashboard_server: eideticker.upload_dashboard(options) else: print "No dashboard server specified. Skipping upload." if failed_tests: print "The following tests failed: %s" % ", ".join(failed_tests) sys.exit(1)