// 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 #include #include "gmock/gmock.h" #include "src/ast/function.h" #include "src/ast/type/alias_type.h" #include "src/ast/type/f32_type.h" #include "src/ast/type/struct_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("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("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("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.AddConstructedType(&alias); EXPECT_TRUE(m.IsValid()); } TEST_F(ModuleTest, IsValid_Null_Alias) { Module m; m.AddConstructedType(nullptr); EXPECT_FALSE(m.IsValid()); } TEST_F(ModuleTest, IsValid_Struct) { type::F32Type f32; type::StructType st("name", {}); type::AliasType alias("name", &st); Module m; m.AddConstructedType(&alias); EXPECT_TRUE(m.IsValid()); } TEST_F(ModuleTest, IsValid_Struct_EmptyName) { type::F32Type f32; type::StructType st("", {}); type::AliasType alias("name", &st); Module m; m.AddConstructedType(&alias); EXPECT_FALSE(m.IsValid()); } TEST_F(ModuleTest, IsValid_Function) { type::F32Type f32; auto func = std::make_unique("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(); Module m; m.AddFunction(std::move(func)); EXPECT_FALSE(m.IsValid()); } } // namespace } // namespace ast } // namespace tint