2020-03-17 03:53:41 +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/switch_statement.h"
|
|
|
|
|
|
|
|
#include <sstream>
|
|
|
|
|
|
|
|
#include "src/ast/case_statement.h"
|
|
|
|
#include "src/ast/identifier_expression.h"
|
2020-06-02 20:12:02 +00:00
|
|
|
#include "src/ast/sint_literal.h"
|
2020-11-13 21:58:28 +00:00
|
|
|
#include "src/ast/test_helper.h"
|
2020-06-02 20:12:02 +00:00
|
|
|
#include "src/ast/type/i32_type.h"
|
2020-03-17 03:53:41 +00:00
|
|
|
|
|
|
|
namespace tint {
|
|
|
|
namespace ast {
|
2020-03-26 15:31:43 +00:00
|
|
|
namespace {
|
2020-03-17 03:53:41 +00:00
|
|
|
|
2020-11-13 21:58:28 +00:00
|
|
|
using SwitchStatementTest = TestHelper;
|
2020-03-17 03:53:41 +00:00
|
|
|
|
|
|
|
TEST_F(SwitchStatementTest, Creation) {
|
2020-11-30 23:30:58 +00:00
|
|
|
type::I32 i32;
|
2020-06-02 20:12:02 +00:00
|
|
|
|
2020-06-01 16:56:46 +00:00
|
|
|
CaseSelectorList lit;
|
2020-11-13 22:03:58 +00:00
|
|
|
lit.push_back(create<SintLiteral>(&i32, 1));
|
2020-06-02 20:12:02 +00:00
|
|
|
|
2020-12-11 19:16:13 +00:00
|
|
|
auto* ident =
|
|
|
|
create<IdentifierExpression>(mod.RegisterSymbol("ident"), "ident");
|
2020-04-06 19:37:37 +00:00
|
|
|
CaseStatementList body;
|
2020-11-30 23:30:58 +00:00
|
|
|
auto* case_stmt = create<CaseStatement>(lit, create<BlockStatement>());
|
2020-11-16 16:41:47 +00:00
|
|
|
body.push_back(case_stmt);
|
2020-03-17 03:53:41 +00:00
|
|
|
|
2020-11-16 16:41:47 +00:00
|
|
|
SwitchStatement stmt(ident, body);
|
|
|
|
EXPECT_EQ(stmt.condition(), ident);
|
2020-04-17 13:18:20 +00:00
|
|
|
ASSERT_EQ(stmt.body().size(), 1u);
|
2020-11-16 16:41:47 +00:00
|
|
|
EXPECT_EQ(stmt.body()[0], case_stmt);
|
2020-03-17 03:53:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
TEST_F(SwitchStatementTest, Creation_WithSource) {
|
2020-12-11 19:16:13 +00:00
|
|
|
auto* ident =
|
|
|
|
create<IdentifierExpression>(mod.RegisterSymbol("ident"), "ident");
|
2020-03-17 03:53:41 +00:00
|
|
|
|
2020-11-16 16:41:47 +00:00
|
|
|
SwitchStatement stmt(Source{Source::Location{20, 2}}, ident,
|
2020-11-03 16:26:09 +00:00
|
|
|
CaseStatementList());
|
2020-03-17 03:53:41 +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-17 03:53:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
TEST_F(SwitchStatementTest, IsSwitch) {
|
2020-12-02 18:48:58 +00:00
|
|
|
type::I32 i32;
|
|
|
|
|
|
|
|
CaseSelectorList lit;
|
|
|
|
lit.push_back(create<SintLiteral>(&i32, 2));
|
|
|
|
|
2020-12-11 19:16:13 +00:00
|
|
|
auto* ident =
|
|
|
|
create<IdentifierExpression>(mod.RegisterSymbol("ident"), "ident");
|
2020-12-02 18:48:58 +00:00
|
|
|
CaseStatementList body;
|
|
|
|
body.push_back(create<CaseStatement>(lit, create<BlockStatement>()));
|
|
|
|
|
|
|
|
SwitchStatement stmt(ident, body);
|
2020-11-30 23:30:58 +00:00
|
|
|
EXPECT_TRUE(stmt.Is<SwitchStatement>());
|
2020-03-17 03:53:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
TEST_F(SwitchStatementTest, IsValid) {
|
2020-11-30 23:30:58 +00:00
|
|
|
type::I32 i32;
|
2020-06-02 20:12:02 +00:00
|
|
|
|
2020-06-01 16:56:46 +00:00
|
|
|
CaseSelectorList lit;
|
2020-11-13 22:03:58 +00:00
|
|
|
lit.push_back(create<SintLiteral>(&i32, 2));
|
2020-06-02 20:12:02 +00:00
|
|
|
|
2020-12-11 19:16:13 +00:00
|
|
|
auto* ident =
|
|
|
|
create<IdentifierExpression>(mod.RegisterSymbol("ident"), "ident");
|
2020-04-06 19:37:37 +00:00
|
|
|
CaseStatementList body;
|
2020-11-30 23:30:58 +00:00
|
|
|
body.push_back(create<CaseStatement>(lit, create<BlockStatement>()));
|
2020-03-17 03:53:41 +00:00
|
|
|
|
2020-11-16 16:41:47 +00:00
|
|
|
SwitchStatement stmt(ident, body);
|
2020-03-17 03:53:41 +00:00
|
|
|
EXPECT_TRUE(stmt.IsValid());
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST_F(SwitchStatementTest, IsValid_Null_Condition) {
|
2020-11-30 23:30:58 +00:00
|
|
|
type::I32 i32;
|
2020-06-02 20:12:02 +00:00
|
|
|
|
2020-06-01 16:56:46 +00:00
|
|
|
CaseSelectorList lit;
|
2020-11-13 22:03:58 +00:00
|
|
|
lit.push_back(create<SintLiteral>(&i32, 2));
|
2020-06-02 20:12:02 +00:00
|
|
|
|
2020-04-06 19:37:37 +00:00
|
|
|
CaseStatementList body;
|
2020-11-30 23:30:58 +00:00
|
|
|
body.push_back(create<CaseStatement>(lit, create<BlockStatement>()));
|
2020-03-17 03:53:41 +00:00
|
|
|
|
2020-12-02 18:48:58 +00:00
|
|
|
SwitchStatement stmt(nullptr, body);
|
2020-03-17 03:53:41 +00:00
|
|
|
EXPECT_FALSE(stmt.IsValid());
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST_F(SwitchStatementTest, IsValid_Invalid_Condition) {
|
2020-11-30 23:30:58 +00:00
|
|
|
type::I32 i32;
|
2020-06-02 20:12:02 +00:00
|
|
|
|
2020-06-01 16:56:46 +00:00
|
|
|
CaseSelectorList lit;
|
2020-11-13 22:03:58 +00:00
|
|
|
lit.push_back(create<SintLiteral>(&i32, 2));
|
2020-06-02 20:12:02 +00:00
|
|
|
|
2020-12-11 19:16:13 +00:00
|
|
|
auto* ident = create<IdentifierExpression>(mod.RegisterSymbol(""), "");
|
2020-04-06 19:37:37 +00:00
|
|
|
CaseStatementList body;
|
2020-11-30 23:30:58 +00:00
|
|
|
body.push_back(create<CaseStatement>(lit, create<BlockStatement>()));
|
2020-03-17 03:53:41 +00:00
|
|
|
|
2020-11-16 16:41:47 +00:00
|
|
|
SwitchStatement stmt(ident, body);
|
2020-03-17 03:53:41 +00:00
|
|
|
EXPECT_FALSE(stmt.IsValid());
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST_F(SwitchStatementTest, IsValid_Null_BodyStatement) {
|
2020-11-30 23:30:58 +00:00
|
|
|
type::I32 i32;
|
2020-06-02 20:12:02 +00:00
|
|
|
|
2020-06-01 16:56:46 +00:00
|
|
|
CaseSelectorList lit;
|
2020-11-13 22:03:58 +00:00
|
|
|
lit.push_back(create<SintLiteral>(&i32, 2));
|
2020-06-02 20:12:02 +00:00
|
|
|
|
2020-12-11 19:16:13 +00:00
|
|
|
auto* ident =
|
|
|
|
create<IdentifierExpression>(mod.RegisterSymbol("ident"), "ident");
|
2020-04-06 19:37:37 +00:00
|
|
|
CaseStatementList body;
|
2020-11-30 23:30:58 +00:00
|
|
|
body.push_back(create<CaseStatement>(lit, create<BlockStatement>()));
|
2020-03-17 03:53:41 +00:00
|
|
|
body.push_back(nullptr);
|
|
|
|
|
2020-11-16 16:41:47 +00:00
|
|
|
SwitchStatement stmt(ident, body);
|
2020-03-17 03:53:41 +00:00
|
|
|
EXPECT_FALSE(stmt.IsValid());
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST_F(SwitchStatementTest, IsValid_Invalid_BodyStatement) {
|
2020-12-11 19:16:13 +00:00
|
|
|
auto* ident =
|
|
|
|
create<IdentifierExpression>(mod.RegisterSymbol("ident"), "ident");
|
2020-03-17 03:53:41 +00:00
|
|
|
|
2020-11-30 23:30:58 +00:00
|
|
|
auto* case_body = create<BlockStatement>();
|
2020-07-27 15:25:00 +00:00
|
|
|
case_body->append(nullptr);
|
2020-03-17 03:53:41 +00:00
|
|
|
|
2020-04-06 19:37:37 +00:00
|
|
|
CaseStatementList body;
|
2020-11-16 16:41:47 +00:00
|
|
|
body.push_back(create<CaseStatement>(CaseSelectorList{}, case_body));
|
2020-03-17 03:53:41 +00:00
|
|
|
|
2020-11-16 16:41:47 +00:00
|
|
|
SwitchStatement stmt(ident, body);
|
2020-03-17 03:53:41 +00:00
|
|
|
EXPECT_FALSE(stmt.IsValid());
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST_F(SwitchStatementTest, ToStr_Empty) {
|
2020-12-11 19:16:13 +00:00
|
|
|
auto* ident =
|
|
|
|
create<IdentifierExpression>(mod.RegisterSymbol("ident"), "ident");
|
2020-03-17 03:53:41 +00:00
|
|
|
|
2020-11-16 16:41:47 +00:00
|
|
|
SwitchStatement stmt(ident, {});
|
2020-03-17 03:53:41 +00:00
|
|
|
std::ostringstream out;
|
|
|
|
stmt.to_str(out, 2);
|
2020-12-11 19:16:13 +00:00
|
|
|
EXPECT_EQ(demangle(out.str()), R"( Switch{
|
2020-11-16 14:46:27 +00:00
|
|
|
Identifier[not set]{ident}
|
2020-03-17 03:53:41 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
}
|
|
|
|
)");
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST_F(SwitchStatementTest, ToStr) {
|
2020-11-30 23:30:58 +00:00
|
|
|
type::I32 i32;
|
2020-06-02 20:12:02 +00:00
|
|
|
|
2020-06-01 16:56:46 +00:00
|
|
|
CaseSelectorList lit;
|
2020-11-13 22:03:58 +00:00
|
|
|
lit.push_back(create<SintLiteral>(&i32, 2));
|
2020-06-02 20:12:02 +00:00
|
|
|
|
2020-12-11 19:16:13 +00:00
|
|
|
auto* ident =
|
|
|
|
create<IdentifierExpression>(mod.RegisterSymbol("ident"), "ident");
|
2020-04-06 19:37:37 +00:00
|
|
|
CaseStatementList body;
|
2020-11-30 23:30:58 +00:00
|
|
|
body.push_back(create<CaseStatement>(lit, create<BlockStatement>()));
|
2020-03-17 03:53:41 +00:00
|
|
|
|
2020-11-16 16:41:47 +00:00
|
|
|
SwitchStatement stmt(ident, body);
|
2020-03-17 03:53:41 +00:00
|
|
|
std::ostringstream out;
|
|
|
|
stmt.to_str(out, 2);
|
2020-12-11 19:16:13 +00:00
|
|
|
EXPECT_EQ(demangle(out.str()), R"( Switch{
|
2020-11-16 14:46:27 +00:00
|
|
|
Identifier[not set]{ident}
|
2020-03-17 03:53:41 +00:00
|
|
|
{
|
2020-06-02 20:12:02 +00:00
|
|
|
Case 2{
|
2020-03-17 03:53:41 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
)");
|
|
|
|
}
|
|
|
|
|
2020-03-26 15:31:43 +00:00
|
|
|
} // namespace
|
2020-03-17 03:53:41 +00:00
|
|
|
} // namespace ast
|
|
|
|
} // namespace tint
|