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"
|
|
|
|
|
2020-04-06 19:37:37 +00:00
|
|
|
#include <memory>
|
2020-03-02 20:47:43 +00:00
|
|
|
#include <sstream>
|
|
|
|
#include <utility>
|
|
|
|
|
|
|
|
#include "gtest/gtest.h"
|
2020-11-03 21:40:20 +00:00
|
|
|
#include "src/ast/struct_block_decoration.h"
|
2020-03-02 20:47:43 +00:00
|
|
|
#include "src/ast/struct_member.h"
|
|
|
|
#include "src/ast/type/i32_type.h"
|
|
|
|
|
|
|
|
namespace tint {
|
|
|
|
namespace ast {
|
2020-03-26 15:31:43 +00:00
|
|
|
namespace {
|
2020-03-02 20:47:43 +00:00
|
|
|
|
|
|
|
using StructTest = testing::Test;
|
|
|
|
|
|
|
|
TEST_F(StructTest, Creation) {
|
|
|
|
type::I32Type i32;
|
2020-04-06 19:37:37 +00:00
|
|
|
StructMemberList members;
|
|
|
|
members.push_back(
|
|
|
|
std::make_unique<StructMember>("a", &i32, StructMemberDecorationList()));
|
2020-03-02 20:47:43 +00:00
|
|
|
|
2020-10-08 18:33:25 +00:00
|
|
|
Struct s{std::move(members)};
|
2020-04-17 13:18:20 +00:00
|
|
|
EXPECT_EQ(s.members().size(), 1u);
|
2020-10-08 18:33:25 +00:00
|
|
|
EXPECT_TRUE(s.decorations().empty());
|
2020-11-02 15:17:50 +00:00
|
|
|
EXPECT_EQ(s.source().range.begin.line, 0u);
|
|
|
|
EXPECT_EQ(s.source().range.begin.column, 0u);
|
2020-11-02 15:25:18 +00:00
|
|
|
EXPECT_EQ(s.source().range.end.line, 0u);
|
|
|
|
EXPECT_EQ(s.source().range.end.column, 0u);
|
2020-03-02 20:47:43 +00:00
|
|
|
}
|
|
|
|
|
2020-10-08 18:33:25 +00:00
|
|
|
TEST_F(StructTest, Creation_WithDecorations) {
|
2020-03-02 20:47:43 +00:00
|
|
|
type::I32Type i32;
|
2020-10-08 18:33:25 +00:00
|
|
|
|
|
|
|
StructMemberList members;
|
|
|
|
members.push_back(
|
|
|
|
std::make_unique<StructMember>("a", &i32, StructMemberDecorationList()));
|
|
|
|
|
|
|
|
StructDecorationList decos;
|
2020-11-03 21:48:20 +00:00
|
|
|
decos.push_back(std::make_unique<StructBlockDecoration>(Source{}));
|
2020-10-08 18:33:25 +00:00
|
|
|
|
|
|
|
Struct s{std::move(decos), std::move(members)};
|
|
|
|
EXPECT_EQ(s.members().size(), 1u);
|
|
|
|
ASSERT_EQ(s.decorations().size(), 1u);
|
2020-11-03 21:40:20 +00:00
|
|
|
EXPECT_TRUE(s.decorations()[0]->IsBlock());
|
2020-11-02 15:17:50 +00:00
|
|
|
EXPECT_EQ(s.source().range.begin.line, 0u);
|
|
|
|
EXPECT_EQ(s.source().range.begin.column, 0u);
|
2020-11-02 15:25:18 +00:00
|
|
|
EXPECT_EQ(s.source().range.end.line, 0u);
|
|
|
|
EXPECT_EQ(s.source().range.end.column, 0u);
|
2020-10-08 18:33:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
TEST_F(StructTest, CreationWithSourceAndDecorations) {
|
|
|
|
type::I32Type i32;
|
|
|
|
|
2020-04-06 19:37:37 +00:00
|
|
|
StructMemberList members;
|
|
|
|
members.emplace_back(
|
|
|
|
std::make_unique<StructMember>("a", &i32, StructMemberDecorationList()));
|
2020-03-02 20:47:43 +00:00
|
|
|
|
2020-10-08 18:33:25 +00:00
|
|
|
StructDecorationList decos;
|
2020-11-03 21:48:20 +00:00
|
|
|
decos.push_back(std::make_unique<StructBlockDecoration>(Source{}));
|
2020-10-08 18:33:25 +00:00
|
|
|
|
2020-11-02 15:25:18 +00:00
|
|
|
Struct s{
|
|
|
|
Source{Source::Range{Source::Location{27, 4}, Source::Location{27, 8}}},
|
|
|
|
std::move(decos), std::move(members)};
|
2020-04-17 13:18:20 +00:00
|
|
|
EXPECT_EQ(s.members().size(), 1u);
|
2020-10-08 18:33:25 +00:00
|
|
|
ASSERT_EQ(s.decorations().size(), 1u);
|
2020-11-03 21:40:20 +00:00
|
|
|
EXPECT_TRUE(s.decorations()[0]->IsBlock());
|
2020-11-02 15:17:50 +00:00
|
|
|
EXPECT_EQ(s.source().range.begin.line, 27u);
|
|
|
|
EXPECT_EQ(s.source().range.begin.column, 4u);
|
2020-11-02 15:25:18 +00:00
|
|
|
EXPECT_EQ(s.source().range.end.line, 27u);
|
|
|
|
EXPECT_EQ(s.source().range.end.column, 8u);
|
2020-03-02 20:47:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
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;
|
2020-10-08 18:33:25 +00:00
|
|
|
|
2020-04-06 19:37:37 +00:00
|
|
|
StructMemberList members;
|
|
|
|
members.push_back(
|
|
|
|
std::make_unique<StructMember>("a", &i32, StructMemberDecorationList()));
|
2020-03-17 03:52:21 +00:00
|
|
|
members.push_back(nullptr);
|
|
|
|
|
2020-10-08 18:33:25 +00:00
|
|
|
Struct s{std::move(members)};
|
2020-03-17 03:52:21 +00:00
|
|
|
EXPECT_FALSE(s.IsValid());
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST_F(StructTest, IsValid_Invalid_StructMember) {
|
|
|
|
type::I32Type i32;
|
2020-10-08 18:33:25 +00:00
|
|
|
|
2020-04-06 19:37:37 +00:00
|
|
|
StructMemberList members;
|
|
|
|
members.push_back(
|
|
|
|
std::make_unique<StructMember>("", &i32, StructMemberDecorationList()));
|
2020-03-17 03:52:21 +00:00
|
|
|
|
2020-10-08 18:33:25 +00:00
|
|
|
Struct s{std::move(members)};
|
|
|
|
EXPECT_FALSE(s.IsValid());
|
|
|
|
}
|
|
|
|
|
2020-03-02 20:47:43 +00:00
|
|
|
TEST_F(StructTest, ToStr) {
|
|
|
|
type::I32Type i32;
|
2020-10-08 18:33:25 +00:00
|
|
|
|
2020-04-06 19:37:37 +00:00
|
|
|
StructMemberList members;
|
|
|
|
members.emplace_back(
|
|
|
|
std::make_unique<StructMember>("a", &i32, StructMemberDecorationList()));
|
2020-03-02 20:47:43 +00:00
|
|
|
|
2020-10-08 18:33:25 +00:00
|
|
|
StructDecorationList decos;
|
2020-11-03 21:48:20 +00:00
|
|
|
decos.push_back(std::make_unique<StructBlockDecoration>(Source{}));
|
2020-10-08 18:33:25 +00:00
|
|
|
|
|
|
|
Struct s{std::move(decos), std::move(members)};
|
2020-03-02 20:47:43 +00:00
|
|
|
|
|
|
|
std::ostringstream out;
|
2020-03-17 03:52:21 +00:00
|
|
|
s.to_str(out, 2);
|
2020-10-19 15:31:47 +00:00
|
|
|
EXPECT_EQ(out.str(), R"(Struct{
|
2020-10-08 18:33:25 +00:00
|
|
|
[[block]]
|
2020-03-17 03:52:21 +00:00
|
|
|
StructMember{a: __i32}
|
|
|
|
}
|
2020-03-02 20:47:43 +00:00
|
|
|
)");
|
|
|
|
}
|
|
|
|
|
2020-03-26 15:31:43 +00:00
|
|
|
} // namespace
|
2020-03-02 20:47:43 +00:00
|
|
|
} // namespace ast
|
|
|
|
} // namespace tint
|