2020-03-02 20:47:43 +00:00
|
|
|
// 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/struct.h"
|
|
|
|
|
|
|
|
#include <sstream>
|
|
|
|
#include <utility>
|
|
|
|
|
|
|
|
#include "gtest/gtest.h"
|
|
|
|
#include "src/ast/struct_decoration.h"
|
|
|
|
#include "src/ast/struct_member.h"
|
|
|
|
#include "src/ast/type/i32_type.h"
|
|
|
|
|
|
|
|
namespace tint {
|
|
|
|
namespace ast {
|
|
|
|
|
|
|
|
using StructTest = testing::Test;
|
|
|
|
|
|
|
|
TEST_F(StructTest, Creation) {
|
|
|
|
type::I32Type i32;
|
|
|
|
std::vector<std::unique_ptr<StructMember>> members;
|
|
|
|
members.push_back(std::make_unique<StructMember>(
|
|
|
|
"a", &i32, std::vector<std::unique_ptr<StructMemberDecoration>>()));
|
|
|
|
|
|
|
|
Struct s{StructDecoration::kNone, std::move(members)};
|
|
|
|
EXPECT_EQ(s.members().size(), 1);
|
|
|
|
EXPECT_EQ(s.decoration(), StructDecoration::kNone);
|
|
|
|
EXPECT_EQ(s.line(), 0);
|
|
|
|
EXPECT_EQ(s.column(), 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST_F(StructTest, CreationWithSource) {
|
|
|
|
type::I32Type i32;
|
|
|
|
Source source{27, 4};
|
|
|
|
std::vector<std::unique_ptr<StructMember>> members;
|
|
|
|
members.emplace_back(std::make_unique<StructMember>(
|
|
|
|
"a", &i32, std::vector<std::unique_ptr<StructMemberDecoration>>()));
|
|
|
|
|
|
|
|
Struct s{source, StructDecoration::kNone, std::move(members)};
|
|
|
|
EXPECT_EQ(s.members().size(), 1);
|
|
|
|
EXPECT_EQ(s.decoration(), StructDecoration::kNone);
|
|
|
|
EXPECT_EQ(s.line(), 27);
|
|
|
|
EXPECT_EQ(s.column(), 4);
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST_F(StructTest, IsValid) {
|
|
|
|
Struct s;
|
|
|
|
EXPECT_TRUE(s.IsValid());
|
|
|
|
}
|
|
|
|
|
2020-03-17 03:52:21 +00:00
|
|
|
TEST_F(StructTest, IsValid_Null_StructMember) {
|
|
|
|
type::I32Type i32;
|
|
|
|
std::vector<std::unique_ptr<StructMember>> members;
|
|
|
|
members.push_back(std::make_unique<StructMember>(
|
|
|
|
"a", &i32, std::vector<std::unique_ptr<StructMemberDecoration>>()));
|
|
|
|
members.push_back(nullptr);
|
|
|
|
|
|
|
|
Struct s{StructDecoration::kNone, std::move(members)};
|
|
|
|
EXPECT_FALSE(s.IsValid());
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST_F(StructTest, IsValid_Invalid_StructMember) {
|
|
|
|
type::I32Type i32;
|
|
|
|
std::vector<std::unique_ptr<StructMember>> members;
|
|
|
|
members.push_back(std::make_unique<StructMember>(
|
|
|
|
"", &i32, std::vector<std::unique_ptr<StructMemberDecoration>>()));
|
|
|
|
|
|
|
|
Struct s{StructDecoration::kNone, std::move(members)};
|
|
|
|
EXPECT_FALSE(s.IsValid());
|
|
|
|
}
|
|
|
|
|
2020-03-02 20:47:43 +00:00
|
|
|
TEST_F(StructTest, ToStr) {
|
|
|
|
type::I32Type i32;
|
|
|
|
Source source{27, 4};
|
|
|
|
std::vector<std::unique_ptr<StructMember>> members;
|
|
|
|
members.emplace_back(std::make_unique<StructMember>(
|
|
|
|
"a", &i32, std::vector<std::unique_ptr<StructMemberDecoration>>()));
|
|
|
|
|
|
|
|
Struct s{source, StructDecoration::kNone, std::move(members)};
|
|
|
|
|
|
|
|
std::ostringstream out;
|
2020-03-17 03:52:21 +00:00
|
|
|
s.to_str(out, 2);
|
|
|
|
EXPECT_EQ(out.str(), R"( Struct{
|
|
|
|
StructMember{a: __i32}
|
|
|
|
}
|
2020-03-02 20:47:43 +00:00
|
|
|
)");
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace ast
|
|
|
|
} // namespace tint
|