2011-05-06 22:17:55 +00:00
|
|
|
import subprocess
|
|
|
|
from devicemanager import DeviceManager, DMError
|
|
|
|
import re
|
2011-07-17 16:04:40 +00:00
|
|
|
import os
|
2011-08-23 16:45:10 +00:00
|
|
|
import sys
|
2011-12-05 12:19:31 +00:00
|
|
|
import tempfile
|
2011-05-06 22:17:55 +00:00
|
|
|
|
|
|
|
class DeviceManagerADB(DeviceManager):
|
|
|
|
|
2011-08-22 08:00:50 +00:00
|
|
|
def __init__(self, host = None, port = 20701, retrylimit = 5, packageName = None):
|
2011-05-06 22:17:55 +00:00
|
|
|
self.host = host
|
|
|
|
self.port = port
|
|
|
|
self.retrylimit = retrylimit
|
|
|
|
self.retries = 0
|
|
|
|
self._sock = None
|
2011-08-23 16:45:10 +00:00
|
|
|
self.useRunAs = False
|
2012-02-01 16:43:15 +00:00
|
|
|
self.haveRoot = False
|
2011-12-05 12:19:31 +00:00
|
|
|
self.useZip = False
|
2011-08-26 23:23:02 +00:00
|
|
|
self.packageName = None
|
2012-02-01 16:43:15 +00:00
|
|
|
self.tempDir = None
|
2011-08-22 08:00:50 +00:00
|
|
|
if packageName == None:
|
|
|
|
if os.getenv('USER'):
|
|
|
|
packageName = 'org.mozilla.fennec_' + os.getenv('USER')
|
|
|
|
else:
|
|
|
|
packageName = 'org.mozilla.fennec_'
|
2011-07-17 16:04:40 +00:00
|
|
|
self.Init(packageName)
|
|
|
|
|
|
|
|
def Init(self, packageName):
|
|
|
|
# Initialization code that may fail: Catch exceptions here to allow
|
|
|
|
# successful initialization even if, for example, adb is not installed.
|
|
|
|
try:
|
2011-08-23 16:45:10 +00:00
|
|
|
self.verifyADB()
|
|
|
|
self.verifyRunAs(packageName)
|
2011-07-17 16:04:40 +00:00
|
|
|
except:
|
2011-08-23 16:45:10 +00:00
|
|
|
self.useRunAs = False
|
2011-07-17 16:04:40 +00:00
|
|
|
self.packageName = None
|
2011-12-05 12:19:31 +00:00
|
|
|
try:
|
|
|
|
self.verifyZip()
|
|
|
|
except:
|
|
|
|
self.useZip = False
|
2012-02-01 16:43:15 +00:00
|
|
|
|
|
|
|
def verifyRoot():
|
2011-05-06 22:17:55 +00:00
|
|
|
# a test to see if we have root privs
|
2011-08-22 08:00:50 +00:00
|
|
|
files = self.listFiles("/data/data")
|
|
|
|
if (len(files) == 1):
|
|
|
|
if (files[0].find("Permission denied") != -1):
|
|
|
|
print "NOT running as root"
|
|
|
|
raise Exception("not running as root")
|
2012-02-01 16:43:15 +00:00
|
|
|
self.haveRoot = True
|
|
|
|
|
|
|
|
try:
|
|
|
|
verifyRoot()
|
2011-05-06 22:17:55 +00:00
|
|
|
except:
|
|
|
|
try:
|
|
|
|
self.checkCmd(["root"])
|
2012-02-01 16:43:15 +00:00
|
|
|
# The root command does not fail even if ADB cannot get
|
|
|
|
# root rights (e.g. due to production builds), so we have
|
|
|
|
# to check again ourselves that we have root now.
|
|
|
|
verifyRoot()
|
2011-05-06 22:17:55 +00:00
|
|
|
except:
|
2012-02-01 16:43:15 +00:00
|
|
|
if (self.useRunAs):
|
|
|
|
print "restarting as root failed, but run-as available"
|
|
|
|
else:
|
|
|
|
print "restarting as root failed"
|
2011-05-06 22:17:55 +00:00
|
|
|
|
|
|
|
# external function
|
|
|
|
# returns:
|
|
|
|
# success: True
|
|
|
|
# failure: False
|
|
|
|
def pushFile(self, localname, destname):
|
|
|
|
try:
|
2011-07-17 16:04:40 +00:00
|
|
|
if (os.name == "nt"):
|
|
|
|
destname = destname.replace('\\', '/')
|
2011-08-23 16:45:10 +00:00
|
|
|
if (self.useRunAs):
|
2012-02-01 16:43:15 +00:00
|
|
|
remoteTmpFile = self.getTempDir() + "/" + os.path.basename(localname)
|
2011-07-17 16:04:40 +00:00
|
|
|
self.checkCmd(["push", os.path.realpath(localname), remoteTmpFile])
|
2012-02-01 16:43:15 +00:00
|
|
|
if self.useDDCopy:
|
|
|
|
self.checkCmdAs(["shell", "dd", "if=" + remoteTmpFile, "of=" + destname])
|
|
|
|
else:
|
|
|
|
self.checkCmdAs(["shell", "cp", remoteTmpFile, destname])
|
2011-07-17 16:04:40 +00:00
|
|
|
self.checkCmd(["shell", "rm", remoteTmpFile])
|
|
|
|
else:
|
|
|
|
self.checkCmd(["push", os.path.realpath(localname), destname])
|
|
|
|
if (self.isDir(destname)):
|
|
|
|
destname = destname + "/" + os.path.basename(localname)
|
2011-05-06 22:17:55 +00:00
|
|
|
self.chmodDir(destname)
|
|
|
|
return True
|
|
|
|
except:
|
|
|
|
return False
|
|
|
|
|
|
|
|
# external function
|
|
|
|
# returns:
|
|
|
|
# success: directory name
|
|
|
|
# failure: None
|
|
|
|
def mkDir(self, name):
|
|
|
|
try:
|
2011-07-17 16:04:40 +00:00
|
|
|
self.checkCmdAs(["shell", "mkdir", name])
|
2011-07-07 17:10:52 +00:00
|
|
|
self.chmodDir(name)
|
2011-05-06 22:17:55 +00:00
|
|
|
return name
|
|
|
|
except:
|
|
|
|
return None
|
|
|
|
|
|
|
|
# make directory structure on the device
|
|
|
|
# external function
|
|
|
|
# returns:
|
|
|
|
# success: directory structure that we created
|
|
|
|
# failure: None
|
|
|
|
def mkDirs(self, filename):
|
2011-07-17 16:04:40 +00:00
|
|
|
parts = filename.split('/')
|
|
|
|
name = ""
|
|
|
|
for part in parts:
|
|
|
|
if (part == parts[-1]): break
|
|
|
|
if (part != ""):
|
|
|
|
name += '/' + part
|
|
|
|
if (not self.dirExists(name)):
|
|
|
|
if (self.mkDir(name) == None):
|
|
|
|
print "failed making directory: " + str(name)
|
|
|
|
return None
|
|
|
|
return name
|
2011-05-06 22:17:55 +00:00
|
|
|
|
|
|
|
# push localDir from host to remoteDir on the device
|
|
|
|
# external function
|
|
|
|
# returns:
|
|
|
|
# success: remoteDir
|
|
|
|
# failure: None
|
|
|
|
def pushDir(self, localDir, remoteDir):
|
2011-07-17 16:04:40 +00:00
|
|
|
# adb "push" accepts a directory as an argument, but if the directory
|
|
|
|
# contains symbolic links, the links are pushed, rather than the linked
|
2011-12-05 12:19:31 +00:00
|
|
|
# files; we either zip/unzip or push file-by-file to get around this
|
|
|
|
# limitation
|
2011-05-06 22:17:55 +00:00
|
|
|
try:
|
2012-01-05 15:20:21 +00:00
|
|
|
if (not self.dirExists(remoteDir)):
|
|
|
|
self.mkDirs(remoteDir+"/x")
|
2011-12-05 12:19:31 +00:00
|
|
|
if (self.useZip):
|
2012-01-25 09:49:30 +00:00
|
|
|
try:
|
|
|
|
localZip = tempfile.mktemp()+".zip"
|
|
|
|
remoteZip = remoteDir + "/adbdmtmp.zip"
|
|
|
|
subprocess.check_output(["zip", "-r", localZip, '.'], cwd=localDir)
|
|
|
|
self.pushFile(localZip, remoteZip)
|
|
|
|
os.remove(localZip)
|
|
|
|
data = self.runCmdAs(["shell", "unzip", "-o", remoteZip, "-d", remoteDir]).stdout.read()
|
|
|
|
self.checkCmdAs(["shell", "rm", remoteZip])
|
|
|
|
if (re.search("unzip: exiting", data) or re.search("Operation not permitted", data)):
|
|
|
|
raise Exception("unzip failed, or permissions error")
|
|
|
|
except:
|
2012-01-05 15:20:21 +00:00
|
|
|
print "zip/unzip failure: falling back to normal push"
|
|
|
|
self.useZip = False
|
|
|
|
self.pushDir(localDir, remoteDir)
|
2011-12-05 12:19:31 +00:00
|
|
|
else:
|
|
|
|
for root, dirs, files in os.walk(localDir, followlinks='true'):
|
|
|
|
relRoot = os.path.relpath(root, localDir)
|
|
|
|
for file in files:
|
|
|
|
localFile = os.path.join(root, file)
|
|
|
|
remoteFile = remoteDir + "/"
|
|
|
|
if (relRoot!="."):
|
|
|
|
remoteFile = remoteFile + relRoot + "/"
|
|
|
|
remoteFile = remoteFile + file
|
|
|
|
self.pushFile(localFile, remoteFile)
|
|
|
|
for dir in dirs:
|
|
|
|
targetDir = remoteDir + "/"
|
|
|
|
if (relRoot!="."):
|
|
|
|
targetDir = targetDir + relRoot + "/"
|
|
|
|
targetDir = targetDir + dir
|
|
|
|
if (not self.dirExists(targetDir)):
|
|
|
|
self.mkDir(targetDir)
|
2011-07-17 16:04:40 +00:00
|
|
|
self.checkCmdAs(["shell", "chmod", "777", remoteDir])
|
2011-12-05 12:19:31 +00:00
|
|
|
return remoteDir
|
2011-05-06 22:17:55 +00:00
|
|
|
except:
|
|
|
|
print "pushing " + localDir + " to " + remoteDir + " failed"
|
2011-12-05 12:19:31 +00:00
|
|
|
return None
|
2011-05-06 22:17:55 +00:00
|
|
|
|
|
|
|
# external function
|
|
|
|
# returns:
|
|
|
|
# success: True
|
|
|
|
# failure: False
|
|
|
|
def dirExists(self, dirname):
|
2011-07-17 16:04:40 +00:00
|
|
|
return self.isDir(dirname)
|
2011-05-06 22:17:55 +00:00
|
|
|
|
|
|
|
# Because we always have / style paths we make this a lot easier with some
|
|
|
|
# assumptions
|
|
|
|
# external function
|
|
|
|
# returns:
|
|
|
|
# success: True
|
|
|
|
# failure: False
|
|
|
|
def fileExists(self, filepath):
|
2011-08-22 08:00:50 +00:00
|
|
|
p = self.runCmd(["shell", "ls", "-a", filepath])
|
|
|
|
data = p.stdout.readlines()
|
|
|
|
if (len(data) == 1):
|
|
|
|
if (data[0].rstrip() == filepath):
|
|
|
|
return True
|
|
|
|
return False
|
2011-05-06 22:17:55 +00:00
|
|
|
|
|
|
|
def removeFile(self, filename):
|
|
|
|
return self.runCmd(["shell", "rm", filename]).stdout.read()
|
|
|
|
|
|
|
|
# does a recursive delete of directory on the device: rm -Rf remoteDir
|
|
|
|
# external function
|
|
|
|
# returns:
|
|
|
|
# success: output of telnet, i.e. "removing file: /mnt/sdcard/tests/test.txt"
|
|
|
|
# failure: None
|
|
|
|
def removeSingleDir(self, remoteDir):
|
|
|
|
return self.runCmd(["shell", "rmdir", remoteDir]).stdout.read()
|
|
|
|
|
|
|
|
# does a recursive delete of directory on the device: rm -Rf remoteDir
|
|
|
|
# external function
|
|
|
|
# returns:
|
|
|
|
# success: output of telnet, i.e. "removing file: /mnt/sdcard/tests/test.txt"
|
|
|
|
# failure: None
|
|
|
|
def removeDir(self, remoteDir):
|
|
|
|
out = ""
|
|
|
|
if (self.isDir(remoteDir)):
|
|
|
|
files = self.listFiles(remoteDir.strip())
|
|
|
|
for f in files:
|
|
|
|
if (self.isDir(remoteDir.strip() + "/" + f.strip())):
|
|
|
|
out += self.removeDir(remoteDir.strip() + "/" + f.strip())
|
|
|
|
else:
|
2011-07-17 16:04:40 +00:00
|
|
|
out += self.removeFile(remoteDir.strip() + "/" + f.strip())
|
|
|
|
out += self.removeSingleDir(remoteDir.strip())
|
2011-05-06 22:17:55 +00:00
|
|
|
else:
|
|
|
|
out += self.removeFile(remoteDir.strip())
|
|
|
|
return out
|
|
|
|
|
|
|
|
def isDir(self, remotePath):
|
2011-07-17 16:04:40 +00:00
|
|
|
p = self.runCmd(["shell", "ls", "-a", remotePath])
|
2011-05-06 22:17:55 +00:00
|
|
|
data = p.stdout.readlines()
|
|
|
|
if (len(data) == 0):
|
|
|
|
return True
|
|
|
|
if (len(data) == 1):
|
2011-07-17 16:04:40 +00:00
|
|
|
if (data[0].rstrip() == remotePath):
|
2011-05-06 22:17:55 +00:00
|
|
|
return False
|
|
|
|
if (data[0].find("No such file or directory") != -1):
|
|
|
|
return False
|
|
|
|
if (data[0].find("Not a directory") != -1):
|
|
|
|
return False
|
|
|
|
return True
|
|
|
|
|
|
|
|
def listFiles(self, rootdir):
|
2011-07-17 16:04:40 +00:00
|
|
|
p = self.runCmd(["shell", "ls", "-a", rootdir])
|
2011-05-06 22:17:55 +00:00
|
|
|
data = p.stdout.readlines()
|
|
|
|
if (len(data) == 1):
|
|
|
|
if (data[0] == rootdir):
|
|
|
|
return []
|
|
|
|
if (data[0].find("No such file or directory") != -1):
|
|
|
|
return []
|
|
|
|
if (data[0].find("Not a directory") != -1):
|
|
|
|
return []
|
|
|
|
return data
|
|
|
|
|
|
|
|
# external function
|
|
|
|
# returns:
|
|
|
|
# success: array of process tuples
|
|
|
|
# failure: []
|
|
|
|
def getProcessList(self):
|
|
|
|
p = self.runCmd(["shell", "ps"])
|
|
|
|
# first line is the headers
|
|
|
|
p.stdout.readline()
|
|
|
|
proc = p.stdout.readline()
|
|
|
|
ret = []
|
|
|
|
while (proc):
|
|
|
|
els = proc.split()
|
|
|
|
ret.append(list([els[1], els[len(els) - 1], els[0]]))
|
|
|
|
proc = p.stdout.readline()
|
|
|
|
return ret
|
|
|
|
|
|
|
|
# external function
|
|
|
|
# returns:
|
|
|
|
# success: pid
|
|
|
|
# failure: None
|
|
|
|
def fireProcess(self, appname, failIfRunning=False):
|
2011-07-17 16:04:40 +00:00
|
|
|
#strip out env vars
|
|
|
|
parts = appname.split('"');
|
|
|
|
if (len(parts) > 2):
|
|
|
|
parts = parts[2:]
|
|
|
|
return self.launchProcess(parts, failIfRunning)
|
2011-05-06 22:17:55 +00:00
|
|
|
|
|
|
|
# external function
|
|
|
|
# returns:
|
|
|
|
# success: output filename
|
|
|
|
# failure: None
|
|
|
|
def launchProcess(self, cmd, outputFile = "process.txt", cwd = '', env = '', failIfRunning=False):
|
2012-01-07 23:41:08 +00:00
|
|
|
if cmd[0] == "am":
|
|
|
|
self.checkCmd(["shell"] + cmd)
|
|
|
|
return outputFile
|
|
|
|
|
2011-05-06 22:17:55 +00:00
|
|
|
acmd = ["shell", "am","start"]
|
2011-07-17 16:04:40 +00:00
|
|
|
cmd = ' '.join(cmd).strip()
|
2011-05-06 22:17:55 +00:00
|
|
|
i = cmd.find(" ")
|
2011-12-05 12:19:31 +00:00
|
|
|
# SUT identifies the URL by looking for :\\ -- another strategy to consider
|
|
|
|
re_url = re.compile('^[http|file|chrome|about].*')
|
|
|
|
last = cmd.rfind(" ")
|
|
|
|
uri = ""
|
|
|
|
args = ""
|
|
|
|
if re_url.match(cmd[last:].strip()):
|
|
|
|
args = cmd[i:last].strip()
|
|
|
|
uri = cmd[last:].strip()
|
|
|
|
else:
|
|
|
|
args = cmd[i:].strip()
|
2011-05-06 22:17:55 +00:00
|
|
|
acmd.append("-n")
|
|
|
|
acmd.append(cmd[0:i] + "/.App")
|
|
|
|
acmd.append("--es")
|
2011-12-05 12:19:31 +00:00
|
|
|
if args != "":
|
|
|
|
acmd.append("args")
|
|
|
|
acmd.append(args)
|
|
|
|
if uri != "":
|
|
|
|
acmd.append("-d")
|
|
|
|
acmd.append(''.join(['\'',uri, '\'']));
|
2011-05-06 22:17:55 +00:00
|
|
|
print acmd
|
|
|
|
self.checkCmd(acmd)
|
2012-01-07 23:41:08 +00:00
|
|
|
return outputFile
|
2011-05-06 22:17:55 +00:00
|
|
|
|
|
|
|
# external function
|
|
|
|
# returns:
|
|
|
|
# success: output from testagent
|
|
|
|
# failure: None
|
|
|
|
def killProcess(self, appname):
|
|
|
|
procs = self.getProcessList()
|
2011-11-09 17:08:04 +00:00
|
|
|
for (pid, name, user) in procs:
|
|
|
|
if name == appname:
|
|
|
|
p = self.runCmdAs(["shell", "kill", pid])
|
2011-05-06 22:17:55 +00:00
|
|
|
return p.stdout.read()
|
2011-11-09 17:08:04 +00:00
|
|
|
return None
|
2011-05-06 22:17:55 +00:00
|
|
|
|
|
|
|
# external function
|
|
|
|
# returns:
|
|
|
|
# success: filecontents
|
|
|
|
# failure: None
|
|
|
|
def catFile(self, remoteFile):
|
|
|
|
#p = self.runCmd(["shell", "cat", remoteFile])
|
|
|
|
#return p.stdout.read()
|
|
|
|
return self.getFile(remoteFile)
|
|
|
|
|
|
|
|
# external function
|
|
|
|
# returns:
|
|
|
|
# success: output of pullfile, string
|
|
|
|
# failure: None
|
|
|
|
def pullFile(self, remoteFile):
|
|
|
|
#return self.catFile(remoteFile)
|
|
|
|
return self.getFile(remoteFile)
|
|
|
|
|
|
|
|
# copy file from device (remoteFile) to host (localFile)
|
|
|
|
# external function
|
|
|
|
# returns:
|
|
|
|
# success: output of pullfile, string
|
|
|
|
# failure: None
|
|
|
|
def getFile(self, remoteFile, localFile = 'tmpfile_dm_adb'):
|
2011-10-11 14:31:05 +00:00
|
|
|
# TODO: add debug flags and allow for printing stdout
|
|
|
|
# self.runCmd(["pull", remoteFile, localFile])
|
2011-05-06 22:17:55 +00:00
|
|
|
try:
|
2012-02-01 16:43:15 +00:00
|
|
|
|
|
|
|
# First attempt to pull file regularly
|
|
|
|
outerr = self.runCmd(["pull", remoteFile, localFile]).communicate()
|
|
|
|
|
|
|
|
# Now check stderr for errors
|
|
|
|
errl = outerr[1].splitlines()
|
|
|
|
if (len(errl) == 1):
|
|
|
|
if (((errl[0].find("Permission denied") != -1)
|
|
|
|
or (errl[0].find("does not exist") != -1))
|
|
|
|
and self.useRunAs):
|
|
|
|
# If we lack permissions to read but have run-as, then we should try
|
|
|
|
# to copy the file to a world-readable location first before attempting
|
|
|
|
# to pull it again.
|
|
|
|
remoteTmpFile = self.getTempDir() + "/" + os.path.basename(remoteFile)
|
|
|
|
self.checkCmdAs(["shell", "dd", "if=" + remoteFile, "of=" + remoteTmpFile])
|
|
|
|
self.checkCmdAs(["shell", "chmod", "777", remoteTmpFile])
|
|
|
|
self.runCmd(["pull", remoteTmpFile, localFile]).stdout.read()
|
|
|
|
# Clean up temporary file
|
|
|
|
self.checkCmdAs(["shell", "rm", remoteTmpFile])
|
|
|
|
|
2011-05-06 22:17:55 +00:00
|
|
|
f = open(localFile)
|
|
|
|
ret = f.read()
|
|
|
|
f.close()
|
|
|
|
return ret;
|
|
|
|
except:
|
|
|
|
return None
|
|
|
|
|
|
|
|
# copy directory structure from device (remoteDir) to host (localDir)
|
|
|
|
# external function
|
|
|
|
# checkDir exists so that we don't create local directories if the
|
|
|
|
# remote directory doesn't exist but also so that we don't call isDir
|
|
|
|
# twice when recursing.
|
|
|
|
# returns:
|
|
|
|
# success: list of files, string
|
|
|
|
# failure: None
|
|
|
|
def getDirectory(self, remoteDir, localDir, checkDir=True):
|
|
|
|
ret = []
|
|
|
|
p = self.runCmd(["pull", remoteDir, localDir])
|
|
|
|
p.stderr.readline()
|
|
|
|
line = p.stderr.readline()
|
|
|
|
while (line):
|
|
|
|
els = line.split()
|
|
|
|
f = els[len(els) - 1]
|
|
|
|
i = f.find(localDir)
|
|
|
|
if (i != -1):
|
|
|
|
if (localDir[len(localDir) - 1] != '/'):
|
|
|
|
i = i + 1
|
|
|
|
f = f[i + len(localDir):]
|
|
|
|
i = f.find("/")
|
|
|
|
if (i > 0):
|
|
|
|
f = f[0:i]
|
|
|
|
ret.append(f)
|
|
|
|
line = p.stderr.readline()
|
|
|
|
#the last line is a summary
|
2011-10-14 11:52:01 +00:00
|
|
|
if (len(ret) > 0):
|
|
|
|
ret.pop()
|
2011-05-06 22:17:55 +00:00
|
|
|
return ret
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
# true/false check if the two files have the same md5 sum
|
|
|
|
# external function
|
|
|
|
# returns:
|
|
|
|
# success: True
|
|
|
|
# failure: False
|
|
|
|
def validateFile(self, remoteFile, localFile):
|
|
|
|
return self.getRemoteHash(remoteFile) == self.getLocalHash(localFile)
|
|
|
|
|
|
|
|
# return the md5 sum of a remote file
|
|
|
|
# internal function
|
|
|
|
# returns:
|
|
|
|
# success: MD5 hash for given filename
|
|
|
|
# failure: None
|
|
|
|
def getRemoteHash(self, filename):
|
|
|
|
data = p = self.runCmd(["shell", "ls", "-l", filename]).stdout.read()
|
|
|
|
return data.split()[3]
|
|
|
|
|
|
|
|
def getLocalHash(self, filename):
|
|
|
|
data = p = subprocess.Popen(["ls", "-l", filename], stdout=subprocess.PIPE).stdout.read()
|
|
|
|
return data.split()[4]
|
|
|
|
|
|
|
|
# Gets the device root for the testing area on the device
|
|
|
|
# For all devices we will use / type slashes and depend on the device-agent
|
|
|
|
# to sort those out. The agent will return us the device location where we
|
|
|
|
# should store things, we will then create our /tests structure relative to
|
|
|
|
# that returned path.
|
|
|
|
# Structure on the device is as follows:
|
|
|
|
# /tests
|
|
|
|
# /<fennec>|<firefox> --> approot
|
|
|
|
# /profile
|
|
|
|
# /xpcshell
|
|
|
|
# /reftest
|
|
|
|
# /mochitest
|
|
|
|
#
|
|
|
|
# external function
|
|
|
|
# returns:
|
|
|
|
# success: path for device root
|
|
|
|
# failure: None
|
|
|
|
def getDeviceRoot(self):
|
2011-07-17 16:04:40 +00:00
|
|
|
# /mnt/sdcard/tests is preferred to /data/local/tests, but this can be
|
|
|
|
# over-ridden by creating /data/local/tests
|
|
|
|
testRoot = "/data/local/tests"
|
|
|
|
if (self.dirExists(testRoot)):
|
|
|
|
return testRoot
|
|
|
|
root = "/mnt/sdcard"
|
|
|
|
if (not self.dirExists(root)):
|
|
|
|
root = "/data/local"
|
|
|
|
testRoot = root + "/tests"
|
|
|
|
if (not self.dirExists(testRoot)):
|
|
|
|
self.mkDir(testRoot)
|
|
|
|
return testRoot
|
2011-05-06 22:17:55 +00:00
|
|
|
|
2012-02-01 16:43:15 +00:00
|
|
|
# Gets the temporary directory we are using on this device
|
|
|
|
# base on our device root, ensuring also that it exists.
|
|
|
|
#
|
|
|
|
# internal function
|
|
|
|
# returns:
|
|
|
|
# success: path for temporary directory
|
|
|
|
# failure: None
|
|
|
|
def getTempDir(self):
|
|
|
|
# Cache result to speed up operations depending
|
|
|
|
# on the temporary directory.
|
|
|
|
if self.tempDir == None:
|
|
|
|
self.tempDir = self.getDeviceRoot() + "/tmp"
|
|
|
|
if (not self.dirExists(self.tempDir)):
|
|
|
|
return self.mkDir(self.tempDir)
|
|
|
|
|
|
|
|
return self.tempDir
|
|
|
|
|
2011-05-06 22:17:55 +00:00
|
|
|
# Either we will have /tests/fennec or /tests/firefox but we will never have
|
|
|
|
# both. Return the one that exists
|
|
|
|
# TODO: ensure we can support org.mozilla.firefox
|
|
|
|
# external function
|
|
|
|
# returns:
|
|
|
|
# success: path for app root
|
|
|
|
# failure: None
|
2012-01-07 23:41:08 +00:00
|
|
|
def getAppRoot(self, packageName):
|
2011-05-06 22:17:55 +00:00
|
|
|
devroot = self.getDeviceRoot()
|
|
|
|
if (devroot == None):
|
|
|
|
return None
|
|
|
|
|
2012-01-07 23:41:08 +00:00
|
|
|
if (packageName and self.dirExists('/data/data/' + packageName)):
|
|
|
|
self.packageName = packageName
|
|
|
|
return '/data/data/' + packageName
|
2011-08-22 08:00:50 +00:00
|
|
|
elif (self.packageName and self.dirExists('/data/data/' + self.packageName)):
|
|
|
|
return '/data/data/' + self.packageName
|
2011-05-06 22:17:55 +00:00
|
|
|
|
|
|
|
# Failure (either not installed or not a recognized platform)
|
2011-08-22 08:00:50 +00:00
|
|
|
print "devicemanagerADB: getAppRoot failed"
|
2011-05-06 22:17:55 +00:00
|
|
|
return None
|
|
|
|
|
|
|
|
# Gets the directory location on the device for a specific test type
|
|
|
|
# Type is one of: xpcshell|reftest|mochitest
|
|
|
|
# external function
|
|
|
|
# returns:
|
|
|
|
# success: path for test root
|
|
|
|
# failure: None
|
|
|
|
def getTestRoot(self, type):
|
|
|
|
devroot = self.getDeviceRoot()
|
|
|
|
if (devroot == None):
|
|
|
|
return None
|
|
|
|
|
|
|
|
if (re.search('xpcshell', type, re.I)):
|
|
|
|
self.testRoot = devroot + '/xpcshell'
|
|
|
|
elif (re.search('?(i)reftest', type)):
|
|
|
|
self.testRoot = devroot + '/reftest'
|
|
|
|
elif (re.search('?(i)mochitest', type)):
|
|
|
|
self.testRoot = devroot + '/mochitest'
|
|
|
|
return self.testRoot
|
|
|
|
|
|
|
|
|
|
|
|
# external function
|
|
|
|
# returns:
|
|
|
|
# success: status from test agent
|
|
|
|
# failure: None
|
|
|
|
def reboot(self, wait = False):
|
|
|
|
ret = self.runCmd(["reboot"]).stdout.read()
|
|
|
|
if (not wait):
|
|
|
|
return "Success"
|
|
|
|
countdown = 40
|
|
|
|
while (countdown > 0):
|
|
|
|
countdown
|
|
|
|
try:
|
|
|
|
self.checkCmd(["wait-for-device", "shell", "ls", "/sbin"])
|
|
|
|
return ret
|
|
|
|
except:
|
|
|
|
try:
|
|
|
|
self.checkCmd(["root"])
|
|
|
|
except:
|
|
|
|
time.sleep(1)
|
|
|
|
print "couldn't get root"
|
|
|
|
return "Success"
|
|
|
|
|
|
|
|
# external function
|
|
|
|
# returns:
|
|
|
|
# success: text status from command or callback server
|
|
|
|
# failure: None
|
|
|
|
def updateApp(self, appBundlePath, processName=None, destPath=None, ipAddr=None, port=30000):
|
|
|
|
return self.runCmd(["install", "-r", appBundlePath]).stdout.read()
|
2011-09-30 18:54:11 +00:00
|
|
|
|
|
|
|
# external function
|
|
|
|
# returns:
|
|
|
|
# success: time in ms
|
|
|
|
# failure: None
|
|
|
|
def getCurrentTime(self):
|
|
|
|
timestr = self.runCmd(["shell", "date", "+%s"]).stdout.read().strip()
|
|
|
|
if (not timestr or not timestr.isdigit()):
|
|
|
|
return None
|
|
|
|
return str(int(timestr)*1000)
|
|
|
|
|
2011-05-06 22:17:55 +00:00
|
|
|
# Returns information about the device:
|
|
|
|
# Directive indicates the information you want to get, your choices are:
|
|
|
|
# os - name of the os
|
|
|
|
# id - unique id of the device
|
|
|
|
# uptime - uptime of the device
|
|
|
|
# systime - system time of the device
|
|
|
|
# screen - screen resolution
|
|
|
|
# memory - memory stats
|
|
|
|
# process - list of running processes (same as ps)
|
|
|
|
# disk - total, free, available bytes on disk
|
|
|
|
# power - power status (charge, battery temp)
|
|
|
|
# all - all of them - or call it with no parameters to get all the information
|
|
|
|
# returns:
|
|
|
|
# success: dict of info strings by directive name
|
|
|
|
# failure: {}
|
|
|
|
def getInfo(self, directive="all"):
|
|
|
|
ret = {}
|
|
|
|
if (directive == "id" or directive == "all"):
|
|
|
|
ret["id"] = self.runCmd(["get-serialno"]).stdout.read()
|
|
|
|
if (directive == "os" or directive == "all"):
|
|
|
|
ret["os"] = self.runCmd(["shell", "getprop", "ro.build.display.id"]).stdout.read()
|
|
|
|
if (directive == "uptime" or directive == "all"):
|
|
|
|
utime = self.runCmd(["shell", "uptime"]).stdout.read()
|
|
|
|
if (not utime):
|
|
|
|
raise DMError("error getting uptime")
|
|
|
|
utime = utime[9:]
|
|
|
|
hours = utime[0:utime.find(":")]
|
|
|
|
utime = utime[utime[1:].find(":") + 2:]
|
|
|
|
minutes = utime[0:utime.find(":")]
|
|
|
|
utime = utime[utime[1:].find(":") + 2:]
|
|
|
|
seconds = utime[0:utime.find(",")]
|
|
|
|
ret["uptime"] = ["0 days " + hours + " hours " + minutes + " minutes " + seconds + " seconds"]
|
|
|
|
if (directive == "process" or directive == "all"):
|
|
|
|
ret["process"] = self.runCmd(["shell", "ps"]).stdout.read()
|
|
|
|
if (directive == "systime" or directive == "all"):
|
|
|
|
ret["systime"] = self.runCmd(["shell", "date"]).stdout.read()
|
|
|
|
print ret
|
|
|
|
return ret
|
|
|
|
|
|
|
|
def runCmd(self, args):
|
2012-02-01 16:43:15 +00:00
|
|
|
# If we are not root but have run-as, and we're trying to execute
|
|
|
|
# a shell command then using run-as is the best we can do
|
|
|
|
if (not self.haveRoot and self.useRunAs and args[0] == "shell" and args[1] != "run-as"):
|
|
|
|
args.insert(1, "run-as")
|
|
|
|
args.insert(2, self.packageName)
|
2011-05-06 22:17:55 +00:00
|
|
|
args.insert(0, "adb")
|
|
|
|
return subprocess.Popen(args, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
|
|
|
|
|
2011-11-09 17:08:04 +00:00
|
|
|
def runCmdAs(self, args):
|
|
|
|
if self.useRunAs:
|
|
|
|
args.insert(1, "run-as")
|
|
|
|
args.insert(2, self.packageName)
|
|
|
|
return self.runCmd(args)
|
|
|
|
|
2011-05-06 22:17:55 +00:00
|
|
|
def checkCmd(self, args):
|
2012-02-01 16:43:15 +00:00
|
|
|
# If we are not root but have run-as, and we're trying to execute
|
|
|
|
# a shell command then using run-as is the best we can do
|
|
|
|
if (not self.haveRoot and self.useRunAs and args[0] == "shell" and args[1] != "run-as"):
|
|
|
|
args.insert(1, "run-as")
|
|
|
|
args.insert(2, self.packageName)
|
2011-05-06 22:17:55 +00:00
|
|
|
args.insert(0, "adb")
|
|
|
|
return subprocess.check_call(args)
|
|
|
|
|
2011-07-17 16:04:40 +00:00
|
|
|
def checkCmdAs(self, args):
|
2011-08-23 16:45:10 +00:00
|
|
|
if (self.useRunAs):
|
2011-07-17 16:04:40 +00:00
|
|
|
args.insert(1, "run-as")
|
|
|
|
args.insert(2, self.packageName)
|
|
|
|
return self.checkCmd(args)
|
|
|
|
|
2011-05-06 22:17:55 +00:00
|
|
|
def chmodDir(self, remoteDir):
|
|
|
|
if (self.isDir(remoteDir)):
|
|
|
|
files = self.listFiles(remoteDir.strip())
|
|
|
|
for f in files:
|
|
|
|
if (self.isDir(remoteDir.strip() + "/" + f.strip())):
|
|
|
|
self.chmodDir(remoteDir.strip() + "/" + f.strip())
|
|
|
|
else:
|
2011-07-17 16:04:40 +00:00
|
|
|
self.checkCmdAs(["shell", "chmod", "777", remoteDir.strip()])
|
2011-05-06 22:17:55 +00:00
|
|
|
print "chmod " + remoteDir.strip()
|
2011-07-17 16:04:40 +00:00
|
|
|
self.checkCmdAs(["shell", "chmod", "777", remoteDir])
|
2011-05-06 22:17:55 +00:00
|
|
|
print "chmod " + remoteDir
|
|
|
|
else:
|
2011-07-17 16:04:40 +00:00
|
|
|
self.checkCmdAs(["shell", "chmod", "777", remoteDir.strip()])
|
|
|
|
print "chmod " + remoteDir.strip()
|
|
|
|
|
2011-08-23 16:45:10 +00:00
|
|
|
def verifyADB(self):
|
|
|
|
# Check to see if adb itself can be executed.
|
|
|
|
try:
|
|
|
|
self.runCmd(["version"])
|
2012-01-12 18:09:04 +00:00
|
|
|
except:
|
2011-08-23 16:45:10 +00:00
|
|
|
print "unable to execute ADB: ensure Android SDK is installed and adb is in your $PATH"
|
|
|
|
|
|
|
|
def isCpAvailable(self):
|
|
|
|
# Some Android systems may not have a cp command installed,
|
|
|
|
# or it may not be executable by the user.
|
|
|
|
data = self.runCmd(["shell", "cp"]).stdout.read()
|
|
|
|
if (re.search('Usage', data)):
|
|
|
|
return True
|
|
|
|
else:
|
2012-02-01 16:43:15 +00:00
|
|
|
data = self.runCmd(["shell", "dd", "-"]).stdout.read()
|
|
|
|
if (re.search('unknown operand', data)):
|
|
|
|
print "'cp' not found, but 'dd' was found as a replacement"
|
|
|
|
self.useDDCopy = True
|
|
|
|
return True
|
2011-08-23 16:45:10 +00:00
|
|
|
print "unable to execute 'cp' on device; consider installing busybox from Android Market"
|
|
|
|
return False
|
|
|
|
|
|
|
|
def verifyRunAs(self, packageName):
|
|
|
|
# If a valid package name is available, and certain other
|
|
|
|
# conditions are met, devicemanagerADB can execute file operations
|
|
|
|
# via the "run-as" command, so that pushed files and directories
|
|
|
|
# are created by the uid associated with the package, more closely
|
|
|
|
# echoing conditions encountered by Fennec at run time.
|
|
|
|
# Check to see if run-as can be used here, by verifying a
|
|
|
|
# file copy via run-as.
|
|
|
|
self.useRunAs = False
|
|
|
|
devroot = self.getDeviceRoot()
|
|
|
|
if (packageName and self.isCpAvailable() and devroot):
|
2012-02-01 16:43:15 +00:00
|
|
|
tmpDir = self.getTempDir()
|
|
|
|
|
2011-08-23 16:45:10 +00:00
|
|
|
self.checkCmd(["shell", "run-as", packageName, "mkdir", devroot + "/sanity"])
|
2012-02-01 16:43:15 +00:00
|
|
|
self.checkCmd(["push", os.path.abspath(sys.argv[0]), tmpDir + "/tmpfile"])
|
|
|
|
if self.useDDCopy:
|
|
|
|
self.checkCmd(["shell", "run-as", packageName, "dd", "if=" + tmpDir + "/tmpfile", "of=" + devroot + "/sanity/tmpfile"])
|
|
|
|
else:
|
|
|
|
self.checkCmd(["shell", "run-as", packageName, "cp", tmpDir + "/tmpfile", devroot + "/sanity"])
|
2011-08-23 16:45:10 +00:00
|
|
|
if (self.fileExists(devroot + "/sanity/tmpfile")):
|
|
|
|
print "will execute commands via run-as " + packageName
|
2011-07-17 16:04:40 +00:00
|
|
|
self.packageName = packageName
|
2011-08-23 16:45:10 +00:00
|
|
|
self.useRunAs = True
|
|
|
|
self.checkCmd(["shell", "rm", devroot + "/tmp/tmpfile"])
|
|
|
|
self.checkCmd(["shell", "run-as", packageName, "rm", "-r", devroot + "/sanity"])
|
|
|
|
|
2011-12-05 12:19:31 +00:00
|
|
|
def isUnzipAvailable(self):
|
2012-01-05 15:20:21 +00:00
|
|
|
data = self.runCmdAs(["shell", "unzip"]).stdout.read()
|
2011-12-05 12:19:31 +00:00
|
|
|
if (re.search('Usage', data)):
|
|
|
|
return True
|
|
|
|
else:
|
|
|
|
return False
|
|
|
|
|
|
|
|
def isLocalZipAvailable(self):
|
|
|
|
try:
|
|
|
|
subprocess.check_call(["zip", "-?"], stdout=subprocess.PIPE, stderr=subprocess.PIPE)
|
|
|
|
except:
|
|
|
|
return False
|
|
|
|
return True
|
|
|
|
|
|
|
|
def verifyZip(self):
|
|
|
|
# If "zip" can be run locally, and "unzip" can be run remotely, then pushDir
|
|
|
|
# can use these to push just one file per directory -- a significant
|
|
|
|
# optimization for large directories.
|
|
|
|
self.useZip = False
|
|
|
|
if (self.isUnzipAvailable() and self.isLocalZipAvailable()):
|
|
|
|
print "will use zip to push directories"
|
|
|
|
self.useZip = True
|