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-12-12 01:38:13 +00:00
|
|
|
auto* cond = create<IdentifierExpression>(Source{},
|
|
|
|
mod.RegisterSymbol("cond"), "cond");
|
2020-11-16 16:31:07 +00:00
|
|
|
auto* body = create<BlockStatement>();
|
2020-11-13 22:03:58 +00:00
|
|
|
body->append(create<DiscardStatement>());
|
2020-03-16 13:39:44 +00:00
|
|
|
|
2020-12-07 20:11:24 +00:00
|
|
|
IfStatement stmt(Source{Source::Location{20, 2}}, cond, body,
|
|
|
|
ElseStatementList{});
|
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) {
|
2020-12-07 20:11:24 +00:00
|
|
|
IfStatement stmt(Source{}, nullptr, create<BlockStatement>(),
|
|
|
|
ElseStatementList{});
|
2020-11-30 23:30:58 +00:00
|
|
|
EXPECT_TRUE(stmt.Is<IfStatement>());
|
2020-03-16 13:39:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
TEST_F(IfStatementTest, IsValid) {
|
2020-12-12 01:38:13 +00:00
|
|
|
auto* cond = create<IdentifierExpression>(Source{},
|
|
|
|
mod.RegisterSymbol("cond"), "cond");
|
2020-11-16 16:31:07 +00:00
|
|
|
auto* body = create<BlockStatement>();
|
2020-11-13 22:03:58 +00:00
|
|
|
body->append(create<DiscardStatement>());
|
2020-03-16 13:39:44 +00:00
|
|
|
|
2020-12-07 20:11:24 +00:00
|
|
|
IfStatement stmt(Source{}, cond, body, ElseStatementList{});
|
2020-03-16 13:39:44 +00:00
|
|
|
EXPECT_TRUE(stmt.IsValid());
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST_F(IfStatementTest, IsValid_WithElseStatements) {
|
2020-12-12 01:38:13 +00:00
|
|
|
auto* cond = create<IdentifierExpression>(Source{},
|
|
|
|
mod.RegisterSymbol("cond"), "cond");
|
2020-11-16 16:31:07 +00:00
|
|
|
auto* body = create<BlockStatement>();
|
2020-11-13 22:03:58 +00:00
|
|
|
body->append(create<DiscardStatement>());
|
2020-03-16 13:39:44 +00:00
|
|
|
|
2020-12-12 01:38:13 +00:00
|
|
|
IfStatement stmt(Source{}, cond, body,
|
|
|
|
{
|
|
|
|
create<ElseStatement>(
|
|
|
|
create<IdentifierExpression>(
|
|
|
|
Source{}, mod.RegisterSymbol("Ident"), "Ident"),
|
|
|
|
create<BlockStatement>()),
|
|
|
|
create<ElseStatement>(create<BlockStatement>()),
|
|
|
|
});
|
2020-03-16 13:39:44 +00:00
|
|
|
EXPECT_TRUE(stmt.IsValid());
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST_F(IfStatementTest, IsValid_MissingCondition) {
|
2020-11-16 16:31:07 +00:00
|
|
|
auto* body = create<BlockStatement>();
|
2020-11-13 22:03:58 +00:00
|
|
|
body->append(create<DiscardStatement>());
|
2020-03-16 13:39:44 +00:00
|
|
|
|
2020-12-07 20:11:24 +00:00
|
|
|
IfStatement stmt(Source{}, nullptr, body, ElseStatementList{});
|
2020-03-16 13:39:44 +00:00
|
|
|
EXPECT_FALSE(stmt.IsValid());
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST_F(IfStatementTest, IsValid_InvalidCondition) {
|
2020-12-12 01:38:13 +00:00
|
|
|
auto* cond =
|
|
|
|
create<IdentifierExpression>(Source{}, mod.RegisterSymbol(""), "");
|
2020-11-16 16:31:07 +00:00
|
|
|
auto* body = create<BlockStatement>();
|
2020-11-13 22:03:58 +00:00
|
|
|
body->append(create<DiscardStatement>());
|
2020-03-16 13:39:44 +00:00
|
|
|
|
2020-12-07 20:11:24 +00:00
|
|
|
IfStatement stmt(Source{}, cond, body, ElseStatementList{});
|
2020-03-16 13:39:44 +00:00
|
|
|
EXPECT_FALSE(stmt.IsValid());
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST_F(IfStatementTest, IsValid_NullBodyStatement) {
|
2020-12-12 01:38:13 +00:00
|
|
|
auto* cond = create<IdentifierExpression>(Source{},
|
|
|
|
mod.RegisterSymbol("cond"), "cond");
|
2020-11-16 16:31:07 +00:00
|
|
|
auto* body = create<BlockStatement>();
|
2020-11-13 22:03:58 +00:00
|
|
|
body->append(create<DiscardStatement>());
|
2020-07-27 15:25:00 +00:00
|
|
|
body->append(nullptr);
|
2020-03-16 13:39:44 +00:00
|
|
|
|
2020-12-07 20:11:24 +00:00
|
|
|
IfStatement stmt(Source{}, cond, body, ElseStatementList{});
|
2020-03-16 13:39:44 +00:00
|
|
|
EXPECT_FALSE(stmt.IsValid());
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST_F(IfStatementTest, IsValid_InvalidBodyStatement) {
|
2020-12-12 01:38:13 +00:00
|
|
|
auto* cond = create<IdentifierExpression>(Source{},
|
|
|
|
mod.RegisterSymbol("cond"), "cond");
|
2020-11-16 16:31:07 +00:00
|
|
|
auto* body = create<BlockStatement>();
|
2020-11-13 22:03:58 +00:00
|
|
|
body->append(create<DiscardStatement>());
|
2020-12-07 20:11:24 +00:00
|
|
|
body->append(create<IfStatement>(Source{}, nullptr, create<BlockStatement>(),
|
|
|
|
ast::ElseStatementList{}));
|
2020-03-16 13:39:44 +00:00
|
|
|
|
2020-12-07 20:11:24 +00:00
|
|
|
IfStatement stmt(Source{}, cond, body, ElseStatementList{});
|
2020-03-16 13:39:44 +00:00
|
|
|
EXPECT_FALSE(stmt.IsValid());
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST_F(IfStatementTest, IsValid_NullElseStatement) {
|
2020-12-12 01:38:13 +00:00
|
|
|
auto* cond = create<IdentifierExpression>(Source{},
|
|
|
|
mod.RegisterSymbol("cond"), "cond");
|
2020-11-16 16:31:07 +00:00
|
|
|
auto* body = create<BlockStatement>();
|
2020-11-13 22:03:58 +00:00
|
|
|
body->append(create<DiscardStatement>());
|
2020-03-16 13:39:44 +00:00
|
|
|
|
2020-12-12 01:38:13 +00:00
|
|
|
IfStatement stmt(Source{}, cond, body,
|
|
|
|
{
|
|
|
|
create<ElseStatement>(
|
|
|
|
create<IdentifierExpression>(
|
|
|
|
Source{}, mod.RegisterSymbol("Ident"), "Ident"),
|
|
|
|
create<BlockStatement>()),
|
|
|
|
create<ElseStatement>(create<BlockStatement>()),
|
|
|
|
nullptr,
|
|
|
|
});
|
2020-03-16 13:39:44 +00:00
|
|
|
EXPECT_FALSE(stmt.IsValid());
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST_F(IfStatementTest, IsValid_InvalidElseStatement) {
|
2020-12-12 01:38:13 +00:00
|
|
|
auto* cond = create<IdentifierExpression>(Source{},
|
|
|
|
mod.RegisterSymbol("cond"), "cond");
|
2020-11-16 16:31:07 +00:00
|
|
|
auto* body = create<BlockStatement>();
|
2020-11-13 22:03:58 +00:00
|
|
|
body->append(create<DiscardStatement>());
|
2020-03-16 13:39:44 +00:00
|
|
|
|
2020-12-12 01:38:13 +00:00
|
|
|
IfStatement stmt(
|
|
|
|
Source{}, cond, body,
|
|
|
|
{
|
|
|
|
create<ElseStatement>(create<IdentifierExpression>(
|
|
|
|
Source{}, mod.RegisterSymbol(""), ""),
|
|
|
|
create<BlockStatement>()),
|
|
|
|
});
|
2020-03-16 13:39:44 +00:00
|
|
|
EXPECT_FALSE(stmt.IsValid());
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST_F(IfStatementTest, IsValid_MultipleElseWiththoutCondition) {
|
2020-12-12 01:38:13 +00:00
|
|
|
auto* cond = create<IdentifierExpression>(Source{},
|
|
|
|
mod.RegisterSymbol("cond"), "cond");
|
2020-11-16 16:31:07 +00:00
|
|
|
auto* body = create<BlockStatement>();
|
2020-11-13 22:03:58 +00:00
|
|
|
body->append(create<DiscardStatement>());
|
2020-03-16 13:39:44 +00:00
|
|
|
|
2020-12-07 20:11:24 +00:00
|
|
|
IfStatement stmt(Source{}, cond, body,
|
|
|
|
{
|
|
|
|
create<ElseStatement>(create<BlockStatement>()),
|
|
|
|
create<ElseStatement>(create<BlockStatement>()),
|
|
|
|
});
|
2020-03-16 13:39:44 +00:00
|
|
|
EXPECT_FALSE(stmt.IsValid());
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST_F(IfStatementTest, IsValid_ElseNotLast) {
|
2020-12-12 01:38:13 +00:00
|
|
|
auto* cond = create<IdentifierExpression>(Source{},
|
|
|
|
mod.RegisterSymbol("cond"), "cond");
|
2020-11-16 16:31:07 +00:00
|
|
|
auto* body = create<BlockStatement>();
|
2020-11-13 22:03:58 +00:00
|
|
|
body->append(create<DiscardStatement>());
|
2020-03-16 13:39:44 +00:00
|
|
|
|
2020-12-12 01:38:13 +00:00
|
|
|
IfStatement stmt(Source{}, cond, body,
|
|
|
|
{
|
|
|
|
create<ElseStatement>(create<BlockStatement>()),
|
|
|
|
create<ElseStatement>(
|
|
|
|
create<IdentifierExpression>(
|
|
|
|
Source{}, mod.RegisterSymbol("ident"), "ident"),
|
|
|
|
create<BlockStatement>()),
|
|
|
|
});
|
2020-03-16 13:39:44 +00:00
|
|
|
EXPECT_FALSE(stmt.IsValid());
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST_F(IfStatementTest, ToStr) {
|
2020-12-12 01:38:13 +00:00
|
|
|
auto* cond = create<IdentifierExpression>(Source{},
|
|
|
|
mod.RegisterSymbol("cond"), "cond");
|
2020-11-16 16:31:07 +00:00
|
|
|
auto* body = create<BlockStatement>();
|
2020-11-13 22:03:58 +00:00
|
|
|
body->append(create<DiscardStatement>());
|
2020-03-16 13:39:44 +00:00
|
|
|
|
2020-12-07 20:11:24 +00:00
|
|
|
IfStatement stmt(Source{}, cond, body, ElseStatementList{});
|
2020-03-16 13:39:44 +00:00
|
|
|
|
|
|
|
std::ostringstream out;
|
|
|
|
stmt.to_str(out, 2);
|
2020-12-11 19:16:13 +00:00
|
|
|
EXPECT_EQ(demangle(out.str()), R"( If{
|
2020-03-16 13:39:44 +00:00
|
|
|
(
|
2020-11-16 14:46:27 +00:00
|
|
|
Identifier[not set]{cond}
|
2020-03-16 13:39:44 +00:00
|
|
|
)
|
|
|
|
{
|
2020-07-25 14:33:50 +00:00
|
|
|
Discard{}
|
2020-03-16 13:39:44 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
)");
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST_F(IfStatementTest, ToStr_WithElseStatements) {
|
2020-12-12 01:38:13 +00:00
|
|
|
auto* cond = create<IdentifierExpression>(Source{},
|
|
|
|
mod.RegisterSymbol("cond"), "cond");
|
2020-11-16 16:31:07 +00:00
|
|
|
auto* body = create<BlockStatement>();
|
2020-11-13 22:03:58 +00:00
|
|
|
body->append(create<DiscardStatement>());
|
2020-03-16 13:39:44 +00:00
|
|
|
|
2020-11-16 16:31:07 +00:00
|
|
|
auto* else_if_body = create<BlockStatement>();
|
2020-11-13 22:03:58 +00:00
|
|
|
else_if_body->append(create<DiscardStatement>());
|
2020-03-16 13:39:44 +00:00
|
|
|
|
2020-11-16 16:31:07 +00:00
|
|
|
auto* else_body = create<BlockStatement>();
|
2020-11-13 22:03:58 +00:00
|
|
|
else_body->append(create<DiscardStatement>());
|
|
|
|
else_body->append(create<DiscardStatement>());
|
2020-03-16 13:39:44 +00:00
|
|
|
|
2020-12-12 01:38:13 +00:00
|
|
|
IfStatement stmt(Source{}, cond, body,
|
|
|
|
{
|
|
|
|
create<ElseStatement>(
|
|
|
|
create<IdentifierExpression>(
|
|
|
|
Source{}, mod.RegisterSymbol("ident"), "ident"),
|
|
|
|
else_if_body),
|
|
|
|
create<ElseStatement>(else_body),
|
|
|
|
});
|
2020-03-16 13:39:44 +00:00
|
|
|
|
|
|
|
std::ostringstream out;
|
|
|
|
stmt.to_str(out, 2);
|
2020-12-11 19:16:13 +00:00
|
|
|
EXPECT_EQ(demangle(out.str()), R"( If{
|
2020-03-16 13:39:44 +00:00
|
|
|
(
|
2020-11-16 14:46:27 +00:00
|
|
|
Identifier[not set]{cond}
|
2020-03-16 13:39:44 +00:00
|
|
|
)
|
|
|
|
{
|
2020-07-25 14:33:50 +00:00
|
|
|
Discard{}
|
2020-03-16 13:39:44 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
Else{
|
|
|
|
(
|
2020-11-16 14:46:27 +00:00
|
|
|
Identifier[not set]{ident}
|
2020-03-16 13:39:44 +00:00
|
|
|
)
|
|
|
|
{
|
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
|