summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Snopek <dsnopek@gmail.com>2024-07-15 11:57:53 -0500
committerDavid Snopek <dsnopek@gmail.com>2024-09-03 16:35:55 -0500
commit1ac33c906e3fd543585d9f16eab5ebf84d1844ec (patch)
tree777e90c214e6362e42220db998ef776b57bc6a43
parent842a7f621f464797aab474e56772338da255d85c (diff)
downloadredot-cpp-1ac33c906e3fd543585d9f16eab5ebf84d1844ec.tar.gz
Add a test to ensure that library path is absolute
(cherry picked from commit 92ace04989bdf8d7d94846f059eeccd723f9b885)
-rw-r--r--test/project/main.gd6
-rw-r--r--test/src/example.cpp8
-rw-r--r--test/src/example.h2
3 files changed, 16 insertions, 0 deletions
diff --git a/test/project/main.gd b/test/project/main.gd
index dadd4de..b2625b9 100644
--- a/test/project/main.gd
+++ b/test/project/main.gd
@@ -270,6 +270,12 @@ func _ready():
assert_equal(example_child.get_value1(), 11)
assert_equal(example_child.get_value2(), 22)
+ # Test that the extension's library path is absolute and valid.
+ var library_path = Example.test_library_path()
+ assert_equal(library_path.begins_with("res://"), false)
+ assert_equal(library_path, ProjectSettings.globalize_path(library_path))
+ assert_equal(FileAccess.file_exists(library_path), true)
+
exit_with_status()
func _on_Example_custom_signal(signal_name, value):
diff --git a/test/src/example.cpp b/test/src/example.cpp
index 84dc176..8075f55 100644
--- a/test/src/example.cpp
+++ b/test/src/example.cpp
@@ -249,6 +249,8 @@ void Example::_bind_methods() {
ClassDB::bind_static_method("Example", D_METHOD("test_static", "a", "b"), &Example::test_static);
ClassDB::bind_static_method("Example", D_METHOD("test_static2"), &Example::test_static2);
+ ClassDB::bind_static_method("Example", D_METHOD("test_library_path"), &Example::test_library_path);
+
{
MethodInfo mi;
mi.arguments.push_back(PropertyInfo(Variant::STRING, "some_argument"));
@@ -709,6 +711,12 @@ String Example::test_use_engine_singleton() const {
return OS::get_singleton()->get_name();
}
+String Example::test_library_path() {
+ String library_path;
+ internal::gdextension_interface_get_library_path(internal::library, library_path._native_ptr());
+ return library_path;
+}
+
void ExampleRuntime::_bind_methods() {
ClassDB::bind_method(D_METHOD("set_prop_value", "value"), &ExampleRuntime::set_prop_value);
ClassDB::bind_method(D_METHOD("get_prop_value"), &ExampleRuntime::get_prop_value);
diff --git a/test/src/example.h b/test/src/example.h
index 59c907a..6d88cf1 100644
--- a/test/src/example.h
+++ b/test/src/example.h
@@ -195,6 +195,8 @@ public:
GDVIRTUAL1(_do_something_virtual_with_control, Control *);
String test_use_engine_singleton() const;
+
+ static String test_library_path();
};
VARIANT_ENUM_CAST(Example::Constants);