mirror of
https://github.com/encounter/dawn-cmake.git
synced 2025-07-02 11:25:02 +00:00
Remove the decoration groupings (Array, Function, Struct, StructMember, Type, Variable), such that all *Decoration classes now subclass ast::Decoration directly. This allows for decorations to be used in multiple places; for example, builtin decorations are now valid for both variables and struct members. Checking that decoration lists only contain decorations that are valid for the node that they are attached to is now done inside the validator. Change-Id: Ie8c0e53e5730a7dedea50a1dec8f26f9e7b00e8d Reviewed-on: https://dawn-review.googlesource.com/c/tint/+/44320 Commit-Queue: James Price <jrprice@google.com> Reviewed-by: Ben Clayton <bclayton@chromium.org>
88 lines
2.3 KiB
C++
88 lines
2.3 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 "gtest/gtest-spi.h"
|
|
#include "src/ast/test_helper.h"
|
|
|
|
namespace tint {
|
|
namespace ast {
|
|
namespace {
|
|
|
|
using ModuleTest = TestHelper;
|
|
|
|
TEST_F(ModuleTest, Creation) {
|
|
EXPECT_EQ(Program(std::move(*this)).AST().Functions().size(), 0u);
|
|
}
|
|
|
|
TEST_F(ModuleTest, ToStrEmitsPreambleAndPostamble) {
|
|
const auto str = Program(std::move(*this)).to_str();
|
|
auto* const expected = "Module{\n}\n";
|
|
EXPECT_EQ(str, expected);
|
|
}
|
|
|
|
TEST_F(ModuleTest, LookupFunction) {
|
|
auto* func = Func("main", VariableList{}, ty.f32(), StatementList{},
|
|
ast::DecorationList{});
|
|
|
|
Program program(std::move(*this));
|
|
EXPECT_EQ(func,
|
|
program.AST().Functions().Find(program.Symbols().Get("main")));
|
|
}
|
|
|
|
TEST_F(ModuleTest, LookupFunctionMissing) {
|
|
Program program(std::move(*this));
|
|
EXPECT_EQ(nullptr,
|
|
program.AST().Functions().Find(program.Symbols().Get("Missing")));
|
|
}
|
|
|
|
TEST_F(ModuleTest, Assert_Null_GlobalVariable) {
|
|
EXPECT_FATAL_FAILURE(
|
|
{
|
|
ProgramBuilder builder;
|
|
builder.AST().AddGlobalVariable(nullptr);
|
|
},
|
|
"internal compiler error");
|
|
}
|
|
|
|
TEST_F(ModuleTest, Assert_Invalid_GlobalVariable) {
|
|
EXPECT_FATAL_FAILURE(
|
|
{
|
|
ProgramBuilder builder;
|
|
builder.Global("var", nullptr, StorageClass::kInput);
|
|
},
|
|
"internal compiler error");
|
|
}
|
|
|
|
TEST_F(ModuleTest, Assert_Null_ConstructedType) {
|
|
EXPECT_FATAL_FAILURE(
|
|
{
|
|
ProgramBuilder builder;
|
|
builder.AST().AddConstructedType(nullptr);
|
|
},
|
|
"internal compiler error");
|
|
}
|
|
|
|
TEST_F(ModuleTest, Assert_Null_Function) {
|
|
EXPECT_FATAL_FAILURE(
|
|
{
|
|
ProgramBuilder builder;
|
|
builder.AST().AddFunction(nullptr);
|
|
},
|
|
"internal compiler error");
|
|
}
|
|
|
|
} // namespace
|
|
} // namespace ast
|
|
} // namespace tint
|