| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | /**************************************************************************/ | 
					
						
							|  |  |  | /*  test_gdscript.cpp                                                     */ | 
					
						
							|  |  |  | /**************************************************************************/ | 
					
						
							|  |  |  | /*                         This file is part of:                          */ | 
					
						
							|  |  |  | /*                             GODOT ENGINE                               */ | 
					
						
							|  |  |  | /*                        https://godotengine.org                         */ | 
					
						
							|  |  |  | /**************************************************************************/ | 
					
						
							|  |  |  | /* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */ | 
					
						
							|  |  |  | /* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur.                  */ | 
					
						
							|  |  |  | /*                                                                        */ | 
					
						
							|  |  |  | /* Permission is hereby granted, free of charge, to any person obtaining  */ | 
					
						
							|  |  |  | /* a copy of this software and associated documentation files (the        */ | 
					
						
							|  |  |  | /* "Software"), to deal in the Software without restriction, including    */ | 
					
						
							|  |  |  | /* without limitation the rights to use, copy, modify, merge, publish,    */ | 
					
						
							|  |  |  | /* distribute, sublicense, and/or sell copies of the Software, and to     */ | 
					
						
							|  |  |  | /* permit persons to whom the Software is furnished to do so, subject to  */ | 
					
						
							|  |  |  | /* the following conditions:                                              */ | 
					
						
							|  |  |  | /*                                                                        */ | 
					
						
							|  |  |  | /* The above copyright notice and this permission notice shall be         */ | 
					
						
							|  |  |  | /* included in all copies or substantial portions of the Software.        */ | 
					
						
							|  |  |  | /*                                                                        */ | 
					
						
							|  |  |  | /* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,        */ | 
					
						
							|  |  |  | /* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF     */ | 
					
						
							|  |  |  | /* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. */ | 
					
						
							|  |  |  | /* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY   */ | 
					
						
							|  |  |  | /* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,   */ | 
					
						
							|  |  |  | /* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE      */ | 
					
						
							|  |  |  | /* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.                 */ | 
					
						
							|  |  |  | /**************************************************************************/ | 
					
						
							| 
									
										
										
										
											2018-01-05 00:50:27 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | #include "test_gdscript.h"
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-06-13 16:56:21 +02:00
										 |  |  | #include "../gdscript_analyzer.h"
 | 
					
						
							|  |  |  | #include "../gdscript_compiler.h"
 | 
					
						
							|  |  |  | #include "../gdscript_parser.h"
 | 
					
						
							|  |  |  | #include "../gdscript_tokenizer.h"
 | 
					
						
							| 
									
										
										
										
											2024-01-22 11:31:55 -03:00
										 |  |  | #include "../gdscript_tokenizer_buffer.h"
 | 
					
						
							| 
									
										
										
										
											2023-06-13 16:56:21 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-11-07 19:33:38 -03:00
										 |  |  | #include "core/config/project_settings.h"
 | 
					
						
							| 
									
										
										
										
											2021-06-11 14:51:48 +02:00
										 |  |  | #include "core/io/file_access.h"
 | 
					
						
							| 
									
										
										
										
											2018-09-11 18:13:45 +02:00
										 |  |  | #include "core/os/os.h"
 | 
					
						
							| 
									
										
										
										
											2020-11-07 19:33:38 -03:00
										 |  |  | #include "core/string/string_builder.h"
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-05-01 19:14:56 -03:00
										 |  |  | #ifdef TOOLS_ENABLED
 | 
					
						
							| 
									
										
										
										
											2025-06-10 16:47:26 +02:00
										 |  |  | #include "editor/settings/editor_settings.h"
 | 
					
						
							| 
									
										
										
										
											2020-05-01 19:14:56 -03:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-04-07 10:12:51 -03:00
										 |  |  | namespace GDScriptTests { | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-05-01 19:14:56 -03:00
										 |  |  | static void test_tokenizer(const String &p_code, const Vector<String> &p_lines) { | 
					
						
							| 
									
										
										
										
											2024-01-22 11:31:55 -03:00
										 |  |  | 	GDScriptTokenizerText tokenizer; | 
					
						
							| 
									
										
										
										
											2020-05-01 19:14:56 -03:00
										 |  |  | 	tokenizer.set_source_code(p_code); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-05-01 19:14:56 -03:00
										 |  |  | 	int tab_size = 4; | 
					
						
							|  |  |  | #ifdef TOOLS_ENABLED
 | 
					
						
							|  |  |  | 	if (EditorSettings::get_singleton()) { | 
					
						
							| 
									
										
										
										
											2021-08-15 18:14:46 +01:00
										 |  |  | 		tab_size = EditorSettings::get_singleton()->get_setting("text_editor/behavior/indent/size"); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2020-05-01 19:14:56 -03:00
										 |  |  | #endif // TOOLS_ENABLED
 | 
					
						
							|  |  |  | 	String tab = String(" ").repeat(tab_size); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-05-01 19:14:56 -03:00
										 |  |  | 	GDScriptTokenizer::Token current = tokenizer.scan(); | 
					
						
							|  |  |  | 	while (current.type != GDScriptTokenizer::Token::TK_EOF) { | 
					
						
							|  |  |  | 		StringBuilder token; | 
					
						
							|  |  |  | 		token += " --> "; // Padding for line number.
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2025-05-21 18:16:20 +03:00
										 |  |  | 		if (current.start_line != current.end_line) { | 
					
						
							|  |  |  | 			// Print "vvvvvv" to point at the token.
 | 
					
						
							|  |  |  | 			StringBuilder pointer; | 
					
						
							|  |  |  | 			pointer += "     "; // Padding for line number.
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			int line_width = 0; | 
					
						
							|  |  |  | 			if (current.start_line - 1 >= 0 && current.start_line - 1 < p_lines.size()) { | 
					
						
							|  |  |  | 				line_width = p_lines[current.start_line - 1].replace("\t", tab).length(); | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			const int offset = MAX(0, current.start_column - 1); | 
					
						
							|  |  |  | 			const int width = MAX(0, line_width - current.start_column + 1); | 
					
						
							|  |  |  | 			pointer += String::chr(' ').repeat(offset) + String::chr('v').repeat(width); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			print_line(pointer.as_string()); | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-03-25 10:36:29 -03:00
										 |  |  | 		for (int l = current.start_line; l <= current.end_line && l <= p_lines.size(); l++) { | 
					
						
							| 
									
										
										
										
											2020-05-01 19:14:56 -03:00
										 |  |  | 			print_line(vformat("%04d %s", l, p_lines[l - 1]).replace("\t", tab)); | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-05-01 19:14:56 -03:00
										 |  |  | 		{ | 
					
						
							| 
									
										
										
										
											2025-05-21 18:16:20 +03:00
										 |  |  | 			// Print "^^^^^^" to point at the token.
 | 
					
						
							| 
									
										
										
										
											2020-05-01 19:14:56 -03:00
										 |  |  | 			StringBuilder pointer; | 
					
						
							|  |  |  | 			pointer += "     "; // Padding for line number.
 | 
					
						
							| 
									
										
										
										
											2025-05-21 18:16:20 +03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 			if (current.start_line == current.end_line) { | 
					
						
							|  |  |  | 				const int offset = MAX(0, current.start_column - 1); | 
					
						
							|  |  |  | 				const int width = MAX(0, current.end_column - current.start_column); | 
					
						
							|  |  |  | 				pointer += String::chr(' ').repeat(offset) + String::chr('^').repeat(width); | 
					
						
							|  |  |  | 			} else { | 
					
						
							|  |  |  | 				const int width = MAX(0, current.end_column - 1); | 
					
						
							|  |  |  | 				pointer += String::chr('^').repeat(width); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 			} | 
					
						
							| 
									
										
										
										
											2025-05-21 18:16:20 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-05-01 19:14:56 -03:00
										 |  |  | 			print_line(pointer.as_string()); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-05-01 19:14:56 -03:00
										 |  |  | 		token += current.get_name(); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-05-01 19:14:56 -03:00
										 |  |  | 		if (current.type == GDScriptTokenizer::Token::ERROR || current.type == GDScriptTokenizer::Token::LITERAL || current.type == GDScriptTokenizer::Token::IDENTIFIER || current.type == GDScriptTokenizer::Token::ANNOTATION) { | 
					
						
							|  |  |  | 			token += "("; | 
					
						
							|  |  |  | 			token += Variant::get_type_name(current.literal.get_type()); | 
					
						
							|  |  |  | 			token += ") "; | 
					
						
							|  |  |  | 			token += current.literal; | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-05-01 19:14:56 -03:00
										 |  |  | 		print_line(token.as_string()); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-05-01 19:14:56 -03:00
										 |  |  | 		print_line("-------------------------------------------------------"); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-05-01 19:14:56 -03:00
										 |  |  | 		current = tokenizer.scan(); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-05-01 19:14:56 -03:00
										 |  |  | 	print_line(current.get_name()); // Should be EOF
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-01-22 11:31:55 -03:00
										 |  |  | static void test_tokenizer_buffer(const Vector<uint8_t> &p_buffer, const Vector<String> &p_lines); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void test_tokenizer_buffer(const String &p_code, const Vector<String> &p_lines) { | 
					
						
							| 
									
										
										
										
											2024-01-26 14:49:31 -03:00
										 |  |  | 	Vector<uint8_t> binary = GDScriptTokenizerBuffer::parse_code_string(p_code, GDScriptTokenizerBuffer::COMPRESS_NONE); | 
					
						
							| 
									
										
										
										
											2024-01-22 11:31:55 -03:00
										 |  |  | 	test_tokenizer_buffer(binary, p_lines); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void test_tokenizer_buffer(const Vector<uint8_t> &p_buffer, const Vector<String> &p_lines) { | 
					
						
							|  |  |  | 	GDScriptTokenizerBuffer tokenizer; | 
					
						
							|  |  |  | 	tokenizer.set_code_buffer(p_buffer); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	int tab_size = 4; | 
					
						
							|  |  |  | #ifdef TOOLS_ENABLED
 | 
					
						
							|  |  |  | 	if (EditorSettings::get_singleton()) { | 
					
						
							|  |  |  | 		tab_size = EditorSettings::get_singleton()->get_setting("text_editor/behavior/indent/size"); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | #endif // TOOLS_ENABLED
 | 
					
						
							|  |  |  | 	String tab = String(" ").repeat(tab_size); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	GDScriptTokenizer::Token current = tokenizer.scan(); | 
					
						
							|  |  |  | 	while (current.type != GDScriptTokenizer::Token::TK_EOF) { | 
					
						
							|  |  |  | 		StringBuilder token; | 
					
						
							|  |  |  | 		token += " --> "; // Padding for line number.
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		for (int l = current.start_line; l <= current.end_line && l <= p_lines.size(); l++) { | 
					
						
							|  |  |  | 			print_line(vformat("%04d %s", l, p_lines[l - 1]).replace("\t", tab)); | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		token += current.get_name(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		if (current.type == GDScriptTokenizer::Token::ERROR || current.type == GDScriptTokenizer::Token::LITERAL || current.type == GDScriptTokenizer::Token::IDENTIFIER || current.type == GDScriptTokenizer::Token::ANNOTATION) { | 
					
						
							|  |  |  | 			token += "("; | 
					
						
							|  |  |  | 			token += Variant::get_type_name(current.literal.get_type()); | 
					
						
							|  |  |  | 			token += ") "; | 
					
						
							|  |  |  | 			token += current.literal; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		print_line(token.as_string()); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		print_line("-------------------------------------------------------"); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		current = tokenizer.scan(); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	print_line(current.get_name()); // Should be EOF
 | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-05-01 19:14:56 -03:00
										 |  |  | static void test_parser(const String &p_code, const String &p_script_path, const Vector<String> &p_lines) { | 
					
						
							|  |  |  | 	GDScriptParser parser; | 
					
						
							|  |  |  | 	Error err = parser.parse(p_code, p_script_path, false); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-05-01 19:14:56 -03:00
										 |  |  | 	if (err != OK) { | 
					
						
							|  |  |  | 		const List<GDScriptParser::ParserError> &errors = parser.get_errors(); | 
					
						
							| 
									
										
										
										
											2021-07-15 23:45:57 -04:00
										 |  |  | 		for (const GDScriptParser::ParserError &error : errors) { | 
					
						
							| 
									
										
										
										
											2020-05-01 19:14:56 -03:00
										 |  |  | 			print_line(vformat("%02d:%02d: %s", error.line, error.column, error.message)); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2020-05-01 19:14:56 -03:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2021-03-26 09:03:16 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	GDScriptAnalyzer analyzer(&parser); | 
					
						
							| 
									
										
										
										
											2024-01-22 11:31:55 -03:00
										 |  |  | 	err = analyzer.analyze(); | 
					
						
							| 
									
										
										
										
											2021-03-26 09:03:16 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	if (err != OK) { | 
					
						
							|  |  |  | 		const List<GDScriptParser::ParserError> &errors = parser.get_errors(); | 
					
						
							| 
									
										
										
										
											2021-07-15 23:45:57 -04:00
										 |  |  | 		for (const GDScriptParser::ParserError &error : errors) { | 
					
						
							| 
									
										
										
										
											2021-03-26 09:03:16 -03:00
										 |  |  | 			print_line(vformat("%02d:%02d: %s", error.line, error.column, error.message)); | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-12-15 16:10:56 +00:00
										 |  |  | #ifdef TOOLS_ENABLED
 | 
					
						
							| 
									
										
										
										
											2020-05-01 19:14:56 -03:00
										 |  |  | 	GDScriptParser::TreePrinter printer; | 
					
						
							|  |  |  | 	printer.print_tree(parser); | 
					
						
							| 
									
										
										
										
											2020-12-15 16:10:56 +00:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-11-26 14:50:06 +03:00
										 |  |  | static void disassemble_function(const GDScriptFunction *p_func, const Vector<String> &p_lines) { | 
					
						
							|  |  |  | 	ERR_FAIL_NULL(p_func); | 
					
						
							| 
									
										
										
										
											2022-03-20 13:27:03 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-11-26 14:50:06 +03:00
										 |  |  | 	String arg_string; | 
					
						
							|  |  |  | 	bool is_first_arg = true; | 
					
						
							|  |  |  | 	for (const PropertyInfo &arg_info : p_func->get_method_info().arguments) { | 
					
						
							|  |  |  | 		if (!is_first_arg) { | 
					
						
							|  |  |  | 			arg_string += ", "; | 
					
						
							| 
									
										
										
										
											2022-03-20 13:27:03 -04:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2024-11-26 14:50:06 +03:00
										 |  |  | 		arg_string += arg_info.name; | 
					
						
							|  |  |  | 		is_first_arg = false; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2025-03-30 12:59:05 +03:00
										 |  |  | 	if (p_func->is_vararg()) { | 
					
						
							|  |  |  | 		// `MethodInfo` does not support the rest parameter name.
 | 
					
						
							|  |  |  | 		arg_string += (p_func->get_argument_count() == 0) ? "...args" : ", ...args"; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2024-11-26 14:50:06 +03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	print_line(vformat("Function %s(%s)", p_func->get_name(), arg_string)); | 
					
						
							| 
									
										
										
										
											2022-03-20 13:27:03 -04:00
										 |  |  | #ifdef TOOLS_ENABLED
 | 
					
						
							| 
									
										
										
										
											2024-11-26 14:50:06 +03:00
										 |  |  | 	p_func->disassemble(p_lines); | 
					
						
							| 
									
										
										
										
											2022-03-20 13:27:03 -04:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2024-11-26 14:50:06 +03:00
										 |  |  | 	print_line(""); | 
					
						
							|  |  |  | 	print_line(""); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void recursively_disassemble_functions(const Ref<GDScript> p_script, const Vector<String> &p_lines) { | 
					
						
							|  |  |  | 	print_line(vformat("Class %s", p_script->get_fully_qualified_name())); | 
					
						
							|  |  |  | 	print_line(""); | 
					
						
							|  |  |  | 	print_line(""); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	const GDScriptFunction *implicit_initializer = p_script->get_implicit_initializer(); | 
					
						
							|  |  |  | 	if (implicit_initializer != nullptr) { | 
					
						
							|  |  |  | 		disassemble_function(implicit_initializer, p_lines); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	const GDScriptFunction *implicit_ready = p_script->get_implicit_ready(); | 
					
						
							|  |  |  | 	if (implicit_ready != nullptr) { | 
					
						
							|  |  |  | 		disassemble_function(implicit_ready, p_lines); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	const GDScriptFunction *static_initializer = p_script->get_static_initializer(); | 
					
						
							|  |  |  | 	if (static_initializer != nullptr) { | 
					
						
							|  |  |  | 		disassemble_function(static_initializer, p_lines); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	for (const KeyValue<GDScriptFunction *, GDScript::LambdaInfo> &E : p_script->get_lambda_info()) { | 
					
						
							|  |  |  | 		disassemble_function(E.key, p_lines); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	for (const KeyValue<StringName, GDScriptFunction *> &E : p_script->get_member_functions()) { | 
					
						
							|  |  |  | 		disassemble_function(E.value, p_lines); | 
					
						
							| 
									
										
										
										
											2022-03-20 13:27:03 -04:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-11-26 14:50:06 +03:00
										 |  |  | 	for (const KeyValue<StringName, Ref<GDScript>> &E : p_script->get_subclasses()) { | 
					
						
							|  |  |  | 		recursively_disassemble_functions(E.value, p_lines); | 
					
						
							| 
									
										
										
										
											2022-03-20 13:27:03 -04:00
										 |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-08-17 10:00:42 -03:00
										 |  |  | static void test_compiler(const String &p_code, const String &p_script_path, const Vector<String> &p_lines) { | 
					
						
							|  |  |  | 	GDScriptParser parser; | 
					
						
							|  |  |  | 	Error err = parser.parse(p_code, p_script_path, false); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (err != OK) { | 
					
						
							|  |  |  | 		print_line("Error in parser:"); | 
					
						
							|  |  |  | 		const List<GDScriptParser::ParserError> &errors = parser.get_errors(); | 
					
						
							| 
									
										
										
										
											2021-07-15 23:45:57 -04:00
										 |  |  | 		for (const GDScriptParser::ParserError &error : errors) { | 
					
						
							| 
									
										
										
										
											2020-08-17 10:00:42 -03:00
										 |  |  | 			print_line(vformat("%02d:%02d: %s", error.line, error.column, error.message)); | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		return; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	GDScriptAnalyzer analyzer(&parser); | 
					
						
							|  |  |  | 	err = analyzer.analyze(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (err != OK) { | 
					
						
							|  |  |  | 		print_line("Error in analyzer:"); | 
					
						
							|  |  |  | 		const List<GDScriptParser::ParserError> &errors = parser.get_errors(); | 
					
						
							| 
									
										
										
										
											2021-07-15 23:45:57 -04:00
										 |  |  | 		for (const GDScriptParser::ParserError &error : errors) { | 
					
						
							| 
									
										
										
										
											2020-08-17 10:00:42 -03:00
										 |  |  | 			print_line(vformat("%02d:%02d: %s", error.line, error.column, error.message)); | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		return; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	GDScriptCompiler compiler; | 
					
						
							|  |  |  | 	Ref<GDScript> script; | 
					
						
							| 
									
										
										
										
											2021-06-17 16:03:09 -06:00
										 |  |  | 	script.instantiate(); | 
					
						
							| 
									
										
										
										
											2020-08-17 10:00:42 -03:00
										 |  |  | 	script->set_path(p_script_path); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	err = compiler.compile(&parser, script.ptr(), false); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (err) { | 
					
						
							|  |  |  | 		print_line("Error in compiler:"); | 
					
						
							|  |  |  | 		print_line(vformat("%02d:%02d: %s", compiler.get_error_line(), compiler.get_error_column(), compiler.get_error())); | 
					
						
							|  |  |  | 		return; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-03-20 13:27:03 -04:00
										 |  |  | 	recursively_disassemble_functions(script, p_lines); | 
					
						
							| 
									
										
										
										
											2020-08-17 10:00:42 -03:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-08-18 17:24:45 +03:00
										 |  |  | void test(TestType p_type) { | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	List<String> cmdlargs = OS::get_singleton()->get_cmdline_args(); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-12-15 12:04:21 +00:00
										 |  |  | 	if (cmdlargs.is_empty()) { | 
					
						
							| 
									
										
										
										
											2020-08-18 17:24:45 +03:00
										 |  |  | 		return; | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	String test = cmdlargs.back()->get(); | 
					
						
							| 
									
										
										
										
											2024-01-22 11:31:55 -03:00
										 |  |  | 	if (!test.ends_with(".gd") && !test.ends_with(".gdc")) { | 
					
						
							| 
									
										
										
										
											2019-02-10 14:54:16 +01:00
										 |  |  | 		print_line("This test expects a path to a GDScript file as its last parameter. Got: " + test); | 
					
						
							| 
									
										
										
										
											2020-08-18 17:24:45 +03:00
										 |  |  | 		return; | 
					
						
							| 
									
										
										
										
											2019-02-10 14:54:16 +01:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-03-23 11:08:58 +02:00
										 |  |  | 	Ref<FileAccess> fa = FileAccess::open(test, FileAccess::READ); | 
					
						
							|  |  |  | 	ERR_FAIL_COND_MSG(fa.is_null(), "Could not open file: " + test); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-10-14 12:31:06 -03:00
										 |  |  | 	// Initialize the language for the test routine.
 | 
					
						
							| 
									
										
										
										
											2021-04-07 10:12:51 -03:00
										 |  |  | 	init_language(fa->get_path_absolute().get_base_dir()); | 
					
						
							| 
									
										
										
										
											2020-10-14 12:31:06 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-07-13 13:05:42 -03:00
										 |  |  | 	// Load global classes.
 | 
					
						
							|  |  |  | 	TypedArray<Dictionary> script_classes = ProjectSettings::get_singleton()->get_global_class_list(); | 
					
						
							|  |  |  | 	for (int i = 0; i < script_classes.size(); i++) { | 
					
						
							|  |  |  | 		Dictionary c = script_classes[i]; | 
					
						
							| 
									
										
										
										
											2025-01-08 13:21:47 +01:00
										 |  |  | 		if (!c.has("class") || !c.has("language") || !c.has("path") || !c.has("base") || !c.has("is_abstract") || !c.has("is_tool")) { | 
					
						
							| 
									
										
										
										
											2023-07-13 13:05:42 -03:00
										 |  |  | 			continue; | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2025-01-08 13:21:47 +01:00
										 |  |  | 		ScriptServer::add_global_class(c["class"], c["base"], c["language"], c["path"], c["is_abstract"], c["is_tool"]); | 
					
						
							| 
									
										
										
										
											2023-07-13 13:05:42 -03:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	Vector<uint8_t> buf; | 
					
						
							| 
									
										
										
										
											2021-05-25 07:58:49 +01:00
										 |  |  | 	uint64_t flen = fa->get_length(); | 
					
						
							|  |  |  | 	buf.resize(flen + 1); | 
					
						
							| 
									
										
										
										
											2018-07-25 03:11:03 +02:00
										 |  |  | 	fa->get_buffer(buf.ptrw(), flen); | 
					
						
							|  |  |  | 	buf.write[flen] = 0; | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2025-03-30 19:56:38 +02:00
										 |  |  | 	String code = String::utf8((const char *)&buf[0]); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	Vector<String> lines; | 
					
						
							|  |  |  | 	int last = 0; | 
					
						
							|  |  |  | 	for (int i = 0; i <= code.length(); i++) { | 
					
						
							|  |  |  | 		if (code[i] == '\n' || code[i] == 0) { | 
					
						
							|  |  |  | 			lines.push_back(code.substr(last, i - last)); | 
					
						
							|  |  |  | 			last = i + 1; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-05-01 19:14:56 -03:00
										 |  |  | 	switch (p_type) { | 
					
						
							|  |  |  | 		case TEST_TOKENIZER: | 
					
						
							|  |  |  | 			test_tokenizer(code, lines); | 
					
						
							|  |  |  | 			break; | 
					
						
							| 
									
										
										
										
											2024-01-22 11:31:55 -03:00
										 |  |  | 		case TEST_TOKENIZER_BUFFER: | 
					
						
							|  |  |  | 			if (test.ends_with(".gdc")) { | 
					
						
							|  |  |  | 				test_tokenizer_buffer(buf, lines); | 
					
						
							|  |  |  | 			} else { | 
					
						
							|  |  |  | 				test_tokenizer_buffer(code, lines); | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 			break; | 
					
						
							| 
									
										
										
										
											2020-05-01 19:14:56 -03:00
										 |  |  | 		case TEST_PARSER: | 
					
						
							|  |  |  | 			test_parser(code, test, lines); | 
					
						
							|  |  |  | 			break; | 
					
						
							|  |  |  | 		case TEST_COMPILER: | 
					
						
							| 
									
										
										
										
											2020-08-17 10:00:42 -03:00
										 |  |  | 			test_compiler(code, test, lines); | 
					
						
							|  |  |  | 			break; | 
					
						
							| 
									
										
										
										
											2020-05-01 19:14:56 -03:00
										 |  |  | 		case TEST_BYTECODE: | 
					
						
							|  |  |  | 			print_line("Not implemented."); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2020-10-14 12:31:06 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-04-07 10:12:51 -03:00
										 |  |  | 	finish_language(); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2021-04-07 10:12:51 -03:00
										 |  |  | } // namespace GDScriptTests
 |