2022-06-02 04:13:43 +02:00
|
|
|
# ------------------------------------------------------------------------------
|
2024-01-06 11:27:15 +01:00
|
|
|
# This class handles calling out to the test parser and maintaining an array of
|
|
|
|
# collected_script.gd. This is used for both calling the tests and tracking
|
|
|
|
# the results of each script and test's execution.
|
2022-06-02 04:13:43 +02:00
|
|
|
#
|
2024-01-06 11:27:15 +01:00
|
|
|
# This also handles exporting and importing tests.
|
2022-06-02 04:13:43 +02:00
|
|
|
# ------------------------------------------------------------------------------
|
2024-01-06 11:27:15 +01:00
|
|
|
var CollectedScript = load("res://addons/gut/collected_script.gd")
|
|
|
|
var CollectedTest = load("res://addons/gut/collected_test.gd")
|
2023-01-07 20:26:17 +01:00
|
|
|
|
2023-01-20 23:34:39 +01:00
|
|
|
var _test_prefix = "test_"
|
|
|
|
var _test_class_prefix = "Test"
|
|
|
|
var _utils = load("res://addons/gut/utils.gd").get_instance()
|
2022-06-02 04:13:43 +02:00
|
|
|
var _lgr = _utils.get_logger()
|
|
|
|
|
2024-01-06 11:27:15 +01:00
|
|
|
# Array of CollectedScripts.
|
|
|
|
var scripts = []
|
|
|
|
|
2023-01-20 23:34:39 +01:00
|
|
|
|
2022-06-02 04:13:43 +02:00
|
|
|
func _does_inherit_from_test(thing):
|
|
|
|
var base_script = thing.get_base_script()
|
|
|
|
var to_return = false
|
2023-01-20 23:34:39 +01:00
|
|
|
if base_script != null:
|
2022-06-02 04:13:43 +02:00
|
|
|
var base_path = base_script.get_path()
|
2023-01-20 23:34:39 +01:00
|
|
|
if base_path == "res://addons/gut/test.gd":
|
2022-06-02 04:13:43 +02:00
|
|
|
to_return = true
|
|
|
|
else:
|
|
|
|
to_return = _does_inherit_from_test(base_script)
|
|
|
|
return to_return
|
|
|
|
|
|
|
|
|
2024-01-06 11:27:15 +01:00
|
|
|
func _populate_tests(test_script):
|
2023-01-20 23:34:39 +01:00
|
|
|
var script = test_script.load_script()
|
|
|
|
if script == null:
|
|
|
|
print(" !!! ", test_script.path, " could not be loaded")
|
2023-01-07 20:26:17 +01:00
|
|
|
return false
|
|
|
|
|
|
|
|
test_script.is_loaded = true
|
|
|
|
var methods = script.get_script_method_list()
|
2022-06-02 04:13:43 +02:00
|
|
|
for i in range(methods.size()):
|
2023-01-20 23:34:39 +01:00
|
|
|
var name = methods[i]["name"]
|
|
|
|
if name.begins_with(_test_prefix):
|
2024-01-06 11:27:15 +01:00
|
|
|
var t = CollectedTest.new()
|
2022-06-02 04:13:43 +02:00
|
|
|
t.name = name
|
2023-01-20 23:34:39 +01:00
|
|
|
t.arg_count = methods[i]["args"].size()
|
2022-06-02 04:13:43 +02:00
|
|
|
test_script.tests.append(t)
|
|
|
|
|
2023-01-20 23:34:39 +01:00
|
|
|
|
2022-06-02 04:13:43 +02:00
|
|
|
func _get_inner_test_class_names(loaded):
|
|
|
|
var inner_classes = []
|
|
|
|
var const_map = loaded.get_script_constant_map()
|
|
|
|
for key in const_map:
|
|
|
|
var thing = const_map[key]
|
2023-01-20 23:34:39 +01:00
|
|
|
if _utils.is_gdscript(thing):
|
|
|
|
if key.begins_with(_test_class_prefix):
|
|
|
|
if _does_inherit_from_test(thing):
|
2022-06-02 04:13:43 +02:00
|
|
|
inner_classes.append(key)
|
|
|
|
else:
|
2023-01-20 23:34:39 +01:00
|
|
|
_lgr.warn(
|
2024-01-06 11:27:15 +01:00
|
|
|
str("Ignoring Inner Class ", key, " because it does not extend GutTest")
|
2023-01-20 23:34:39 +01:00
|
|
|
)
|
2022-06-02 04:13:43 +02:00
|
|
|
|
|
|
|
# This could go deeper and find inner classes within inner classes
|
|
|
|
# but requires more experimentation. Right now I'm keeping it at
|
|
|
|
# one level since that is what the previous version did and there
|
|
|
|
# has been no demand for deeper nesting.
|
|
|
|
# _populate_inner_test_classes(thing)
|
|
|
|
return inner_classes
|
|
|
|
|
2023-01-20 23:34:39 +01:00
|
|
|
|
2022-06-02 04:13:43 +02:00
|
|
|
func _parse_script(test_script):
|
|
|
|
var inner_classes = []
|
|
|
|
var scripts_found = []
|
|
|
|
|
|
|
|
var loaded = load(test_script.path)
|
2023-01-20 23:34:39 +01:00
|
|
|
if _does_inherit_from_test(loaded):
|
2022-06-02 04:13:43 +02:00
|
|
|
_populate_tests(test_script)
|
|
|
|
scripts_found.append(test_script.path)
|
|
|
|
inner_classes = _get_inner_test_class_names(loaded)
|
2024-01-06 11:27:15 +01:00
|
|
|
else:
|
|
|
|
return []
|
2022-06-02 04:13:43 +02:00
|
|
|
|
|
|
|
for i in range(inner_classes.size()):
|
|
|
|
var loaded_inner = loaded.get(inner_classes[i])
|
2023-01-20 23:34:39 +01:00
|
|
|
if _does_inherit_from_test(loaded_inner):
|
2024-01-06 11:27:15 +01:00
|
|
|
var ts = CollectedScript.new(_utils, _lgr)
|
2022-06-02 04:13:43 +02:00
|
|
|
ts.path = test_script.path
|
|
|
|
ts.inner_class_name = inner_classes[i]
|
|
|
|
_populate_tests(ts)
|
|
|
|
scripts.append(ts)
|
2023-01-20 23:34:39 +01:00
|
|
|
scripts_found.append(test_script.path + "[" + inner_classes[i] + "]")
|
2022-06-02 04:13:43 +02:00
|
|
|
|
|
|
|
return scripts_found
|
|
|
|
|
2023-01-20 23:34:39 +01:00
|
|
|
|
2022-06-02 04:13:43 +02:00
|
|
|
# -----------------
|
|
|
|
# Public
|
|
|
|
# -----------------
|
|
|
|
func add_script(path):
|
|
|
|
# SHORTCIRCUIT
|
2023-01-20 23:34:39 +01:00
|
|
|
if has_script(path):
|
2022-06-02 04:13:43 +02:00
|
|
|
return []
|
|
|
|
|
|
|
|
# SHORTCIRCUIT
|
2023-01-20 23:34:39 +01:00
|
|
|
if !FileAccess.file_exists(path):
|
|
|
|
_lgr.error("Could not find script: " + path)
|
2022-06-02 04:13:43 +02:00
|
|
|
return
|
|
|
|
|
2024-01-06 11:27:15 +01:00
|
|
|
var ts = CollectedScript.new(_utils, _lgr)
|
2022-06-02 04:13:43 +02:00
|
|
|
ts.path = path
|
2024-01-06 11:27:15 +01:00
|
|
|
# Append right away because if we don't test_doubler.gd.TestInitParameters
|
|
|
|
# will HARD crash. I couldn't figure out what was causing the issue but
|
|
|
|
# appending right away, and then removing if it's not valid seems to fix
|
|
|
|
# things. It might have to do with the ordering of the test classes in
|
|
|
|
# the test collecter. I'm not really sure.
|
2022-06-02 04:13:43 +02:00
|
|
|
scripts.append(ts)
|
2024-01-06 11:27:15 +01:00
|
|
|
var parse_results = _parse_script(ts)
|
|
|
|
|
|
|
|
if parse_results.find(path) == -1:
|
|
|
|
_lgr.warn(str("Ignoring script ", path, " because it does not extend GutTest"))
|
|
|
|
scripts.remove_at(scripts.find(ts))
|
|
|
|
|
|
|
|
return parse_results
|
2022-06-02 04:13:43 +02:00
|
|
|
|
2023-01-20 23:34:39 +01:00
|
|
|
|
2022-06-02 04:13:43 +02:00
|
|
|
func clear():
|
|
|
|
scripts.clear()
|
|
|
|
|
2023-01-20 23:34:39 +01:00
|
|
|
|
2022-06-02 04:13:43 +02:00
|
|
|
func has_script(path):
|
|
|
|
var found = false
|
|
|
|
var idx = 0
|
2023-01-20 23:34:39 +01:00
|
|
|
while idx < scripts.size() and !found:
|
|
|
|
if scripts[idx].get_full_name() == path:
|
2022-06-02 04:13:43 +02:00
|
|
|
found = true
|
|
|
|
else:
|
|
|
|
idx += 1
|
|
|
|
return found
|
|
|
|
|
2023-01-20 23:34:39 +01:00
|
|
|
|
2022-06-02 04:13:43 +02:00
|
|
|
func export_tests(path):
|
|
|
|
var success = true
|
|
|
|
var f = ConfigFile.new()
|
|
|
|
for i in range(scripts.size()):
|
2024-01-06 11:27:15 +01:00
|
|
|
scripts[i].export_to(f, str("CollectedScript-", i))
|
2022-06-02 04:13:43 +02:00
|
|
|
var result = f.save(path)
|
2023-01-20 23:34:39 +01:00
|
|
|
if result != OK:
|
|
|
|
_lgr.error(str("Could not save exported tests to [", path, "]. Error code: ", result))
|
2022-06-02 04:13:43 +02:00
|
|
|
success = false
|
|
|
|
return success
|
|
|
|
|
2023-01-20 23:34:39 +01:00
|
|
|
|
2022-06-02 04:13:43 +02:00
|
|
|
func import_tests(path):
|
|
|
|
var success = false
|
|
|
|
var f = ConfigFile.new()
|
|
|
|
var result = f.load(path)
|
2023-01-20 23:34:39 +01:00
|
|
|
if result != OK:
|
|
|
|
_lgr.error(str("Could not load exported tests from [", path, "]. Error code: ", result))
|
2022-06-02 04:13:43 +02:00
|
|
|
else:
|
|
|
|
var sections = f.get_sections()
|
|
|
|
for key in sections:
|
2024-01-06 11:27:15 +01:00
|
|
|
var ts = CollectedScript.new(_utils, _lgr)
|
2022-06-02 04:13:43 +02:00
|
|
|
ts.import_from(f, key)
|
|
|
|
_populate_tests(ts)
|
|
|
|
scripts.append(ts)
|
|
|
|
success = true
|
|
|
|
return success
|
|
|
|
|
2023-01-20 23:34:39 +01:00
|
|
|
|
2022-06-02 04:13:43 +02:00
|
|
|
func get_script_named(name):
|
2023-01-20 23:34:39 +01:00
|
|
|
return _utils.search_array(scripts, "get_filename_and_inner", name)
|
|
|
|
|
2022-06-02 04:13:43 +02:00
|
|
|
|
|
|
|
func get_test_named(script_name, test_name):
|
|
|
|
var s = get_script_named(script_name)
|
2023-01-20 23:34:39 +01:00
|
|
|
if s != null:
|
2022-06-02 04:13:43 +02:00
|
|
|
return s.get_test_named(test_name)
|
|
|
|
else:
|
|
|
|
return null
|
|
|
|
|
2023-01-20 23:34:39 +01:00
|
|
|
|
2022-06-02 04:13:43 +02:00
|
|
|
func to_s():
|
2023-01-20 23:34:39 +01:00
|
|
|
var to_return = ""
|
2022-06-02 04:13:43 +02:00
|
|
|
for i in range(scripts.size()):
|
|
|
|
to_return += scripts[i].to_s() + "\n"
|
|
|
|
return to_return
|
|
|
|
|
2023-01-20 23:34:39 +01:00
|
|
|
|
2022-06-02 04:13:43 +02:00
|
|
|
# ---------------------
|
|
|
|
# Accessors
|
|
|
|
# ---------------------
|
|
|
|
func get_logger():
|
|
|
|
return _lgr
|
|
|
|
|
2023-01-20 23:34:39 +01:00
|
|
|
|
2022-06-02 04:13:43 +02:00
|
|
|
func set_logger(logger):
|
|
|
|
_lgr = logger
|
|
|
|
|
2023-01-20 23:34:39 +01:00
|
|
|
|
2022-06-02 04:13:43 +02:00
|
|
|
func get_test_prefix():
|
|
|
|
return _test_prefix
|
|
|
|
|
2023-01-20 23:34:39 +01:00
|
|
|
|
2022-06-02 04:13:43 +02:00
|
|
|
func set_test_prefix(test_prefix):
|
|
|
|
_test_prefix = test_prefix
|
|
|
|
|
2023-01-20 23:34:39 +01:00
|
|
|
|
2022-06-02 04:13:43 +02:00
|
|
|
func get_test_class_prefix():
|
|
|
|
return _test_class_prefix
|
|
|
|
|
2023-01-20 23:34:39 +01:00
|
|
|
|
2022-06-02 04:13:43 +02:00
|
|
|
func set_test_class_prefix(test_class_prefix):
|
|
|
|
_test_class_prefix = test_class_prefix
|
2024-01-06 11:27:15 +01:00
|
|
|
|
|
|
|
|
|
|
|
func get_scripts():
|
|
|
|
return scripts
|
|
|
|
|
|
|
|
|
|
|
|
func get_ran_test_count():
|
|
|
|
var count = 0
|
|
|
|
for s in scripts:
|
|
|
|
count += s.get_ran_test_count()
|
|
|
|
return count
|
|
|
|
|
|
|
|
|
|
|
|
func get_ran_script_count():
|
|
|
|
var count = 0
|
|
|
|
for s in scripts:
|
|
|
|
if s.was_run:
|
|
|
|
count += 1
|
|
|
|
return count
|
|
|
|
|
|
|
|
|
|
|
|
func get_test_count():
|
|
|
|
var count = 0
|
|
|
|
for s in scripts:
|
|
|
|
count += s.tests.size()
|
|
|
|
return count
|
|
|
|
|
|
|
|
|
|
|
|
func get_assert_count():
|
|
|
|
var count = 0
|
|
|
|
for s in scripts:
|
|
|
|
count += s.get_assert_count()
|
|
|
|
return count
|
|
|
|
|
|
|
|
|
|
|
|
func get_pass_count():
|
|
|
|
var count = 0
|
|
|
|
for s in scripts:
|
|
|
|
count += s.get_pass_count()
|
|
|
|
return count
|
|
|
|
|
|
|
|
|
|
|
|
func get_fail_count():
|
|
|
|
var count = 0
|
|
|
|
for s in scripts:
|
|
|
|
count += s.get_fail_count()
|
|
|
|
return count
|
|
|
|
|
|
|
|
|
|
|
|
func get_pending_count():
|
|
|
|
var count = 0
|
|
|
|
for s in scripts:
|
|
|
|
count += s.get_pending_count()
|
|
|
|
return count
|