Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(192)

Unified Diff: tools/bots/functional_testing.py

Issue 310633003: Make the functional testing annotated steps script call the eggplant starting script (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 6 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/bots/functional_testing.py
===================================================================
--- tools/bots/functional_testing.py (revision 36880)
+++ tools/bots/functional_testing.py (working copy)
@@ -16,9 +16,13 @@
import bot
import bot_utils
+utils = bot_utils.GetUtils()
+
FT_BUILDER = r'ft-slave-(linux|mac)'
FT_MASTER = r'ft-master'
+HOST_OS = utils.GuessOS()
+
EDITOR_LOCATION='/home/chrome-bot/Desktop'
def SrcConfig(name, is_buildbot):
@@ -45,27 +49,46 @@
sys.stdout.flush()
bot.RunProcess(args)
+def FTSlave(config):
+ with bot.BuildStep('Fetching editor'):
+ revision = int(os.environ['BUILDBOT_GOT_REVISION'])
+ bot_name, _ = bot.GetBotName()
+ print bot_name
+ channel = bot_utils.GetChannelFromName(bot_name)
+ namer = bot_utils.GCSNamer(channel=channel)
+ system = config.system
+ if system == 'mac':
+ system = 'macos'
+ editor_path = namer.editor_zipfilepath(revision, system, 'x64')
+ gsutils = bot_utils.GSUtil()
+ local_path = os.path.join(EDITOR_LOCATION, 'editor.zip')
+ if os.path.exists(local_path):
+ os.remove(local_path)
+ local_extracted = os.path.join(EDITOR_LOCATION, 'dart')
+ shutil.rmtree(local_extracted, ignore_errors=True)
+ gsutils.execute(['cp', editor_path, local_path])
+ Run(['unzip', local_path, '-d', EDITOR_LOCATION])
+
+def FTMaster(config):
+ run = int(os.environ['BUILDBOT_ANNOTATED_STEPS_RUN'])
+ with bot.BuildStep('Master run %s' % run):
+ if run == 1:
+ print 'Not doing anything on master before the triggers'
+ return
+ else:
+ builddir = os.path.join(bot_utils.DART_DIR,
+ utils.GetBuildDir(HOST_OS, HOST_OS),
+ 'functional_testing')
+ shutil.rmtree(builddir, ignore_errors=True)
+ os.makedirs(builddir)
+ script_locations = os.path.join(bot_utils.DART_DIR, 'editor', 'ft')
+ Run(['/home/chrome-bot/func-test/bot-run', builddir, script_locations])
+
def FTSteps(config):
if config.builder_tag == 'master':
- print 'Not doing anything on master for now'
- return
- revision = int(os.environ['BUILDBOT_GOT_REVISION'])
- bot_name, _ = bot.GetBotName()
- print bot_name
- channel = bot_utils.GetChannelFromName(bot_name)
- namer = bot_utils.GCSNamer(channel=channel)
- system = config.system
- if system == 'mac':
- system = 'macos'
- editor_path = namer.editor_zipfilepath(revision, system, 'x64')
- gsutils = bot_utils.GSUtil()
- local_path = os.path.join(EDITOR_LOCATION, 'editor.zip')
- if os.path.exists(local_path):
- os.remove(local_path)
- local_extracted = os.path.join(EDITOR_LOCATION, 'dart')
- shutil.rmtree(local_extracted, ignore_errors=True)
- gsutils.execute(['cp', editor_path, local_path])
- Run(['unzip', local_path, '-d', EDITOR_LOCATION])
-
+ FTMaster(config)
+ else:
+ FTSlave(config)
+
if __name__ == '__main__':
- bot.RunBot(SrcConfig, FTSteps)
+ bot.RunBot(SrcConfig, FTSteps, build_step=None)
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698