mirror of
https://github.com/luau-lang/luau.git
synced 2024-12-14 06:00:39 +00:00
e25de95445
* Fixed indexing table intersections using `x["prop"]` syntax: https://github.com/Roblox/luau/pull/971 * Add console output codepage for Windows: https://github.com/Roblox/luau/pull/967 * Added `Frontend::parse` for a fast source graph preparation * luau_load should check GC * Work toward a type-diff system for nicer error messages New Solver * Correctly suppress errors in more cases * Further improvements to typechecking of function calls and return statements * Crash fixes * Propagate refinements drawn from the condition of a while loop into the loop body JIT * Fix accidental bailout for math.frexp/modf/sign in A64 * Work toward bringing type annotation info in * Do not propagate Luau IR constants of wrong type into load instructions * CHECK_SAFEENV exits to VM on failure * Implement error handling in A64 reg allocator * Inline the string.len builtin * Do not enter native code of a function if arguments don’t match --------- Co-authored-by: Arseny Kapoulkine <arseny.kapoulkine@gmail.com> Co-authored-by: Vyacheslav Egorov <vegorov@roblox.com>
316 lines
8.8 KiB
C++
316 lines
8.8 KiB
C++
// This file is part of the Luau programming language and is licensed under MIT License; see LICENSE.txt for details
|
|
#include "Luau/Differ.h"
|
|
#include "Luau/Error.h"
|
|
#include "Luau/Frontend.h"
|
|
|
|
#include "Fixture.h"
|
|
|
|
#include "doctest.h"
|
|
#include <iostream>
|
|
|
|
using namespace Luau;
|
|
|
|
TEST_SUITE_BEGIN("Differ");
|
|
|
|
TEST_CASE_FIXTURE(Fixture, "equal_numbers")
|
|
{
|
|
CheckResult result = check(R"(
|
|
local foo = 5
|
|
local almostFoo = 78
|
|
almostFoo = foo
|
|
)");
|
|
LUAU_REQUIRE_NO_ERRORS(result);
|
|
|
|
TypeId foo = requireType("foo");
|
|
TypeId almostFoo = requireType("almostFoo");
|
|
try
|
|
{
|
|
DifferResult diffRes = diff(foo, almostFoo);
|
|
CHECK(!diffRes.diffError.has_value());
|
|
}
|
|
catch (const InternalCompilerError& e)
|
|
{
|
|
INFO(("InternalCompilerError: " + e.message));
|
|
CHECK(false);
|
|
}
|
|
}
|
|
|
|
TEST_CASE_FIXTURE(Fixture, "equal_strings")
|
|
{
|
|
CheckResult result = check(R"(
|
|
local foo = "hello"
|
|
local almostFoo = "world"
|
|
almostFoo = foo
|
|
)");
|
|
LUAU_REQUIRE_NO_ERRORS(result);
|
|
|
|
TypeId foo = requireType("foo");
|
|
TypeId almostFoo = requireType("almostFoo");
|
|
try
|
|
{
|
|
DifferResult diffRes = diff(foo, almostFoo);
|
|
CHECK(!diffRes.diffError.has_value());
|
|
}
|
|
catch (const InternalCompilerError& e)
|
|
{
|
|
INFO(("InternalCompilerError: " + e.message));
|
|
CHECK(false);
|
|
}
|
|
}
|
|
|
|
TEST_CASE_FIXTURE(Fixture, "equal_tables")
|
|
{
|
|
CheckResult result = check(R"(
|
|
local foo = { x = 1, y = "where" }
|
|
local almostFoo = { x = 5, y = "when" }
|
|
almostFoo = foo
|
|
)");
|
|
LUAU_REQUIRE_NO_ERRORS(result);
|
|
|
|
TypeId foo = requireType("foo");
|
|
TypeId almostFoo = requireType("almostFoo");
|
|
try
|
|
{
|
|
DifferResult diffRes = diff(foo, almostFoo);
|
|
CHECK(!diffRes.diffError.has_value());
|
|
}
|
|
catch (const InternalCompilerError& e)
|
|
{
|
|
INFO(("InternalCompilerError: " + e.message));
|
|
CHECK(false);
|
|
}
|
|
}
|
|
|
|
TEST_CASE_FIXTURE(Fixture, "a_table_missing_property")
|
|
{
|
|
CheckResult result = check(R"(
|
|
local foo = { x = 1, y = 2 }
|
|
local almostFoo = { x = 1, z = 3 }
|
|
almostFoo = foo
|
|
)");
|
|
LUAU_REQUIRE_ERRORS(result);
|
|
|
|
TypeId foo = requireType("foo");
|
|
TypeId almostFoo = requireType("almostFoo");
|
|
std::string diffMessage;
|
|
try
|
|
{
|
|
diffMessage = diff(foo, almostFoo).diffError->toString();
|
|
}
|
|
catch (const InternalCompilerError& e)
|
|
{
|
|
INFO(("InternalCompilerError: " + e.message));
|
|
CHECK(false);
|
|
}
|
|
CHECK_EQ("DiffError: these two types are not equal because the left type at foo.y has type number, while the right type at almostFoo is missing "
|
|
"the property y",
|
|
diffMessage);
|
|
}
|
|
|
|
TEST_CASE_FIXTURE(Fixture, "left_table_missing_property")
|
|
{
|
|
CheckResult result = check(R"(
|
|
local foo = { x = 1 }
|
|
local almostFoo = { x = 1, z = 3 }
|
|
almostFoo = foo
|
|
)");
|
|
LUAU_REQUIRE_ERRORS(result);
|
|
|
|
TypeId foo = requireType("foo");
|
|
TypeId almostFoo = requireType("almostFoo");
|
|
std::string diffMessage;
|
|
try
|
|
{
|
|
diffMessage = diff(foo, almostFoo).diffError->toString();
|
|
}
|
|
catch (const InternalCompilerError& e)
|
|
{
|
|
INFO(("InternalCompilerError: " + e.message));
|
|
CHECK(false);
|
|
}
|
|
CHECK_EQ("DiffError: these two types are not equal because the left type at foo is missing the property z, while the right type at almostFoo.z "
|
|
"has type number",
|
|
diffMessage);
|
|
}
|
|
|
|
TEST_CASE_FIXTURE(Fixture, "a_table_wrong_type")
|
|
{
|
|
CheckResult result = check(R"(
|
|
local foo = { x = 1, y = 2 }
|
|
local almostFoo = { x = 1, y = "two" }
|
|
almostFoo = foo
|
|
)");
|
|
LUAU_REQUIRE_ERRORS(result);
|
|
|
|
TypeId foo = requireType("foo");
|
|
TypeId almostFoo = requireType("almostFoo");
|
|
std::string diffMessage;
|
|
try
|
|
{
|
|
diffMessage = diff(foo, almostFoo).diffError->toString();
|
|
}
|
|
catch (const InternalCompilerError& e)
|
|
{
|
|
INFO(("InternalCompilerError: " + e.message));
|
|
CHECK(false);
|
|
}
|
|
CHECK_EQ("DiffError: these two types are not equal because the left type at foo.y has type number, while the right type at almostFoo.y has type "
|
|
"string",
|
|
diffMessage);
|
|
}
|
|
|
|
TEST_CASE_FIXTURE(Fixture, "a_table_wrong_type")
|
|
{
|
|
CheckResult result = check(R"(
|
|
local foo: string
|
|
local almostFoo: number
|
|
almostFoo = foo
|
|
)");
|
|
LUAU_REQUIRE_ERRORS(result);
|
|
|
|
TypeId foo = requireType("foo");
|
|
TypeId almostFoo = requireType("almostFoo");
|
|
std::string diffMessage;
|
|
try
|
|
{
|
|
diffMessage = diff(foo, almostFoo).diffError->toString();
|
|
}
|
|
catch (const InternalCompilerError& e)
|
|
{
|
|
INFO(("InternalCompilerError: " + e.message));
|
|
CHECK(false);
|
|
}
|
|
CHECK_EQ("DiffError: these two types are not equal because the left type at <unlabeled-symbol> has type string, while the right type at "
|
|
"<unlabeled-symbol> has type number",
|
|
diffMessage);
|
|
}
|
|
|
|
TEST_CASE_FIXTURE(Fixture, "a_nested_table_wrong_type")
|
|
{
|
|
CheckResult result = check(R"(
|
|
local foo = { x = 1, inner = { table = { has = { wrong = { value = 5 } } } } }
|
|
local almostFoo = { x = 1, inner = { table = { has = { wrong = { value = "five" } } } } }
|
|
almostFoo = foo
|
|
)");
|
|
LUAU_REQUIRE_ERRORS(result);
|
|
|
|
TypeId foo = requireType("foo");
|
|
TypeId almostFoo = requireType("almostFoo");
|
|
std::string diffMessage;
|
|
try
|
|
{
|
|
diffMessage = diff(foo, almostFoo).diffError->toString();
|
|
}
|
|
catch (const InternalCompilerError& e)
|
|
{
|
|
INFO(("InternalCompilerError: " + e.message));
|
|
CHECK(false);
|
|
}
|
|
CHECK_EQ("DiffError: these two types are not equal because the left type at foo.inner.table.has.wrong.value has type number, while the right "
|
|
"type at almostFoo.inner.table.has.wrong.value has type string",
|
|
diffMessage);
|
|
}
|
|
|
|
TEST_CASE_FIXTURE(Fixture, "a_nested_table_wrong_match")
|
|
{
|
|
CheckResult result = check(R"(
|
|
local foo = { x = 1, inner = { table = { has = { wrong = { variant = { because = { it = { goes = { on = "five" } } } } } } } } }
|
|
local almostFoo = { x = 1, inner = { table = { has = { wrong = { variant = "five" } } } } }
|
|
almostFoo = foo
|
|
)");
|
|
LUAU_REQUIRE_ERRORS(result);
|
|
|
|
TypeId foo = requireType("foo");
|
|
TypeId almostFoo = requireType("almostFoo");
|
|
std::string diffMessage;
|
|
try
|
|
{
|
|
diffMessage = diff(foo, almostFoo).diffError->toString();
|
|
}
|
|
catch (const InternalCompilerError& e)
|
|
{
|
|
INFO(("InternalCompilerError: " + e.message));
|
|
CHECK(false);
|
|
}
|
|
CHECK_EQ("DiffError: these two types are not equal because the left type at foo.inner.table.has.wrong.variant has type { because: { it: { goes: "
|
|
"{ on: string } } } }, while the right type at almostFoo.inner.table.has.wrong.variant has type string",
|
|
diffMessage);
|
|
}
|
|
|
|
TEST_CASE_FIXTURE(Fixture, "singleton")
|
|
{
|
|
CheckResult result = check(R"(
|
|
local foo: "hello" = "hello"
|
|
local almostFoo: true = true
|
|
almostFoo = foo
|
|
)");
|
|
LUAU_REQUIRE_ERRORS(result);
|
|
|
|
TypeId foo = requireType("foo");
|
|
TypeId almostFoo = requireType("almostFoo");
|
|
std::string diffMessage;
|
|
try
|
|
{
|
|
diffMessage = diff(foo, almostFoo).diffError->toString();
|
|
}
|
|
catch (const InternalCompilerError& e)
|
|
{
|
|
INFO(("InternalCompilerError: " + e.message));
|
|
CHECK(false);
|
|
}
|
|
CHECK_EQ(
|
|
R"(DiffError: these two types are not equal because the left type at <unlabeled-symbol> has type "hello", while the right type at <unlabeled-symbol> has type true)",
|
|
diffMessage);
|
|
}
|
|
|
|
TEST_CASE_FIXTURE(Fixture, "equal_singleton")
|
|
{
|
|
CheckResult result = check(R"(
|
|
local foo: "hello" = "hello"
|
|
local almostFoo: "hello"
|
|
almostFoo = foo
|
|
)");
|
|
LUAU_REQUIRE_NO_ERRORS(result);
|
|
|
|
TypeId foo = requireType("foo");
|
|
TypeId almostFoo = requireType("almostFoo");
|
|
try
|
|
{
|
|
DifferResult diffRes = diff(foo, almostFoo);
|
|
INFO(diffRes.diffError->toString());
|
|
CHECK(!diffRes.diffError.has_value());
|
|
}
|
|
catch (const InternalCompilerError& e)
|
|
{
|
|
INFO(("InternalCompilerError: " + e.message));
|
|
CHECK(false);
|
|
}
|
|
}
|
|
|
|
TEST_CASE_FIXTURE(Fixture, "singleton_string")
|
|
{
|
|
CheckResult result = check(R"(
|
|
local foo: "hello" = "hello"
|
|
local almostFoo: "world" = "world"
|
|
almostFoo = foo
|
|
)");
|
|
LUAU_REQUIRE_ERRORS(result);
|
|
|
|
TypeId foo = requireType("foo");
|
|
TypeId almostFoo = requireType("almostFoo");
|
|
std::string diffMessage;
|
|
try
|
|
{
|
|
diffMessage = diff(foo, almostFoo).diffError->toString();
|
|
}
|
|
catch (const InternalCompilerError& e)
|
|
{
|
|
INFO(("InternalCompilerError: " + e.message));
|
|
CHECK(false);
|
|
}
|
|
CHECK_EQ(
|
|
R"(DiffError: these two types are not equal because the left type at <unlabeled-symbol> has type "hello", while the right type at <unlabeled-symbol> has type "world")",
|
|
diffMessage);
|
|
}
|
|
|
|
TEST_SUITE_END();
|