|  | // 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 "gtest/gtest-spi.h" | 
|  | #include "src/ast/test_helper.h" | 
|  |  | 
|  | namespace tint { | 
|  | namespace ast { | 
|  | namespace { | 
|  |  | 
|  | using SwitchStatementTest = TestHelper; | 
|  |  | 
|  | TEST_F(SwitchStatementTest, Creation) { | 
|  | CaseSelectorList lit; | 
|  | lit.push_back(create<SintLiteral>(ty.i32(), 1)); | 
|  |  | 
|  | auto* ident = Expr("ident"); | 
|  | CaseStatementList body; | 
|  | auto* case_stmt = | 
|  | create<CaseStatement>(lit, create<BlockStatement>(StatementList{})); | 
|  | body.push_back(case_stmt); | 
|  |  | 
|  | auto* stmt = create<SwitchStatement>(ident, body); | 
|  | EXPECT_EQ(stmt->condition(), ident); | 
|  | ASSERT_EQ(stmt->body().size(), 1u); | 
|  | EXPECT_EQ(stmt->body()[0], case_stmt); | 
|  | } | 
|  |  | 
|  | TEST_F(SwitchStatementTest, Creation_WithSource) { | 
|  | auto* ident = Expr("ident"); | 
|  |  | 
|  | auto* stmt = create<SwitchStatement>(Source{Source::Location{20, 2}}, ident, | 
|  | CaseStatementList()); | 
|  | auto src = stmt->source(); | 
|  | EXPECT_EQ(src.range.begin.line, 20u); | 
|  | EXPECT_EQ(src.range.begin.column, 2u); | 
|  | } | 
|  |  | 
|  | TEST_F(SwitchStatementTest, IsSwitch) { | 
|  | CaseSelectorList lit; | 
|  | lit.push_back(create<SintLiteral>(ty.i32(), 2)); | 
|  |  | 
|  | auto* ident = Expr("ident"); | 
|  | CaseStatementList body; | 
|  | body.push_back( | 
|  | create<CaseStatement>(lit, create<BlockStatement>(StatementList{}))); | 
|  |  | 
|  | auto* stmt = create<SwitchStatement>(ident, body); | 
|  | EXPECT_TRUE(stmt->Is<SwitchStatement>()); | 
|  | } | 
|  |  | 
|  | TEST_F(SwitchStatementTest, Assert_Null_Condition) { | 
|  | EXPECT_FATAL_FAILURE( | 
|  | { | 
|  | ProgramBuilder b; | 
|  | CaseStatementList cases; | 
|  | cases.push_back( | 
|  | b.create<CaseStatement>(CaseSelectorList{b.Literal(1)}, | 
|  | b.create<BlockStatement>(StatementList{}))); | 
|  | b.create<SwitchStatement>(nullptr, cases); | 
|  | }, | 
|  | "internal compiler error"); | 
|  | } | 
|  |  | 
|  | TEST_F(SwitchStatementTest, Assert_Null_CaseStatement) { | 
|  | EXPECT_FATAL_FAILURE( | 
|  | { | 
|  | ProgramBuilder b; | 
|  | b.create<SwitchStatement>(b.Expr(true), CaseStatementList{nullptr}); | 
|  | }, | 
|  | "internal compiler error"); | 
|  | } | 
|  |  | 
|  | TEST_F(SwitchStatementTest, ToStr_Empty) { | 
|  | auto* ident = Expr("ident"); | 
|  |  | 
|  | auto* stmt = create<SwitchStatement>(ident, CaseStatementList{}); | 
|  | EXPECT_EQ(str(stmt), R"(Switch{ | 
|  | Identifier[not set]{ident} | 
|  | { | 
|  | } | 
|  | } | 
|  | )"); | 
|  | } | 
|  |  | 
|  | TEST_F(SwitchStatementTest, ToStr) { | 
|  | CaseSelectorList lit; | 
|  | lit.push_back(create<SintLiteral>(ty.i32(), 2)); | 
|  |  | 
|  | auto* ident = Expr("ident"); | 
|  | CaseStatementList body; | 
|  | body.push_back( | 
|  | create<CaseStatement>(lit, create<BlockStatement>(StatementList{}))); | 
|  |  | 
|  | auto* stmt = create<SwitchStatement>(ident, body); | 
|  | EXPECT_EQ(str(stmt), R"(Switch{ | 
|  | Identifier[not set]{ident} | 
|  | { | 
|  | Case 2{ | 
|  | } | 
|  | } | 
|  | } | 
|  | )"); | 
|  | } | 
|  |  | 
|  | }  // namespace | 
|  | }  // namespace ast | 
|  | }  // namespace tint |