mirror of
https://github.com/encounter/dawn-cmake.git
synced 2025-10-10 03:49:04 +00:00
This CL updates the WGSL parser to parse `default` as a case selector value. Bug: tint:1633 Change-Id: I57661d25924e36bec5c03f96399c557fb7bbf760 Reviewed-on: https://dawn-review.googlesource.com/c/dawn/+/106382 Commit-Queue: Dan Sinclair <dsinclair@chromium.org> Commit-Queue: Ben Clayton <bclayton@google.com> Auto-Submit: Dan Sinclair <dsinclair@chromium.org> Kokoro: Kokoro <noreply+kokoro@google.com> Reviewed-by: Ben Clayton <bclayton@google.com>
112 lines
4.0 KiB
C++
112 lines
4.0 KiB
C++
// 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/tint/ast/switch_statement.h"
|
|
|
|
#include "gtest/gtest-spi.h"
|
|
#include "src/tint/ast/test_helper.h"
|
|
|
|
using namespace tint::number_suffixes; // NOLINT
|
|
|
|
namespace tint::ast {
|
|
namespace {
|
|
|
|
using SwitchStatementTest = TestHelper;
|
|
|
|
TEST_F(SwitchStatementTest, Creation) {
|
|
auto* case_stmt = create<CaseStatement>(utils::Vector{CaseSelector(1_u)}, Block());
|
|
auto* ident = Expr("ident");
|
|
utils::Vector body{case_stmt};
|
|
|
|
auto* stmt = create<SwitchStatement>(ident, body);
|
|
EXPECT_EQ(stmt->condition, ident);
|
|
ASSERT_EQ(stmt->body.Length(), 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, utils::Empty);
|
|
auto src = stmt->source;
|
|
EXPECT_EQ(src.range.begin.line, 20u);
|
|
EXPECT_EQ(src.range.begin.column, 2u);
|
|
}
|
|
|
|
TEST_F(SwitchStatementTest, IsSwitch) {
|
|
utils::Vector lit{CaseSelector(2_i)};
|
|
auto* ident = Expr("ident");
|
|
utils::Vector body{create<CaseStatement>(lit, Block())};
|
|
|
|
auto* stmt = create<SwitchStatement>(ident, body);
|
|
EXPECT_TRUE(stmt->Is<SwitchStatement>());
|
|
}
|
|
|
|
TEST_F(SwitchStatementTest, Assert_Null_Condition) {
|
|
using CaseStatementList = utils::Vector<const ast::CaseStatement*, 2>;
|
|
EXPECT_FATAL_FAILURE(
|
|
{
|
|
ProgramBuilder b;
|
|
CaseStatementList cases;
|
|
cases.Push(
|
|
b.create<CaseStatement>(utils::Vector{b.CaseSelector(b.Expr(1_i))}, b.Block()));
|
|
b.create<SwitchStatement>(nullptr, cases);
|
|
},
|
|
"internal compiler error");
|
|
}
|
|
|
|
TEST_F(SwitchStatementTest, Assert_Null_CaseStatement) {
|
|
using CaseStatementList = utils::Vector<const ast::CaseStatement*, 2>;
|
|
EXPECT_FATAL_FAILURE(
|
|
{
|
|
ProgramBuilder b;
|
|
b.create<SwitchStatement>(b.Expr(true), CaseStatementList{nullptr});
|
|
},
|
|
"internal compiler error");
|
|
}
|
|
|
|
TEST_F(SwitchStatementTest, Assert_DifferentProgramID_Condition) {
|
|
EXPECT_FATAL_FAILURE(
|
|
{
|
|
ProgramBuilder b1;
|
|
ProgramBuilder b2;
|
|
b1.create<SwitchStatement>(b2.Expr(true), utils::Vector{
|
|
b1.create<CaseStatement>(
|
|
utils::Vector{
|
|
b1.CaseSelector(b1.Expr(1_i)),
|
|
},
|
|
b1.Block()),
|
|
});
|
|
},
|
|
"internal compiler error");
|
|
}
|
|
|
|
TEST_F(SwitchStatementTest, Assert_DifferentProgramID_CaseStatement) {
|
|
EXPECT_FATAL_FAILURE(
|
|
{
|
|
ProgramBuilder b1;
|
|
ProgramBuilder b2;
|
|
b1.create<SwitchStatement>(b1.Expr(true), utils::Vector{
|
|
b2.create<CaseStatement>(
|
|
utils::Vector{
|
|
b2.CaseSelector(b2.Expr(1_i)),
|
|
},
|
|
b2.Block()),
|
|
});
|
|
},
|
|
"internal compiler error");
|
|
}
|
|
|
|
} // namespace
|
|
} // namespace tint::ast
|