Merge pull request #108170 from aaronfranke/test-ps-path-func

Use ProjectSettings path functions instead of hard-coded folder names in tests
This commit is contained in:
Thaddeus Crews
2025-11-17 10:56:31 -06:00
6 changed files with 18 additions and 13 deletions

View File

@ -43,20 +43,21 @@ namespace TestDDS {
String init(const String &p_test, const String &p_copy_target = String()) {
String old_resource_path = TestProjectSettingsInternalsAccessor::resource_path();
Error err;
// Setup project settings since it's needed for the import process.
// Setup project settings with `res://` set to a temporary path.
String project_folder = TestUtils::get_temp_path(p_test.get_file().get_basename());
Ref<DirAccess> da = DirAccess::create(DirAccess::ACCESS_FILESYSTEM);
da->make_dir_recursive(project_folder.path_join(".godot").path_join("imported"));
// Initialize res:// to `project_folder`.
TestProjectSettingsInternalsAccessor::resource_path() = project_folder;
err = ProjectSettings::get_singleton()->setup(project_folder, String(), true);
ProjectSettings *ps = ProjectSettings::get_singleton();
err = ps->setup(project_folder, String(), true);
// Create the imported files folder as the editor import process expects it to exist.
Ref<DirAccess> da = DirAccess::create(DirAccess::ACCESS_RESOURCES);
da->make_dir_recursive(ps->globalize_path(ps->get_imported_files_path()));
if (p_copy_target.is_empty()) {
return old_resource_path;
}
// Copy all the necessary test data files to the res:// directory.
da = DirAccess::create(DirAccess::ACCESS_FILESYSTEM);
String test_data = String("tests/data").path_join(p_test);
da = DirAccess::open(test_data);
CHECK_MESSAGE(da.is_valid(), "Unable to open folder.");