Merge pull request #5592 from shujunqiao/develop

modify autotest.py
This commit is contained in:
minggo 2014-03-07 10:49:24 +08:00
commit 2928ef8c57
1 changed files with 102 additions and 38 deletions

View File

@ -4,12 +4,27 @@ import subprocess
import socket import socket
import time import time
HOST = 'localhost' HOST_MAC = 'localhost'
HOST_ADNROID = '10.10.30.64'
HOST_IOS = '10.10.30.61'
PORT = 5678 PORT = 5678
def autotest(): suc_build_mac = 0
suc_build_android = 0
TYPE_MAC = 0
TYPE_ANDROID = 1
TYPE_IOS = 2
sleep_time = 1.5
def autotest(type):
soc = socket.socket( socket.AF_INET, socket.SOCK_STREAM ) soc = socket.socket( socket.AF_INET, socket.SOCK_STREAM )
soc.connect((HOST, PORT)) if type == TYPE_MAC:
soc.connect((HOST_MAC, PORT))
if type == TYPE_ANDROID:
soc.connect((HOST_ADNROID, PORT))
if type == TYPE_IOS:
soc.connect((HOST_IOS, PORT))
time.sleep(3) time.sleep(3)
print 'autotest run:' print 'autotest run:'
soc.send('autotest run\r\n') soc.send('autotest run\r\n')
@ -22,44 +37,93 @@ def autotest():
soc.close() soc.close()
#----------------autotest build and run----------------# #----------------autotest build and run----------------#
sleep_time = 1.5 def MAC_BUILD():
def cleanProj(): def cleanProj():
infoClean = os.system('xcodebuild -project ./build/cocos2d_tests.xcodeproj -target Test\ cpp\ Mac clean') infoClean = os.system('xcodebuild -project ./build/cocos2d_tests.xcodeproj -target Test\ cpp\ Mac clean')
print 'infoClean: ', infoClean print 'infoClean: ', infoClean
if infoClean != 0: if infoClean != 0:
print 'clean **CLEAN FAILED**' return False
time.sleep(sleep_time) time.sleep(sleep_time)
def buildProj(): return True
infoBuild = os.system('xcodebuild -project ./build/cocos2d_tests.xcodeproj -target Test\ cpp\ Mac') def buildProj():
print 'infoBuild: ', infoBuild infoBuild = os.system('xcodebuild -project ./build/cocos2d_tests.xcodeproj -target Test\ cpp\ Mac')
if infoBuild != 0: print 'infoBuild: ', infoBuild
print 'build **BUILD FAILED**' if infoBuild != 0:
time.sleep(sleep_time) return False
return infoBuild time.sleep(sleep_time)
def openProj(): return True
cmd = 'open ./build/build/Debug/Test\ cpp\ Mac.app' def openProj():
print 'cmd: ', cmd cmd = 'open ./build/build/Debug/Test\ cpp\ Mac.app'
infoOpen = os.system(cmd) print 'cmd: ', cmd
print 'infoOpen: ', infoOpen infoOpen = os.system(cmd)
if infoOpen != 0: print 'infoOpen: ', infoOpen
print 'open **OPEN FAILED**' if infoOpen != 0:
time.sleep(sleep_time) return False
def buildAndRun(): time.sleep(sleep_time)
# cleanProj() return True
if buildProj() != 0: def buildAndRun():
cleanProj() if not cleanProj():
buildProj() print '**CLEAN FAILED**'
openProj() if not buildProj():
time.sleep(sleep_time) cleanProj()
buildProj()
if not openProj():
return False
time.sleep(sleep_time)
return True
return buildAndRun()
#----------------autotest build and run end----------------# #----------------autotest build and run end----------------#
#----------------autotest-android build and run----------------#
def ANDROID_BUILD():
def cleanProj():
infoClean = os.system('rm -rf libs gen obj assets bin')
print 'infoClean: ', infoClean
infoClean = os.system('adb uninstall org.cocos2dx.testcpp');
print 'infoClean: ', infoClean
if infoClean != 0:
print 'clean **CLEAN FAILED**'
time.sleep(sleep_time)
def updateProperty():
infoUpdate = os.system('android update project -p ./cocos/2d/platform/android/java/ -t 12')
print 'cocos update:', infoUpdate
infoUpdate = os.system('android update project -p ./tests/proj.android/ -t 12')
print 'test update:', infoUpdate
def buildProj():
infoBuild = os.system('./build/android-build.py testcpp')
print 'infoBuild testcpp: ', infoBuild
infoBuild = os.system('ant -buildfile ./tests/proj.android/ debug install')
print 'infoBuild: ', infoBuild
if infoBuild != 0:
print 'build **BUILD FAILED**'
time.sleep(sleep_time)
return infoBuild
def openProj():
cmd = 'adb shell am start -n org.cocos2dx.testcpp/org.cocos2dx.testcpp.Cocos2dxActivity'
print 'cmd: ', cmd
infoOpen = os.system(cmd)
print 'infoOpen: ', infoOpen
if infoOpen != 0:
return False
time.sleep(sleep_time)
return True
def buildAndRun():
cleanProj()
updateProperty()
if buildProj() != 0:
cleanProj()
buildProj()
return openProj()
return buildAndRun()
#----------------autotest-android build and run end----------------#
def main(): def main():
try: suc_build_mac = MAC_BUILD()
buildAndRun() suc_build_android = ANDROID_BUILD()
except Exception, e: if suc_build_mac:
print 'BUILD FAILED!' autotest(TYPE_MAC)
else: if suc_build_android:
autotest() autotest(TYPE_ANDROID)
# -------------- main -------------- # -------------- main --------------