view ikweb/tools/functional_test.py @ 377:5d6f429e5f19 tip

fixed a typo.
author "Rex Tsai <chihchun@kalug.linux.org.tw>"
date Tue, 14 Apr 2009 17:16:43 +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)()