2014-02-10 02:10:30 +01:00
|
|
|
/*************************************************************************/
|
|
|
|
/* test_gdscript.cpp */
|
|
|
|
/*************************************************************************/
|
|
|
|
/* This file is part of: */
|
|
|
|
/* GODOT ENGINE */
|
2017-08-27 14:16:55 +02:00
|
|
|
/* https://godotengine.org */
|
2014-02-10 02:10:30 +01:00
|
|
|
/*************************************************************************/
|
2022-01-03 21:27:34 +01:00
|
|
|
/* Copyright (c) 2007-2022 Juan Linietsky, Ariel Manzur. */
|
|
|
|
/* Copyright (c) 2014-2022 Godot Engine contributors (cf. AUTHORS.md). */
|
2014-02-10 02:10:30 +01:00
|
|
|
/* */
|
|
|
|
/* 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-10 02:10:30 +01:00
|
|
|
#include "test_gdscript.h"
|
|
|
|
|
2020-11-07 23:33:38 +01:00
|
|
|
#include "core/config/project_settings.h"
|
2021-06-11 14:51:48 +02:00
|
|
|
#include "core/io/file_access.h"
|
2020-10-14 17:31:06 +02:00
|
|
|
#include "core/io/file_access_pack.h"
|
2018-09-11 18:13:45 +02:00
|
|
|
#include "core/os/main_loop.h"
|
|
|
|
#include "core/os/os.h"
|
2020-11-07 23:33:38 +01:00
|
|
|
#include "core/string/string_builder.h"
|
2020-10-14 17:31:06 +02:00
|
|
|
#include "scene/resources/packed_scene.h"
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2020-08-17 15:00:42 +02:00
|
|
|
#include "modules/gdscript/gdscript_analyzer.h"
|
|
|
|
#include "modules/gdscript/gdscript_compiler.h"
|
2017-11-16 18:38:18 +01:00
|
|
|
#include "modules/gdscript/gdscript_parser.h"
|
|
|
|
#include "modules/gdscript/gdscript_tokenizer.h"
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2020-05-02 00:14:56 +02:00
|
|
|
#ifdef TOOLS_ENABLED
|
|
|
|
#include "editor/editor_settings.h"
|
|
|
|
#endif
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2021-04-07 15:12:51 +02:00
|
|
|
namespace GDScriptTests {
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2020-05-02 00:14:56 +02:00
|
|
|
static void test_tokenizer(const String &p_code, const Vector<String> &p_lines) {
|
|
|
|
GDScriptTokenizer tokenizer;
|
|
|
|
tokenizer.set_source_code(p_code);
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2020-05-02 00:14:56 +02:00
|
|
|
int tab_size = 4;
|
|
|
|
#ifdef TOOLS_ENABLED
|
|
|
|
if (EditorSettings::get_singleton()) {
|
2021-08-15 19:14:46 +02:00
|
|
|
tab_size = EditorSettings::get_singleton()->get_setting("text_editor/behavior/indent/size");
|
2014-02-10 02:10:30 +01:00
|
|
|
}
|
2020-05-02 00:14:56 +02:00
|
|
|
#endif // TOOLS_ENABLED
|
|
|
|
String tab = String(" ").repeat(tab_size);
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2020-05-02 00:14:56 +02:00
|
|
|
GDScriptTokenizer::Token current = tokenizer.scan();
|
|
|
|
while (current.type != GDScriptTokenizer::Token::TK_EOF) {
|
|
|
|
StringBuilder token;
|
|
|
|
token += " --> "; // Padding for line number.
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2021-03-25 14:36:29 +01:00
|
|
|
for (int l = current.start_line; l <= current.end_line && l <= p_lines.size(); l++) {
|
2020-05-02 00:14:56 +02:00
|
|
|
print_line(vformat("%04d %s", l, p_lines[l - 1]).replace("\t", tab));
|
|
|
|
}
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2020-05-02 00:14:56 +02:00
|
|
|
{
|
|
|
|
// Print carets to point at the token.
|
|
|
|
StringBuilder pointer;
|
|
|
|
pointer += " "; // Padding for line number.
|
|
|
|
int rightmost_column = current.rightmost_column;
|
|
|
|
if (current.end_line > current.start_line) {
|
|
|
|
rightmost_column--; // Don't point to the newline as a column.
|
2014-02-10 02:10:30 +01:00
|
|
|
}
|
2020-05-02 00:14:56 +02:00
|
|
|
for (int col = 1; col < rightmost_column; col++) {
|
|
|
|
if (col < current.leftmost_column) {
|
|
|
|
pointer += " ";
|
|
|
|
} else {
|
|
|
|
pointer += "^";
|
2019-04-09 17:08:36 +02:00
|
|
|
}
|
2014-02-10 02:10:30 +01:00
|
|
|
}
|
2020-05-02 00:14:56 +02:00
|
|
|
print_line(pointer.as_string());
|
2014-02-10 02:10:30 +01:00
|
|
|
}
|
|
|
|
|
2020-05-02 00:14:56 +02:00
|
|
|
token += current.get_name();
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2020-05-02 00:14:56 +02: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-10 02:10:30 +01:00
|
|
|
}
|
|
|
|
|
2020-05-02 00:14:56 +02:00
|
|
|
print_line(token.as_string());
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2020-05-02 00:14:56 +02:00
|
|
|
print_line("-------------------------------------------------------");
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2020-05-02 00:14:56 +02:00
|
|
|
current = tokenizer.scan();
|
2014-02-10 02:10:30 +01:00
|
|
|
}
|
|
|
|
|
2020-05-02 00:14:56 +02:00
|
|
|
print_line(current.get_name()); // Should be EOF
|
2014-02-10 02:10:30 +01:00
|
|
|
}
|
|
|
|
|
2020-05-02 00:14:56 +02: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-10 02:10:30 +01:00
|
|
|
|
2020-05-02 00:14:56 +02:00
|
|
|
if (err != OK) {
|
|
|
|
const List<GDScriptParser::ParserError> &errors = parser.get_errors();
|
2021-07-16 05:45:57 +02:00
|
|
|
for (const GDScriptParser::ParserError &error : errors) {
|
2020-05-02 00:14:56 +02:00
|
|
|
print_line(vformat("%02d:%02d: %s", error.line, error.column, error.message));
|
2014-02-10 02:10:30 +01:00
|
|
|
}
|
2020-05-02 00:14:56 +02:00
|
|
|
}
|
2021-03-26 13:03:16 +01:00
|
|
|
|
|
|
|
GDScriptAnalyzer analyzer(&parser);
|
|
|
|
analyzer.analyze();
|
|
|
|
|
|
|
|
if (err != OK) {
|
|
|
|
const List<GDScriptParser::ParserError> &errors = parser.get_errors();
|
2021-07-16 05:45:57 +02:00
|
|
|
for (const GDScriptParser::ParserError &error : errors) {
|
2021-03-26 13:03:16 +01:00
|
|
|
print_line(vformat("%02d:%02d: %s", error.line, error.column, error.message));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-12-15 17:10:56 +01:00
|
|
|
#ifdef TOOLS_ENABLED
|
2020-05-02 00:14:56 +02:00
|
|
|
GDScriptParser::TreePrinter printer;
|
|
|
|
printer.print_tree(parser);
|
2020-12-15 17:10:56 +01:00
|
|
|
#endif
|
2014-02-10 02:10:30 +01:00
|
|
|
}
|
|
|
|
|
2020-08-17 15:00:42 +02: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-16 05:45:57 +02:00
|
|
|
for (const GDScriptParser::ParserError &error : errors) {
|
2020-08-17 15:00:42 +02: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-16 05:45:57 +02:00
|
|
|
for (const GDScriptParser::ParserError &error : errors) {
|
2020-08-17 15:00:42 +02:00
|
|
|
print_line(vformat("%02d:%02d: %s", error.line, error.column, error.message));
|
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
GDScriptCompiler compiler;
|
|
|
|
Ref<GDScript> script;
|
2021-06-18 00:03:09 +02:00
|
|
|
script.instantiate();
|
2020-08-17 15:00:42 +02: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;
|
|
|
|
}
|
|
|
|
|
2021-08-09 22:13:42 +02:00
|
|
|
for (const KeyValue<StringName, GDScriptFunction *> &E : script->get_member_functions()) {
|
|
|
|
const GDScriptFunction *func = E.value;
|
2020-08-17 15:00:42 +02:00
|
|
|
|
|
|
|
String signature = "Disassembling " + func->get_name().operator String() + "(";
|
|
|
|
for (int i = 0; i < func->get_argument_count(); i++) {
|
|
|
|
if (i > 0) {
|
|
|
|
signature += ", ";
|
|
|
|
}
|
|
|
|
signature += func->get_argument_name(i);
|
|
|
|
}
|
|
|
|
print_line(signature + ")");
|
2020-12-15 17:10:56 +01:00
|
|
|
#ifdef TOOLS_ENABLED
|
2020-08-17 15:00:42 +02:00
|
|
|
func->disassemble(p_lines);
|
2020-12-15 17:10:56 +01:00
|
|
|
#endif
|
2020-08-17 15:00:42 +02:00
|
|
|
print_line("");
|
|
|
|
print_line("");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-08-18 16:24:45 +02:00
|
|
|
void test(TestType p_type) {
|
2014-02-10 02:10:30 +01:00
|
|
|
List<String> cmdlargs = OS::get_singleton()->get_cmdline_args();
|
|
|
|
|
2020-12-15 13:04:21 +01:00
|
|
|
if (cmdlargs.is_empty()) {
|
2020-08-18 16:24:45 +02:00
|
|
|
return;
|
2014-02-10 02:10:30 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
String test = cmdlargs.back()->get();
|
2020-05-02 00:14:56 +02:00
|
|
|
if (!test.ends_with(".gd")) {
|
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 16:24:45 +02:00
|
|
|
return;
|
2019-02-10 14:54:16 +01:00
|
|
|
}
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2022-03-23 10:08:58 +01:00
|
|
|
Ref<FileAccess> fa = FileAccess::open(test, FileAccess::READ);
|
|
|
|
ERR_FAIL_COND_MSG(fa.is_null(), "Could not open file: " + test);
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2020-10-14 17:31:06 +02:00
|
|
|
// Initialize the language for the test routine.
|
2021-04-07 15:12:51 +02:00
|
|
|
init_language(fa->get_path_absolute().get_base_dir());
|
2020-10-14 17:31:06 +02:00
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
Vector<uint8_t> buf;
|
2021-05-25 08:58:49 +02: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-10 02:10:30 +01:00
|
|
|
|
|
|
|
String code;
|
2017-03-05 16:44:50 +01:00
|
|
|
code.parse_utf8((const char *)&buf[0]);
|
2014-02-10 02:10:30 +01:00
|
|
|
|
|
|
|
Vector<String> lines;
|
2017-03-05 16:44:50 +01:00
|
|
|
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;
|
2014-02-10 02:10:30 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-05-02 00:14:56 +02:00
|
|
|
switch (p_type) {
|
|
|
|
case TEST_TOKENIZER:
|
|
|
|
test_tokenizer(code, lines);
|
|
|
|
break;
|
|
|
|
case TEST_PARSER:
|
|
|
|
test_parser(code, test, lines);
|
|
|
|
break;
|
|
|
|
case TEST_COMPILER:
|
2020-08-17 15:00:42 +02:00
|
|
|
test_compiler(code, test, lines);
|
|
|
|
break;
|
2020-05-02 00:14:56 +02:00
|
|
|
case TEST_BYTECODE:
|
|
|
|
print_line("Not implemented.");
|
2014-02-10 02:10:30 +01:00
|
|
|
}
|
2020-10-14 17:31:06 +02:00
|
|
|
|
2021-04-07 15:12:51 +02:00
|
|
|
finish_language();
|
2014-02-10 02:10:30 +01:00
|
|
|
}
|
2021-04-07 15:12:51 +02:00
|
|
|
} // namespace GDScriptTests
|