-
Notifications
You must be signed in to change notification settings - Fork 35
Expand file tree
/
Copy pathtest_functions.py
More file actions
152 lines (117 loc) · 3.48 KB
/
Copy pathtest_functions.py
File metadata and controls
152 lines (117 loc) · 3.48 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
import curllib
"""
('/', MainIndex),
('/root', Root),
('/increment', Increment),
('/batchincrement', BatchIncrement),
('/getcount', GetCount),
('/batchgetcount', BatchGetCount),
('/batchputcount', BatchPutCount),
('/putcount', PutCount),
('/batchdeletecount', BatchDeleteCount),
('/deletecount', DeleteCount),
('/query', Query),
('/giveallowance', GiveAllowance),
('/batchgiveallowance', BatchGiveAllowance),
('/createparentchild', CreateParentChild),
('/deleteparent', DeleteParent),
('/deletechild', DeleteChild),
('/batchdeleteparent', BatchDeleteParent),
('/batchdeletechild', BatchDeleteChild)
"""
def __curl(ip, port, method, args):
return curllib.curl_post(ip, port, False, method, args)
def MainIndex(ip, port):
return curllib.curl_post(ip, port, False, None, None)
def Root(ip, port):
return curllib.curl_post(ip, port, False, "root", None)
def Query(ip, port, type):
args = {}
args['type'] = type
return __curl(ip, port, "query", args)
def Increment(ip, port, key, value):
args = {}
args['key'] = key
args['value'] = int(value)
return __curl(ip, port, "increment", args)
def BatchIncrement(ip, port, keys, value):
if isinstance(keys,list):
keys = ':'.join(keys)
args = {}
args['keys'] = keys
args['value'] = str(value)
return __curl(ip, port, "batchincrement", args)
def GetCount(ip, port, key):
args = {}
args['key'] = key
return __curl(ip, port, "getcount", args)
def BatchGetCount(ip, port, keys):
if isinstance(keys,list):
keys = ':'.join(keys)
args = {}
args['keys'] = keys
return __curl(ip, port, "batchgetcount", args)
def BatchPutCount(ip, port, keys, value):
if isinstance(keys,list):
keys = ':'.join(keys)
args = {}
args['keys'] = keys
args['value'] = value
return __curl(ip, port, "batchputcount", args)
def PutCount(ip, port, key, value):
args = {}
args['key'] = key
args['value'] = value
return __curl(ip, port, "putcount", args)
def BatchDeleteCount(ip, port, keys):
if isinstance(keys,list):
keys = ':'.join(keys)
args = {}
args['keys'] = keys
return __curl(ip, port, "batchdeletecount", args)
def DeleteCount(ip, port, key):
args = {}
args['key'] = key
return __curl(ip, port, "deletecount", args)
def Query(ip, port, type):
args = {}
args['type'] = type
return __curl(ip, port, "query", args)
def GiveAllowance(ip, port, parent, child, amount):
args = {}
args['parent'] = parent
args['child'] = child
args['amount'] = amount
return __curl(ip, port, "giveallowance", args)
def BatchGiveAllowance(ip, port, parent, child, amount, tries):
args = {}
args['parent'] = parent
args['child'] = child
args['amount'] = amount
args['tries'] = tries
return __curl(ip, port, "batchgiveallowance", args)
def CreateParentChild(ip, port, parent, child):
args = {}
args['parent'] = parent
args['child'] = child
return __curl(ip, port, "createparentchild", args)
def DeleteParent(ip, port, key):
args = {}
args['key'] = key
return __curl(ip, port, "deleteparent", args)
def DeleteChild(ip, port, key):
args = {}
args['key'] = key
return __curl(ip, port, "deletechild", args)
def BatchDeleteParent(ip, port, keys):
if isinstance(keys,list):
keys = ':'.join(keys)
args = {}
args['keys'] = keys
return __curl(ip, port, "batchdeletechild", args)
def BatchDeleteChild(ip, port, keys):
if isinstance(keys,list):
keys = ':'.join(keys)
args = {}
args['keys'] = keys
return __curl(ip, port, "batchdeletechild", args)