mirror of
https://github.com/encounter/dawn-cmake.git
synced 2025-07-16 10:05:55 +00:00
This CL removes the import mechanism, the identifier paths and updates all of the standard library methods to be builtins. Bug: tint:242 Change-Id: If09b98a155ae49ced3986ba2c9b517a060693006 Reviewed-on: https://dawn-review.googlesource.com/c/tint/+/28720 Commit-Queue: dan sinclair <dsinclair@chromium.org> Reviewed-by: Ryan Harrison <rharrison@chromium.org>
128 lines
2.9 KiB
C++
128 lines
2.9 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/ast/module.h"
|
|
|
|
#include <sstream>
|
|
#include <utility>
|
|
|
|
#include "gmock/gmock.h"
|
|
#include "src/ast/function.h"
|
|
#include "src/ast/type/f32_type.h"
|
|
#include "src/ast/variable.h"
|
|
|
|
namespace tint {
|
|
namespace ast {
|
|
namespace {
|
|
|
|
using ModuleTest = testing::Test;
|
|
|
|
TEST_F(ModuleTest, Creation) {
|
|
Module m;
|
|
|
|
EXPECT_EQ(m.functions().size(), 0u);
|
|
}
|
|
|
|
TEST_F(ModuleTest, ToStrEmitsPreambleAndPostamble) {
|
|
Module m;
|
|
const auto str = m.to_str();
|
|
auto* const expected = "Module{\n}\n";
|
|
EXPECT_EQ(str, expected);
|
|
}
|
|
|
|
TEST_F(ModuleTest, LookupFunction) {
|
|
type::F32Type f32;
|
|
Module m;
|
|
|
|
auto func = std::make_unique<Function>("main", VariableList{}, &f32);
|
|
auto* func_ptr = func.get();
|
|
m.AddFunction(std::move(func));
|
|
EXPECT_EQ(func_ptr, m.FindFunctionByName("main"));
|
|
}
|
|
|
|
TEST_F(ModuleTest, LookupFunctionMissing) {
|
|
Module m;
|
|
EXPECT_EQ(nullptr, m.FindFunctionByName("Missing"));
|
|
}
|
|
|
|
TEST_F(ModuleTest, IsValid_Empty) {
|
|
Module m;
|
|
EXPECT_TRUE(m.IsValid());
|
|
}
|
|
|
|
TEST_F(ModuleTest, IsValid_GlobalVariable) {
|
|
type::F32Type f32;
|
|
auto var = std::make_unique<Variable>("var", StorageClass::kInput, &f32);
|
|
|
|
Module m;
|
|
m.AddGlobalVariable(std::move(var));
|
|
EXPECT_TRUE(m.IsValid());
|
|
}
|
|
|
|
TEST_F(ModuleTest, IsValid_Null_GlobalVariable) {
|
|
Module m;
|
|
m.AddGlobalVariable(nullptr);
|
|
EXPECT_FALSE(m.IsValid());
|
|
}
|
|
|
|
TEST_F(ModuleTest, IsValid_Invalid_GlobalVariable) {
|
|
auto var = std::make_unique<Variable>("var", StorageClass::kInput, nullptr);
|
|
|
|
Module m;
|
|
m.AddGlobalVariable(std::move(var));
|
|
EXPECT_FALSE(m.IsValid());
|
|
}
|
|
|
|
TEST_F(ModuleTest, IsValid_Alias) {
|
|
type::F32Type f32;
|
|
type::AliasType alias("alias", &f32);
|
|
|
|
Module m;
|
|
m.AddAliasType(&alias);
|
|
EXPECT_TRUE(m.IsValid());
|
|
}
|
|
|
|
TEST_F(ModuleTest, IsValid_Null_Alias) {
|
|
Module m;
|
|
m.AddAliasType(nullptr);
|
|
EXPECT_FALSE(m.IsValid());
|
|
}
|
|
|
|
TEST_F(ModuleTest, IsValid_Function) {
|
|
type::F32Type f32;
|
|
auto func = std::make_unique<Function>("main", VariableList(), &f32);
|
|
|
|
Module m;
|
|
m.AddFunction(std::move(func));
|
|
EXPECT_TRUE(m.IsValid());
|
|
}
|
|
|
|
TEST_F(ModuleTest, IsValid_Null_Function) {
|
|
Module m;
|
|
m.AddFunction(nullptr);
|
|
EXPECT_FALSE(m.IsValid());
|
|
}
|
|
|
|
TEST_F(ModuleTest, IsValid_Invalid_Function) {
|
|
auto func = std::make_unique<Function>();
|
|
|
|
Module m;
|
|
m.AddFunction(std::move(func));
|
|
EXPECT_FALSE(m.IsValid());
|
|
}
|
|
|
|
} // namespace
|
|
} // namespace ast
|
|
} // namespace tint
|