Mercurial > eagle-eye
view ikweb/tools/functional_test.py @ 336:ff816ffffbd8
fixed timing issue
author | "Rex Tsai <chihchun@kalug.linux.org.tw>" |
---|---|
date | Thu, 12 Feb 2009 03:25:20 +0800 |
parents | 7747bbe5b68e |
children |
line wrap: on
line source
from lazy.www import c def create_player(): datas = {'game_id':1, 'army_score_main':10000, 'building_score_main':1000, 'building_score_secondary':100, 'name':'tplayer', 'research_score_main':122, 'research_score_secondary':122, 'score':10000, 'trader_score_secondary':1000000 } c("http://localhost:8080/player/create").post(datas) def edit_player(): datas = {'game_id':1, 'name':'tfplayer' } c("http://localhost:8080/player/edit").post(datas) import sys act = sys.argv[1] modelname = sys.argv[2] funcname = "%s_%s" % (act,modelname) print 'test',funcname eval(funcname)()