mirror of
https://github.com/carbon-language/carbon-lang.git
synced 2026-09-24 22:02:23 +01:00
Co-authored-by: Jon Meow <46229924+jonmeow@users.noreply.github.com>
163 lines
6.3 KiB
C++
163 lines
6.3 KiB
C++
// Part of the Carbon Language project, under the Apache License v2.0 with LLVM
|
|
// Exceptions. See /LICENSE for license information.
|
|
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
|
|
|
#include "executable_semantics/ast/ast_test_matchers.h"
|
|
|
|
#include <gmock/gmock.h>
|
|
#include <gtest/gtest.h>
|
|
|
|
#include "executable_semantics/ast/declaration.h"
|
|
#include "executable_semantics/ast/expression.h"
|
|
#include "executable_semantics/ast/pattern.h"
|
|
#include "executable_semantics/ast/statement.h"
|
|
#include "executable_semantics/common/arena.h"
|
|
|
|
namespace Carbon {
|
|
namespace {
|
|
|
|
using ::testing::_;
|
|
using ::testing::ElementsAre;
|
|
using ::testing::IsEmpty;
|
|
using ::testing::Not;
|
|
|
|
static constexpr SourceLocation DummyLoc("dummy", 0);
|
|
|
|
TEST(BlockContentsAreTest, BasicUsage) {
|
|
Block empty_block(DummyLoc, {});
|
|
EXPECT_THAT(empty_block, BlockContentsAre(IsEmpty()));
|
|
EXPECT_THAT(&empty_block, BlockContentsAre(IsEmpty()));
|
|
|
|
Break break_node(DummyLoc);
|
|
EXPECT_THAT(break_node, Not(BlockContentsAre(_)));
|
|
|
|
Block break_block(DummyLoc, {&break_node});
|
|
EXPECT_THAT(break_block, Not(BlockContentsAre(IsEmpty())));
|
|
}
|
|
|
|
TEST(MatchesLiteralTest, BasicUsage) {
|
|
IntLiteral literal(DummyLoc, 42);
|
|
EXPECT_THAT(literal, MatchesLiteral(42));
|
|
EXPECT_THAT(&literal, MatchesLiteral(42));
|
|
EXPECT_THAT(literal, Not(MatchesLiteral(43)));
|
|
EXPECT_THAT(StringLiteral(DummyLoc, "foo"), Not(MatchesLiteral(42)));
|
|
}
|
|
|
|
TEST(MatchesMulTest, BasicUsage) {
|
|
IntLiteral two(DummyLoc, 2);
|
|
IntLiteral three(DummyLoc, 3);
|
|
PrimitiveOperatorExpression mul(DummyLoc, Operator::Mul, {&two, &three});
|
|
EXPECT_THAT(mul, MatchesMul(MatchesLiteral(2), MatchesLiteral(3)));
|
|
EXPECT_THAT(&mul, MatchesMul(MatchesLiteral(2), MatchesLiteral(3)));
|
|
EXPECT_THAT(mul, MatchesMul(_, _));
|
|
EXPECT_THAT(mul, Not(MatchesMul(MatchesLiteral(2), MatchesLiteral(2))));
|
|
EXPECT_THAT(StringLiteral(DummyLoc, "foo"), Not(MatchesMul(_, _)));
|
|
EXPECT_THAT(PrimitiveOperatorExpression(DummyLoc, Operator::Deref, {&two}),
|
|
Not(MatchesMul(_, _)));
|
|
|
|
PrimitiveOperatorExpression nested(DummyLoc, Operator::Mul, {&two, &mul});
|
|
EXPECT_THAT(nested,
|
|
MatchesMul(MatchesLiteral(2),
|
|
MatchesMul(MatchesLiteral(2), MatchesLiteral(3))));
|
|
}
|
|
|
|
TEST(MatchesBinaryOpTest, BasicUsage) {
|
|
IntLiteral two(DummyLoc, 2);
|
|
IntLiteral three(DummyLoc, 3);
|
|
|
|
// Testing of MatchesMul provides most of the coverage for these matchers,
|
|
// since they are thin wrappers around a common implementation. We only test
|
|
// the others enough to detect copy-paste errors in the wrappers.
|
|
EXPECT_THAT(
|
|
PrimitiveOperatorExpression(DummyLoc, Operator::Add, {&two, &three}),
|
|
MatchesAdd(MatchesLiteral(2), MatchesLiteral(3)));
|
|
EXPECT_THAT(
|
|
PrimitiveOperatorExpression(DummyLoc, Operator::And, {&two, &three}),
|
|
MatchesAnd(MatchesLiteral(2), MatchesLiteral(3)));
|
|
EXPECT_THAT(
|
|
PrimitiveOperatorExpression(DummyLoc, Operator::Eq, {&two, &three}),
|
|
MatchesEq(MatchesLiteral(2), MatchesLiteral(3)));
|
|
EXPECT_THAT(
|
|
PrimitiveOperatorExpression(DummyLoc, Operator::Or, {&two, &three}),
|
|
MatchesOr(MatchesLiteral(2), MatchesLiteral(3)));
|
|
EXPECT_THAT(
|
|
PrimitiveOperatorExpression(DummyLoc, Operator::Sub, {&two, &three}),
|
|
MatchesSub(MatchesLiteral(2), MatchesLiteral(3)));
|
|
}
|
|
|
|
TEST(MatchesReturnTest, BasicUsage) {
|
|
TupleLiteral unit(DummyLoc);
|
|
Return empty_return(DummyLoc, &unit, /*is_omitted_expression=*/true);
|
|
EXPECT_THAT(empty_return, MatchesEmptyReturn());
|
|
EXPECT_THAT(&empty_return, MatchesEmptyReturn());
|
|
EXPECT_THAT(empty_return, Not(MatchesReturn(_)));
|
|
|
|
IntLiteral int_val(DummyLoc, 42);
|
|
Return explicit_return(DummyLoc, &int_val, /*is_omitted_expression=*/false);
|
|
EXPECT_THAT(explicit_return, MatchesReturn(MatchesLiteral(42)));
|
|
EXPECT_THAT(explicit_return, Not(MatchesEmptyReturn()));
|
|
|
|
EXPECT_THAT(int_val, Not(MatchesEmptyReturn()));
|
|
EXPECT_THAT(int_val, Not(MatchesReturn(_)));
|
|
}
|
|
|
|
TEST(MatchesFunctionDeclarationTest, BasicUsage) {
|
|
TuplePattern params(DummyLoc, {});
|
|
Block body(DummyLoc, {});
|
|
FunctionDeclaration decl(DummyLoc, "Foo", {}, ¶ms,
|
|
ReturnTerm::Omitted(DummyLoc), &body);
|
|
|
|
EXPECT_THAT(decl, MatchesFunctionDeclaration());
|
|
EXPECT_THAT(&decl, MatchesFunctionDeclaration());
|
|
EXPECT_THAT(decl, MatchesFunctionDeclaration().WithName("Foo"));
|
|
EXPECT_THAT(decl, MatchesFunctionDeclaration().WithBody(_));
|
|
EXPECT_THAT(decl, MatchesFunctionDeclaration().WithName("Foo").WithBody(_));
|
|
EXPECT_THAT(decl, MatchesFunctionDeclaration().WithBody(_).WithName("Foo"));
|
|
EXPECT_THAT(decl, Not(MatchesFunctionDeclaration().WithName("Bar")));
|
|
EXPECT_THAT(decl,
|
|
Not(MatchesFunctionDeclaration().WithBody(MatchesLiteral(0))));
|
|
|
|
FunctionDeclaration forward_decl(DummyLoc, "Foo", {}, ¶ms,
|
|
ReturnTerm::Omitted(DummyLoc), std::nullopt);
|
|
EXPECT_THAT(forward_decl, MatchesFunctionDeclaration().WithName("Foo"));
|
|
EXPECT_THAT(forward_decl, Not(MatchesFunctionDeclaration().WithBody(_)));
|
|
|
|
EXPECT_THAT(body, Not(MatchesFunctionDeclaration()));
|
|
}
|
|
|
|
TEST(MatchesUnimplementedExpressionTest, BasicUsage) {
|
|
IntLiteral two(DummyLoc, 2);
|
|
IntLiteral three(DummyLoc, 3);
|
|
UnimplementedExpression unimplemented(DummyLoc, "DummyLabel", &two, &three);
|
|
|
|
EXPECT_THAT(unimplemented, MatchesUnimplementedExpression(
|
|
"DummyLabel", ElementsAre(MatchesLiteral(2),
|
|
MatchesLiteral(3))));
|
|
EXPECT_THAT(
|
|
&unimplemented,
|
|
MatchesUnimplementedExpression(
|
|
"DummyLabel", ElementsAre(MatchesLiteral(2), MatchesLiteral(3))));
|
|
EXPECT_THAT(
|
|
unimplemented,
|
|
Not(MatchesUnimplementedExpression(
|
|
"WrongLabel", ElementsAre(MatchesLiteral(2), MatchesLiteral(3)))));
|
|
EXPECT_THAT(unimplemented,
|
|
Not(MatchesUnimplementedExpression("DummyLabel", IsEmpty())));
|
|
EXPECT_THAT(two,
|
|
Not(MatchesUnimplementedExpression("DummyLabel", IsEmpty())));
|
|
}
|
|
|
|
TEST(ASTDeclarationsTest, BasicUsage) {
|
|
TuplePattern params(DummyLoc, {});
|
|
Block body(DummyLoc, {});
|
|
FunctionDeclaration decl(DummyLoc, "Foo", {}, ¶ms,
|
|
ReturnTerm::Omitted(DummyLoc), &body);
|
|
AST ast = {.declarations = {&decl}};
|
|
|
|
EXPECT_THAT(ast, ASTDeclarations(ElementsAre(MatchesFunctionDeclaration())));
|
|
EXPECT_THAT(ast, Not(ASTDeclarations(IsEmpty())));
|
|
}
|
|
|
|
} // namespace
|
|
} // namespace Carbon
|