luau/tests/ConstraintSolver.test.cpp

64 lines
1.3 KiB
C++
Raw Normal View History

2022-06-04 04:32:20 +08:00
// This file is part of the Luau programming language and is licensed under MIT License; see LICENSE.txt for details
2022-09-16 06:13:58 +08:00
#include "ConstraintGraphBuilderFixture.h"
#include "Fixture.h"
#include "doctest.h"
2022-06-04 04:32:20 +08:00
using namespace Luau;
2022-10-22 01:33:43 +08:00
static TypeId requireBinding(Scope* scope, const char* name)
2022-06-04 04:32:20 +08:00
{
auto b = linearSearchForBinding(scope, name);
LUAU_ASSERT(b.has_value());
return *b;
}
TEST_SUITE_BEGIN("ConstraintSolver");
TEST_CASE_FIXTURE(ConstraintGraphBuilderFixture, "hello")
{
2022-10-22 01:33:43 +08:00
solve(R"(
2022-06-04 04:32:20 +08:00
local a = 55
local b = a
)");
2022-07-01 07:29:02 +08:00
TypeId bType = requireBinding(rootScope, "b");
2022-06-04 04:32:20 +08:00
CHECK("number" == toString(bType));
}
TEST_CASE_FIXTURE(ConstraintGraphBuilderFixture, "generic_function")
{
2022-10-22 01:33:43 +08:00
solve(R"(
2022-06-04 04:32:20 +08:00
local function id(a)
return a
end
)");
2022-07-01 07:29:02 +08:00
TypeId idType = requireBinding(rootScope, "id");
2022-06-04 04:32:20 +08:00
CHECK("<a>(a) -> a" == toString(idType));
}
TEST_CASE_FIXTURE(ConstraintGraphBuilderFixture, "proper_let_generalization")
{
2022-10-22 01:33:43 +08:00
solve(R"(
2022-06-04 04:32:20 +08:00
local function a(c)
local function d(e)
return c
end
return d
end
local b = a(5)
)");
2022-07-01 07:29:02 +08:00
TypeId idType = requireBinding(rootScope, "b");
2022-06-04 04:32:20 +08:00
2022-10-22 01:33:43 +08:00
ToStringOptions opts;
2022-06-04 04:32:20 +08:00
CHECK("<a>(a) -> number" == toString(idType, opts));
}
TEST_SUITE_END();