summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorAndrii Doroshenko (Xrayez) <xrayez@gmail.com>2020-08-18 15:29:22 +0300
committerAndrii Doroshenko (Xrayez) <xrayez@gmail.com>2020-09-02 01:09:32 +0300
commit6b7e50ab3410542d341bd1dd1ec70123fc218ecc (patch)
treee4a730bbfed4553d6184f48a16653893173ca66b /tests
parentd70a17d5d37fd09b43882e7972f2ed93eb56b897 (diff)
Move GDScript tests to respective folder under modules
Diffstat (limited to 'tests')
-rw-r--r--tests/test_gdscript.cpp250
-rw-r--r--tests/test_gdscript.h48
2 files changed, 0 insertions, 298 deletions
diff --git a/tests/test_gdscript.cpp b/tests/test_gdscript.cpp
deleted file mode 100644
index a909f216ee..0000000000
--- a/tests/test_gdscript.cpp
+++ /dev/null
@@ -1,250 +0,0 @@
-/*************************************************************************/
-/* test_gdscript.cpp */
-/*************************************************************************/
-/* This file is part of: */
-/* GODOT ENGINE */
-/* https://godotengine.org */
-/*************************************************************************/
-/* Copyright (c) 2007-2020 Juan Linietsky, Ariel Manzur. */
-/* Copyright (c) 2014-2020 Godot Engine contributors (cf. AUTHORS.md). */
-/* */
-/* 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. */
-/*************************************************************************/
-
-#include "test_gdscript.h"
-
-#include "core/os/file_access.h"
-#include "core/os/main_loop.h"
-#include "core/os/os.h"
-#include "core/string_builder.h"
-
-#include "modules/modules_enabled.gen.h"
-
-#ifdef MODULE_GDSCRIPT_ENABLED
-
-#include "modules/gdscript/gdscript_analyzer.h"
-#include "modules/gdscript/gdscript_compiler.h"
-#include "modules/gdscript/gdscript_parser.h"
-#include "modules/gdscript/gdscript_tokenizer.h"
-
-#ifdef TOOLS_ENABLED
-#include "editor/editor_settings.h"
-#endif
-
-namespace TestGDScript {
-
-static void test_tokenizer(const String &p_code, const Vector<String> &p_lines) {
- GDScriptTokenizer tokenizer;
- tokenizer.set_source_code(p_code);
-
- int tab_size = 4;
-#ifdef TOOLS_ENABLED
- if (EditorSettings::get_singleton()) {
- tab_size = EditorSettings::get_singleton()->get_setting("text_editor/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++) {
- print_line(vformat("%04d %s", l, p_lines[l - 1]).replace("\t", tab));
- }
-
- {
- // 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.
- }
- for (int col = 1; col < rightmost_column; col++) {
- if (col < current.leftmost_column) {
- pointer += " ";
- } else {
- pointer += "^";
- }
- }
- print_line(pointer.as_string());
- }
-
- 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
-}
-
-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);
-
- if (err != OK) {
- const List<GDScriptParser::ParserError> &errors = parser.get_errors();
- for (const List<GDScriptParser::ParserError>::Element *E = errors.front(); E != nullptr; E = E->next()) {
- const GDScriptParser::ParserError &error = E->get();
- print_line(vformat("%02d:%02d: %s", error.line, error.column, error.message));
- }
- }
-
- GDScriptParser::TreePrinter printer;
-
- printer.print_tree(parser);
-}
-
-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();
- for (const List<GDScriptParser::ParserError>::Element *E = errors.front(); E != nullptr; E = E->next()) {
- const GDScriptParser::ParserError &error = E->get();
- 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();
- for (const List<GDScriptParser::ParserError>::Element *E = errors.front(); E != nullptr; E = E->next()) {
- const GDScriptParser::ParserError &error = E->get();
- print_line(vformat("%02d:%02d: %s", error.line, error.column, error.message));
- }
- return;
- }
-
- GDScriptCompiler compiler;
- Ref<GDScript> script;
- script.instance();
- 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;
- }
-
- for (const Map<StringName, GDScriptFunction *>::Element *E = script->get_member_functions().front(); E; E = E->next()) {
- const GDScriptFunction *func = E->value();
-
- 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 + ")");
-
- func->disassemble(p_lines);
- print_line("");
- print_line("");
- }
-}
-
-MainLoop *test(TestType p_type) {
- List<String> cmdlargs = OS::get_singleton()->get_cmdline_args();
-
- if (cmdlargs.empty()) {
- return nullptr;
- }
-
- String test = cmdlargs.back()->get();
- if (!test.ends_with(".gd")) {
- print_line("This test expects a path to a GDScript file as its last parameter. Got: " + test);
- return nullptr;
- }
-
- FileAccessRef fa = FileAccess::open(test, FileAccess::READ);
- ERR_FAIL_COND_V_MSG(!fa, nullptr, "Could not open file: " + test);
-
- Vector<uint8_t> buf;
- int flen = fa->get_len();
- buf.resize(fa->get_len() + 1);
- fa->get_buffer(buf.ptrw(), flen);
- buf.write[flen] = 0;
-
- String code;
- code.parse_utf8((const char *)&buf[0]);
-
- 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;
- }
- }
-
- switch (p_type) {
- case TEST_TOKENIZER:
- test_tokenizer(code, lines);
- break;
- case TEST_PARSER:
- test_parser(code, test, lines);
- break;
- case TEST_COMPILER:
- test_compiler(code, test, lines);
- break;
- case TEST_BYTECODE:
- print_line("Not implemented.");
- }
-
- return nullptr;
-}
-
-} // namespace TestGDScript
-
-#else
-
-namespace TestGDScript {
-
-MainLoop *test(TestType p_type) {
- ERR_PRINT("The GDScript module is disabled, therefore GDScript tests cannot be used.");
- return nullptr;
-}
-
-} // namespace TestGDScript
-
-#endif
diff --git a/tests/test_gdscript.h b/tests/test_gdscript.h
deleted file mode 100644
index 6595da1430..0000000000
--- a/tests/test_gdscript.h
+++ /dev/null
@@ -1,48 +0,0 @@
-/*************************************************************************/
-/* test_gdscript.h */
-/*************************************************************************/
-/* This file is part of: */
-/* GODOT ENGINE */
-/* https://godotengine.org */
-/*************************************************************************/
-/* Copyright (c) 2007-2020 Juan Linietsky, Ariel Manzur. */
-/* Copyright (c) 2014-2020 Godot Engine contributors (cf. AUTHORS.md). */
-/* */
-/* 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. */
-/*************************************************************************/
-
-#ifndef TEST_GDSCRIPT_H
-#define TEST_GDSCRIPT_H
-
-#include "core/os/main_loop.h"
-
-namespace TestGDScript {
-
-enum TestType {
- TEST_TOKENIZER,
- TEST_PARSER,
- TEST_COMPILER,
- TEST_BYTECODE,
-};
-
-MainLoop *test(TestType p_type);
-} // namespace TestGDScript
-
-#endif // TEST_GDSCRIPT_H