示例#1
0
def collect_context_stat(srv, run_id, accum):
	''' Helper method for hierarchy 3 '''
	
	hosts = getHosts(accum)
	me = getTag(accum)
	tag2hosts = {}
	for tag, host in hosts.iteritems():
		if tag != me:
			tag2hosts[tag] = host
			
	script = 'runner.py'
	root = getRoot(accum)
	parameters = {'tag2hosts':tag2hosts, 'run_id': run_id}
	execute_injected_python_script(srv, script, root, parameters)
示例#2
0
def execute_runner_1(srv, run_id, accum):
	''' helper method for hierarchy 1 '''
	
	script = 'runner.py'
	root = getRoot(accum)
	parameters = { 'tag' : getTag(accum), 'run_id': run_id}
	return execute_injected_python_script(srv, script, root, parameters)
示例#3
0
	def inner(srv, run_id, accum):
		script = 'runner.py'
		root = getRoot(accum)
		parameters = {
					'root': getRoot(accum), 
					'fortune' :  fortune, 
					'program': 'progs/Millionaires.txt', 
					'run_id' : run_id, 
					'player': player}
		if host_slavetag:
			host = getHosts(accum).get(host_slavetag)
			parameters['addr_of_host'] = host
		return execute_injected_python_script(srv, script, root, parameters)
示例#4
0
def let_my_millionaire_participate(srv, run_id, accum):
	tag = getTag(accum)
	root = getRoot(accum)
	params = '--no-ssl {my_initfile}'.format(my_initfile=(rjoin(root,'inject', tag+'.ini')))
	execute_injected_python_script(srv, 'millionaires', root, params)
示例#5
0
                    # if none is specified, a unique temporary folder is created 
                    {
                     slave1 : ('setup script 1.', 							deploy(rjoin(ipath, 'slave_scripts', 'slave_script_1.py'), 'test_framework/slave1')),
                     slave2 : ('setup script 2.', 							deploy(rjoin(ipath, 'slave_scripts', 'slave_script_2.py'), 'test_framework/slave2')),
                     slave3 : ('setup script 2. again ', 					deploy(rjoin(ipath, 'slave_scripts', 'slave_script_2.py'), 'test_framework/slave3')),
                     slave4 : ('setup folder with script 3, 4, 5', 	 		deploy(rjoin(ipath, 'some_other_slave_scripts'), 'test_framework/slave4')),
                     },
                    # tier 4: call a script and see how the logger handles remote prints
                    # call slave_script 3: which simply prints to stdout what parameters is gets
                    # this is an example of directly executing a remote script.
                    # note the necessity of supplying a function which takes srv, run_id and accum
                    # note also how to get the name of the root folder (as it might be generated on runtime, we need this)
                    # should simply be evident in the log output
                    {
                    slave4 : ('echo', lambda srv, run_id, accum : 
									execute_injected_python_script(srv, 'slave_script_3.py', getRoot(accum), 
										{'Sherlock Holmes':'Arthur Conan Doyle', 'Conan the barbarian': 'Robert E. Howard'})),
					
                    slave1 : ('google search', lambda srv, run_id, accum : 
									execute_injected_python_script(srv, 'slave_script_1.py', getRoot(accum), 
										{'query':'Oryx and Crake'})),
                     },
                    # tier 5: call a script and see how remote results can be saved for later retrival 
                    # which simply uses another script to generate a random number
                    # which is saved as a result i output/results/myresults along with benchmarking data
                    {
                    slave4 : ('guess a number', lambda srv, a, accum : 
									execute_injected_python_script(srv, 'slave_script_4.py', getRoot(accum), 
										{'Dragon' : 'The Jabberwocky', 'Dragon' : 'The Tarasque'})),
                     },
                    # tier 6: see how accum works by accumulating results from locally executed scripts
                    # making them available for the next tier of execution.
示例#6
0
	def inner(srv, run_id, accum):
		script = 'runner.py'
		root = getRoot(accum)
		parameters = {	'x': x, 
						'timeout': 300}
		return execute_injected_python_script(srv, script, root, parameters)
示例#7
0
def calculate(srv, run_id, accum):
    root = getRoot(accum)
    tag = getTag(accum)
    params = "--no-ssl {my_initfile}".format(my_initfile=rjoin(root, "inject", tag + ".ini"))
    execute_injected_python_script(srv, "benchmark.py", root, params)
示例#8
0
文件: runner.py 项目: tugend/Jalapeno
		slave3 : ('hello world', lambda srv, run_id, accum: logger.info('hello world from %s' % run_id)),
		slave4 : ('hello world', lambda srv, run_id, accum: logger.info('hello world from %s' % run_id)), },
	{	
		slave1 : ('purge remote', lambda srv, run_id, accum: remove_remote_location(srv, 'test_framework')),					 
		slave2 : ('purge remote', lambda srv, run_id, accum: remove_remote_location(srv, 'test_framework')),					 
		slave3 : ('purge remote', lambda srv, run_id, accum: remove_remote_location(srv, 'test_framework')),					 
		slave4 : ('purge remote', lambda srv, run_id, accum: remove_remote_location(srv, 'test_framework'))
	},					 
	
	{ 	slave1 : ('setup script 1.', deploy(rjoin(ipath, 'slave_scripts', 'slave_script_1.py'), 'test_framework/slave1')),
		slave2 : ('setup script 2.', deploy(rjoin(ipath, 'slave_scripts', 'slave_script_2.py'), 'test_framework/slave2')),
		slave3 : ('setup script 2. again ', deploy(rjoin(ipath, 'slave_scripts', 'slave_script_2.py'), 'test_framework/slave3')),
		slave4 : ('setup folder with script 3, 4, 5', deploy(rjoin(ipath, 'some_other_slave_scripts'), 'test_framework/slave4')), },
	
	{	slave4 : ('echo', lambda srv, run_id, accum : 
					execute_injected_python_script(srv, 'slave_script_3.py', getRoot(accum), 
						{'Sherlock Holmes':'Arthur Conan Doyle', 'Conan the barbarian': 'Robert E. Howard'})),
	
		slave1 : ('google search', lambda srv, run_id, accum : 
					execute_injected_python_script(srv, 'slave_script_1.py', getRoot(accum), 
						{'query':'Oryx and Crake'})), },
	
	{ 	slave4 : ('guess a number', lambda srv, a, accum : 
					execute_injected_python_script(srv, 'slave_script_4.py', getRoot(accum), 
						{'Dragon_no_1' : 'The Jabberwocky', 'Dragon_no_2' : 'The Tarasque'})),	  },
	
	{	slave3: ('produce local results', lambda a, b, c: ('some local results', [42,43,44,45])), },
	
	{ 	slave1 : ('fetch results and cleanup remote', fetch_and_teardown),
		slave2 : ('fetch results and cleanup remote', fetch_and_teardown),
		slave3 : ('fetch results and cleanup remote', fetch_and_teardown),
		slave4 : ('fetch results and cleanup remote', fetch_and_teardown), },