2020-03-16 13:39:44 +00:00
|
|
|
// Copyright 2020 The Tint Authors.
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
// you may not use this file except in compliance with the License.
|
|
|
|
// You may obtain a copy of the License at
|
|
|
|
//
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
//
|
|
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
// See the License for the specific language governing permissions and
|
|
|
|
// limitations under the License.
|
|
|
|
|
|
|
|
#include "src/ast/if_statement.h"
|
|
|
|
|
2020-07-25 14:33:50 +00:00
|
|
|
#include "src/ast/discard_statement.h"
|
2020-03-16 13:39:44 +00:00
|
|
|
#include "src/ast/identifier_expression.h"
|
2020-11-13 21:58:28 +00:00
|
|
|
#include "src/ast/test_helper.h"
|
2020-03-16 13:39:44 +00:00
|
|
|
|
|
|
|
namespace tint {
|
|
|
|
namespace ast {
|
2020-03-26 15:31:43 +00:00
|
|
|
namespace {
|
2020-03-16 13:39:44 +00:00
|
|
|
|
2020-11-13 21:58:28 +00:00
|
|
|
using IfStatementTest = TestHelper;
|
2020-03-16 13:39:44 +00:00
|
|
|
|
|
|
|
TEST_F(IfStatementTest, Creation) {
|
2020-11-13 22:03:58 +00:00
|
|
|
auto cond = create<IdentifierExpression>("cond");
|
|
|
|
auto body = create<ast::BlockStatement>();
|
|
|
|
body->append(create<DiscardStatement>());
|
2020-03-16 13:39:44 +00:00
|
|
|
|
2020-04-17 13:18:20 +00:00
|
|
|
auto* cond_ptr = cond.get();
|
2020-07-27 15:25:00 +00:00
|
|
|
auto* stmt_ptr = body->get(0);
|
2020-03-16 13:39:44 +00:00
|
|
|
|
|
|
|
IfStatement stmt(std::move(cond), std::move(body));
|
|
|
|
EXPECT_EQ(stmt.condition(), cond_ptr);
|
2020-07-27 15:25:00 +00:00
|
|
|
ASSERT_EQ(stmt.body()->size(), 1u);
|
|
|
|
EXPECT_EQ(stmt.body()->get(0), stmt_ptr);
|
2020-03-16 13:39:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
TEST_F(IfStatementTest, Creation_WithSource) {
|
2020-11-13 22:03:58 +00:00
|
|
|
auto cond = create<IdentifierExpression>("cond");
|
|
|
|
auto body = create<ast::BlockStatement>();
|
|
|
|
body->append(create<DiscardStatement>());
|
2020-03-16 13:39:44 +00:00
|
|
|
|
2020-11-03 16:26:09 +00:00
|
|
|
IfStatement stmt(Source{Source::Location{20, 2}}, std::move(cond),
|
|
|
|
std::move(body));
|
2020-03-16 13:39:44 +00:00
|
|
|
auto src = stmt.source();
|
2020-10-30 20:44:53 +00:00
|
|
|
EXPECT_EQ(src.range.begin.line, 20u);
|
|
|
|
EXPECT_EQ(src.range.begin.column, 2u);
|
2020-03-16 13:39:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
TEST_F(IfStatementTest, IsIf) {
|
|
|
|
IfStatement stmt;
|
|
|
|
EXPECT_TRUE(stmt.IsIf());
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST_F(IfStatementTest, IsValid) {
|
2020-11-13 22:03:58 +00:00
|
|
|
auto cond = create<IdentifierExpression>("cond");
|
|
|
|
auto body = create<ast::BlockStatement>();
|
|
|
|
body->append(create<DiscardStatement>());
|
2020-03-16 13:39:44 +00:00
|
|
|
|
|
|
|
IfStatement stmt(std::move(cond), std::move(body));
|
|
|
|
EXPECT_TRUE(stmt.IsValid());
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST_F(IfStatementTest, IsValid_WithElseStatements) {
|
2020-11-13 22:03:58 +00:00
|
|
|
auto cond = create<IdentifierExpression>("cond");
|
|
|
|
auto body = create<ast::BlockStatement>();
|
|
|
|
body->append(create<DiscardStatement>());
|
2020-03-16 13:39:44 +00:00
|
|
|
|
2020-04-06 19:37:37 +00:00
|
|
|
ElseStatementList else_stmts;
|
2020-11-13 22:03:58 +00:00
|
|
|
else_stmts.push_back(create<ElseStatement>());
|
|
|
|
else_stmts[0]->set_condition(create<IdentifierExpression>("Ident"));
|
|
|
|
else_stmts.push_back(create<ElseStatement>());
|
2020-03-16 13:39:44 +00:00
|
|
|
|
|
|
|
IfStatement stmt(std::move(cond), std::move(body));
|
|
|
|
stmt.set_else_statements(std::move(else_stmts));
|
|
|
|
EXPECT_TRUE(stmt.IsValid());
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST_F(IfStatementTest, IsValid_MissingCondition) {
|
2020-11-13 22:03:58 +00:00
|
|
|
auto body = create<ast::BlockStatement>();
|
|
|
|
body->append(create<DiscardStatement>());
|
2020-03-16 13:39:44 +00:00
|
|
|
|
|
|
|
IfStatement stmt(nullptr, std::move(body));
|
|
|
|
EXPECT_FALSE(stmt.IsValid());
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST_F(IfStatementTest, IsValid_InvalidCondition) {
|
2020-11-13 22:03:58 +00:00
|
|
|
auto cond = create<IdentifierExpression>("");
|
|
|
|
auto body = create<ast::BlockStatement>();
|
|
|
|
body->append(create<DiscardStatement>());
|
2020-03-16 13:39:44 +00:00
|
|
|
|
|
|
|
IfStatement stmt(std::move(cond), std::move(body));
|
|
|
|
EXPECT_FALSE(stmt.IsValid());
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST_F(IfStatementTest, IsValid_NullBodyStatement) {
|
2020-11-13 22:03:58 +00:00
|
|
|
auto cond = create<IdentifierExpression>("cond");
|
|
|
|
auto body = create<ast::BlockStatement>();
|
|
|
|
body->append(create<DiscardStatement>());
|
2020-07-27 15:25:00 +00:00
|
|
|
body->append(nullptr);
|
2020-03-16 13:39:44 +00:00
|
|
|
|
|
|
|
IfStatement stmt(std::move(cond), std::move(body));
|
|
|
|
EXPECT_FALSE(stmt.IsValid());
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST_F(IfStatementTest, IsValid_InvalidBodyStatement) {
|
2020-11-13 22:03:58 +00:00
|
|
|
auto cond = create<IdentifierExpression>("cond");
|
|
|
|
auto body = create<ast::BlockStatement>();
|
|
|
|
body->append(create<DiscardStatement>());
|
|
|
|
body->append(create<IfStatement>());
|
2020-03-16 13:39:44 +00:00
|
|
|
|
|
|
|
IfStatement stmt(std::move(cond), std::move(body));
|
|
|
|
EXPECT_FALSE(stmt.IsValid());
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST_F(IfStatementTest, IsValid_NullElseStatement) {
|
2020-11-13 22:03:58 +00:00
|
|
|
auto cond = create<IdentifierExpression>("cond");
|
|
|
|
auto body = create<ast::BlockStatement>();
|
|
|
|
body->append(create<DiscardStatement>());
|
2020-03-16 13:39:44 +00:00
|
|
|
|
2020-04-06 19:37:37 +00:00
|
|
|
ElseStatementList else_stmts;
|
2020-11-13 22:03:58 +00:00
|
|
|
else_stmts.push_back(create<ElseStatement>());
|
|
|
|
else_stmts[0]->set_condition(create<IdentifierExpression>("Ident"));
|
|
|
|
else_stmts.push_back(create<ElseStatement>());
|
2020-03-16 13:39:44 +00:00
|
|
|
else_stmts.push_back(nullptr);
|
|
|
|
|
|
|
|
IfStatement stmt(std::move(cond), std::move(body));
|
|
|
|
stmt.set_else_statements(std::move(else_stmts));
|
|
|
|
EXPECT_FALSE(stmt.IsValid());
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST_F(IfStatementTest, IsValid_InvalidElseStatement) {
|
2020-11-13 22:03:58 +00:00
|
|
|
auto cond = create<IdentifierExpression>("cond");
|
|
|
|
auto body = create<ast::BlockStatement>();
|
|
|
|
body->append(create<DiscardStatement>());
|
2020-03-16 13:39:44 +00:00
|
|
|
|
2020-04-06 19:37:37 +00:00
|
|
|
ElseStatementList else_stmts;
|
2020-11-13 22:03:58 +00:00
|
|
|
else_stmts.push_back(create<ElseStatement>());
|
|
|
|
else_stmts[0]->set_condition(create<IdentifierExpression>(""));
|
2020-03-16 13:39:44 +00:00
|
|
|
|
|
|
|
IfStatement stmt(std::move(cond), std::move(body));
|
|
|
|
stmt.set_else_statements(std::move(else_stmts));
|
|
|
|
EXPECT_FALSE(stmt.IsValid());
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST_F(IfStatementTest, IsValid_MultipleElseWiththoutCondition) {
|
2020-11-13 22:03:58 +00:00
|
|
|
auto cond = create<IdentifierExpression>("cond");
|
|
|
|
auto body = create<ast::BlockStatement>();
|
|
|
|
body->append(create<DiscardStatement>());
|
2020-03-16 13:39:44 +00:00
|
|
|
|
2020-04-06 19:37:37 +00:00
|
|
|
ElseStatementList else_stmts;
|
2020-11-13 22:03:58 +00:00
|
|
|
else_stmts.push_back(create<ElseStatement>());
|
|
|
|
else_stmts.push_back(create<ElseStatement>());
|
2020-03-16 13:39:44 +00:00
|
|
|
|
|
|
|
IfStatement stmt(std::move(cond), std::move(body));
|
|
|
|
stmt.set_else_statements(std::move(else_stmts));
|
|
|
|
EXPECT_FALSE(stmt.IsValid());
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST_F(IfStatementTest, IsValid_ElseNotLast) {
|
2020-11-13 22:03:58 +00:00
|
|
|
auto cond = create<IdentifierExpression>("cond");
|
|
|
|
auto body = create<ast::BlockStatement>();
|
|
|
|
body->append(create<DiscardStatement>());
|
2020-03-16 13:39:44 +00:00
|
|
|
|
2020-04-06 19:37:37 +00:00
|
|
|
ElseStatementList else_stmts;
|
2020-11-13 22:03:58 +00:00
|
|
|
else_stmts.push_back(create<ElseStatement>());
|
|
|
|
else_stmts.push_back(create<ElseStatement>());
|
|
|
|
else_stmts[1]->set_condition(create<IdentifierExpression>("ident"));
|
2020-03-16 13:39:44 +00:00
|
|
|
|
|
|
|
IfStatement stmt(std::move(cond), std::move(body));
|
|
|
|
stmt.set_else_statements(std::move(else_stmts));
|
|
|
|
EXPECT_FALSE(stmt.IsValid());
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST_F(IfStatementTest, ToStr) {
|
2020-11-13 22:03:58 +00:00
|
|
|
auto cond = create<IdentifierExpression>("cond");
|
|
|
|
auto body = create<ast::BlockStatement>();
|
|
|
|
body->append(create<DiscardStatement>());
|
2020-03-16 13:39:44 +00:00
|
|
|
|
|
|
|
IfStatement stmt(std::move(cond), std::move(body));
|
|
|
|
|
|
|
|
std::ostringstream out;
|
|
|
|
stmt.to_str(out, 2);
|
|
|
|
EXPECT_EQ(out.str(), R"( If{
|
|
|
|
(
|
|
|
|
Identifier{cond}
|
|
|
|
)
|
|
|
|
{
|
2020-07-25 14:33:50 +00:00
|
|
|
Discard{}
|
2020-03-16 13:39:44 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
)");
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST_F(IfStatementTest, ToStr_WithElseStatements) {
|
2020-11-13 22:03:58 +00:00
|
|
|
auto cond = create<IdentifierExpression>("cond");
|
|
|
|
auto body = create<ast::BlockStatement>();
|
|
|
|
body->append(create<DiscardStatement>());
|
2020-03-16 13:39:44 +00:00
|
|
|
|
2020-11-13 22:03:58 +00:00
|
|
|
auto else_if_body = create<BlockStatement>();
|
|
|
|
else_if_body->append(create<DiscardStatement>());
|
2020-03-16 13:39:44 +00:00
|
|
|
|
2020-11-13 22:03:58 +00:00
|
|
|
auto else_body = create<BlockStatement>();
|
|
|
|
else_body->append(create<DiscardStatement>());
|
|
|
|
else_body->append(create<DiscardStatement>());
|
2020-03-16 13:39:44 +00:00
|
|
|
|
2020-04-06 19:37:37 +00:00
|
|
|
ElseStatementList else_stmts;
|
2020-11-13 22:03:58 +00:00
|
|
|
else_stmts.push_back(create<ElseStatement>());
|
|
|
|
else_stmts[0]->set_condition(create<IdentifierExpression>("ident"));
|
2020-03-16 13:39:44 +00:00
|
|
|
else_stmts[0]->set_body(std::move(else_if_body));
|
2020-11-13 22:03:58 +00:00
|
|
|
else_stmts.push_back(create<ElseStatement>());
|
2020-03-16 13:39:44 +00:00
|
|
|
else_stmts[1]->set_body(std::move(else_body));
|
|
|
|
|
|
|
|
IfStatement stmt(std::move(cond), std::move(body));
|
|
|
|
stmt.set_else_statements(std::move(else_stmts));
|
|
|
|
|
|
|
|
std::ostringstream out;
|
|
|
|
stmt.to_str(out, 2);
|
|
|
|
EXPECT_EQ(out.str(), R"( If{
|
|
|
|
(
|
|
|
|
Identifier{cond}
|
|
|
|
)
|
|
|
|
{
|
2020-07-25 14:33:50 +00:00
|
|
|
Discard{}
|
2020-03-16 13:39:44 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
Else{
|
|
|
|
(
|
|
|
|
Identifier{ident}
|
|
|
|
)
|
|
|
|
{
|
2020-07-25 14:33:50 +00:00
|
|
|
Discard{}
|
2020-03-16 13:39:44 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
Else{
|
|
|
|
{
|
2020-07-25 14:33:50 +00:00
|
|
|
Discard{}
|
|
|
|
Discard{}
|
2020-03-16 13:39:44 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
)");
|
|
|
|
}
|
|
|
|
|
2020-03-26 15:31:43 +00:00
|
|
|
} // namespace
|
2020-03-16 13:39:44 +00:00
|
|
|
} // namespace ast
|
|
|
|
} // namespace tint
|