mirror of
https://github.com/ton-blockchain/ton
synced 2025-03-09 15:40:10 +00:00
Add try/catch to func stress-tester (#565)
This commit is contained in:
parent
e1be988df5
commit
8bfad35e93
1 changed files with 55 additions and 8 deletions
|
@ -13,7 +13,7 @@ def getenv(name, default=None):
|
|||
print("Environemnt variable", name, "is not set", file=sys.stderr)
|
||||
exit(1)
|
||||
|
||||
VAR_CNT = 5
|
||||
VAR_CNT = 10
|
||||
TMP_DIR = tempfile.mkdtemp()
|
||||
FUNC_EXECUTABLE = getenv("FUNC_EXECUTABLE", "func")
|
||||
FIFT_EXECUTABLE = getenv("FIFT_EXECUTABLE", "fift")
|
||||
|
@ -31,6 +31,15 @@ class State:
|
|||
self.x = x
|
||||
self.vs = [0] * VAR_CNT
|
||||
|
||||
def copy(self):
|
||||
s = State(self.x)
|
||||
s.vs = self.vs.copy()
|
||||
return s
|
||||
|
||||
def copy_from(self, s):
|
||||
self.x = s.x
|
||||
self.vs = s.vs.copy()
|
||||
|
||||
class Code:
|
||||
pass
|
||||
|
||||
|
@ -136,6 +145,37 @@ class CodeRepeat(Code):
|
|||
print(" " * (indent + 1) + "%s += 1;" % var, file=f)
|
||||
print(" " * indent + "} until (%s >= %d);" % (var, self.n), file=f)
|
||||
|
||||
class CodeThrow(Code):
|
||||
def __init__(self):
|
||||
pass
|
||||
|
||||
def execute(self, state):
|
||||
return "EXCEPTION"
|
||||
|
||||
def write(self, f, indent=0):
|
||||
print(" " * indent + "throw(42);", file=f)
|
||||
|
||||
class CodeTryCatch(Code):
|
||||
def __init__(self, c1, c2):
|
||||
self.c1 = c1
|
||||
self.c2 = c2
|
||||
|
||||
def execute(self, state):
|
||||
state0 = state.copy()
|
||||
res = self.c1.execute(state)
|
||||
if res == "EXCEPTION":
|
||||
state.copy_from(state0)
|
||||
return self.c2.execute(state)
|
||||
else:
|
||||
return res
|
||||
|
||||
def write(self, f, indent=0):
|
||||
print(" " * indent + "try {", file=f)
|
||||
self.c1.write(f, indent + 1)
|
||||
print(" " * indent + "} catch (_, _) {", file=f)
|
||||
self.c2.write(f, indent + 1)
|
||||
print(" " * indent + "}", file=f)
|
||||
|
||||
def write_function(f, name, body, inline=False, inline_ref=False, method_id=None):
|
||||
print("_ %s(int x)" % name, file=f, end="")
|
||||
if inline:
|
||||
|
@ -147,31 +187,37 @@ def write_function(f, name, body, inline=False, inline_ref=False, method_id=None
|
|||
print(" {", file=f)
|
||||
for i in range(VAR_CNT):
|
||||
print(" int v%d = 0;" % i, file=f)
|
||||
body.write(f, 1);
|
||||
body.write(f, 1)
|
||||
print("}", file=f)
|
||||
|
||||
def gen_code(xl, xr, with_return, loop_depth=0):
|
||||
def gen_code(xl, xr, with_return, loop_depth=0, try_catch_depth=0, can_throw=False):
|
||||
if try_catch_depth < 3 and random.randint(0, 5) == 0:
|
||||
c1 = gen_code(xl, xr, with_return, loop_depth, try_catch_depth + 1, random.randint(0, 1) == 0)
|
||||
c2 = gen_code(xl, xr, with_return, loop_depth, try_catch_depth + 1, can_throw)
|
||||
return CodeTryCatch(c1, c2)
|
||||
code = []
|
||||
for _ in range(random.randint(0, 2)):
|
||||
if random.randint(0, 3) == 0 and loop_depth < 3:
|
||||
c = gen_code(xl, xr, False, loop_depth + 1)
|
||||
c = gen_code(xl, xr, False, loop_depth + 1, try_catch_depth, can_throw)
|
||||
code.append(CodeRepeat(random.randint(0, 3), c, random.randint(0, 2)))
|
||||
elif xr - xl > 1:
|
||||
xmid = random.randrange(xl + 1, xr)
|
||||
ret = random.choice((0, 0, 0, 0, 0, 1, 2))
|
||||
c1 = gen_code(xl, xmid, ret == 1, loop_depth)
|
||||
c1 = gen_code(xl, xmid, ret == 1, loop_depth, try_catch_depth, can_throw)
|
||||
if random.randrange(5) == 0:
|
||||
c2 = CodeEmpty()
|
||||
else:
|
||||
c2 = gen_code(xmid, xr, ret == 2, loop_depth)
|
||||
c2 = gen_code(xmid, xr, ret == 2, loop_depth, try_catch_depth, can_throw)
|
||||
code.append(CodeIfRange(xl, xmid, c1, c2))
|
||||
if xr - xl == 1 and can_throw and random.randint(0, 5) == 0:
|
||||
code.append(CodeThrow())
|
||||
if with_return:
|
||||
if xr - xl == 1:
|
||||
code.append(CodeReturn(random.randrange(10**9)))
|
||||
else:
|
||||
xmid = random.randrange(xl + 1, xr)
|
||||
c1 = gen_code(xl, xmid, True, loop_depth)
|
||||
c2 = gen_code(xmid, xr, True, loop_depth)
|
||||
c1 = gen_code(xl, xmid, True, loop_depth, try_catch_depth, can_throw)
|
||||
c2 = gen_code(xmid, xr, True, loop_depth, try_catch_depth, can_throw)
|
||||
code.append(CodeIfRange(xl, xmid, c1, c2))
|
||||
for _ in range(random.randint(0, 3)):
|
||||
pos = random.randint(0, len(code))
|
||||
|
@ -203,6 +249,7 @@ def runvm(compiled_fif, xl, xr):
|
|||
output.append(list(map(int, s.split())))
|
||||
return output
|
||||
|
||||
|
||||
cnt_ok = 0
|
||||
cnt_fail = 0
|
||||
for test_id in range(0, 1000000):
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue