Some checks failed
Create tag and build when new code gets to main / Export (push) Failing after 6m41s
55 lines
1.7 KiB
GDScript
55 lines
1.7 KiB
GDScript
class_name GdAssertReports
|
|
extends RefCounted
|
|
|
|
const LAST_ERROR = "last_assert_error_message"
|
|
const LAST_ERROR_LINE = "last_assert_error_line"
|
|
|
|
|
|
static func report_success() -> void:
|
|
GdUnitSignals.instance().gdunit_set_test_failed.emit(false)
|
|
GdAssertReports.set_last_error_line_number(-1)
|
|
Engine.remove_meta(LAST_ERROR)
|
|
|
|
|
|
static func report_warning(message :String, line_number :int) -> void:
|
|
GdUnitSignals.instance().gdunit_set_test_failed.emit(false)
|
|
send_report(GdUnitReport.new().create(GdUnitReport.WARN, line_number, message))
|
|
|
|
|
|
static func report_error(message:String, line_number :int) -> void:
|
|
GdUnitSignals.instance().gdunit_set_test_failed.emit(true)
|
|
GdAssertReports.set_last_error_line_number(line_number)
|
|
Engine.set_meta(LAST_ERROR, message)
|
|
# if we expect to fail we handle as success test
|
|
if _do_expect_assert_failing():
|
|
return
|
|
send_report(GdUnitReport.new().create(GdUnitReport.FAILURE, line_number, message))
|
|
|
|
|
|
static func reset_last_error_line_number() -> void:
|
|
Engine.remove_meta(LAST_ERROR_LINE)
|
|
|
|
|
|
static func set_last_error_line_number(line_number :int) -> void:
|
|
Engine.set_meta(LAST_ERROR_LINE, line_number)
|
|
|
|
|
|
static func get_last_error_line_number() -> int:
|
|
if Engine.has_meta(LAST_ERROR_LINE):
|
|
return Engine.get_meta(LAST_ERROR_LINE)
|
|
return -1
|
|
|
|
|
|
static func _do_expect_assert_failing() -> bool:
|
|
if Engine.has_meta(GdUnitConstants.EXPECT_ASSERT_REPORT_FAILURES):
|
|
return Engine.get_meta(GdUnitConstants.EXPECT_ASSERT_REPORT_FAILURES)
|
|
return false
|
|
|
|
|
|
static func current_failure() -> String:
|
|
return Engine.get_meta(LAST_ERROR)
|
|
|
|
|
|
static func send_report(report :GdUnitReport) -> void:
|
|
GdUnitThreadManager.get_current_context().get_execution_context().add_report(report)
|