diff ikweb/tools/functional_test.py @ 280:b5897d63f44e

work merged
author "Rex Tsai <chihchun@kalug.linux.org.tw>"
date Tue, 02 Dec 2008 17:20:56 +0800
parents 7747bbe5b68e
children
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/ikweb/tools/functional_test.py	Tue Dec 02 17:20:56 2008 +0800
@@ -0,0 +1,29 @@
+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)()