mirror of
https://github.com/netsurf-browser/netsurf
synced 2024-12-28 06:49:41 +03:00
allow render checks to be empty
This commit is contained in:
parent
2db39b1f7d
commit
5bd54f4c0c
@ -227,18 +227,19 @@ def run_test_step_action_plot_check(ctx, step):
|
||||
if plot[0] == 'BITMAP':
|
||||
bitmaps.append(plot[1:])
|
||||
all_text = " ".join(all_text)
|
||||
for check in checks:
|
||||
if 'text-contains' in check.keys():
|
||||
print("Check {} in {}".format(repr(check['text-contains']),repr(all_text)))
|
||||
assert(check['text-contains'] in all_text)
|
||||
elif 'text-not-contains' in check.keys():
|
||||
print("Check {} NOT in {}".format(repr(check['text-not-contains']),repr(all_text)))
|
||||
assert(check['text-not-contains'] not in all_text)
|
||||
elif 'bitmap-count' in check.keys():
|
||||
print("Check bitmap count is {}".format(int(check['bitmap-count'])))
|
||||
assert(len(bitmaps) == int(check['bitmap-count']))
|
||||
else:
|
||||
raise AssertionError("Unknown check: {}".format(repr(check)))
|
||||
if checks is not None:
|
||||
for check in checks:
|
||||
if 'text-contains' in check.keys():
|
||||
print("Check {} in {}".format(repr(check['text-contains']),repr(all_text)))
|
||||
assert(check['text-contains'] in all_text)
|
||||
elif 'text-not-contains' in check.keys():
|
||||
print("Check {} NOT in {}".format(repr(check['text-not-contains']),repr(all_text)))
|
||||
assert(check['text-not-contains'] not in all_text)
|
||||
elif 'bitmap-count' in check.keys():
|
||||
print("Check bitmap count is {}".format(int(check['bitmap-count'])))
|
||||
assert(len(bitmaps) == int(check['bitmap-count']))
|
||||
else:
|
||||
raise AssertionError("Unknown check: {}".format(repr(check)))
|
||||
|
||||
def run_test_step_action_timer_start(ctx, step):
|
||||
print(get_indent(ctx) + "Action: " + step["action"])
|
||||
|
Loading…
Reference in New Issue
Block a user