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>
|
|
|
|
|
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"
|
2020-11-13 21:58:28 +00:00
|
|
|
#include "src/ast/test_helper.h"
|
2021-01-21 15:42:10 +00:00
|
|
|
#include "src/type/i32_type.h"
|
2020-03-02 20:47:43 +00:00
|
|
|
|
|
|
|
namespace tint {
|
|
|
|
namespace ast {
|
2020-03-26 15:31:43 +00:00
|
|
|
namespace {
|
2020-03-02 20:47:43 +00:00
|
|
|
|
2020-11-13 21:58:28 +00:00
|
|
|
using StructTest = TestHelper;
|
2020-03-02 20:47:43 +00:00
|
|
|
|
|
|
|
TEST_F(StructTest, Creation) {
|
2021-01-26 16:57:10 +00:00
|
|
|
auto* s = create<Struct>(StructMemberList{Member("a", ty.i32())},
|
2020-12-16 21:38:40 +00:00
|
|
|
StructDecorationList{});
|
2020-12-14 22:30:57 +00:00
|
|
|
EXPECT_EQ(s->members().size(), 1u);
|
|
|
|
EXPECT_TRUE(s->decorations().empty());
|
|
|
|
EXPECT_EQ(s->source().range.begin.line, 0u);
|
|
|
|
EXPECT_EQ(s->source().range.begin.column, 0u);
|
|
|
|
EXPECT_EQ(s->source().range.end.line, 0u);
|
|
|
|
EXPECT_EQ(s->source().range.end.column, 0u);
|
2020-12-16 21:38:40 +00:00
|
|
|
}
|
2020-03-02 20:47:43 +00:00
|
|
|
|
2020-10-08 18:33:25 +00:00
|
|
|
TEST_F(StructTest, Creation_WithDecorations) {
|
|
|
|
StructDecorationList decos;
|
2020-12-14 22:30:57 +00:00
|
|
|
decos.push_back(create<StructBlockDecoration>());
|
|
|
|
|
2021-01-26 16:57:10 +00:00
|
|
|
auto* s = create<Struct>(StructMemberList{Member("a", ty.i32())}, decos);
|
2020-12-14 22:30:57 +00:00
|
|
|
EXPECT_EQ(s->members().size(), 1u);
|
|
|
|
ASSERT_EQ(s->decorations().size(), 1u);
|
|
|
|
EXPECT_TRUE(s->decorations()[0]->Is<StructBlockDecoration>());
|
|
|
|
EXPECT_EQ(s->source().range.begin.line, 0u);
|
|
|
|
EXPECT_EQ(s->source().range.begin.column, 0u);
|
|
|
|
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) {
|
|
|
|
StructDecorationList decos;
|
2020-12-14 22:30:57 +00:00
|
|
|
decos.push_back(create<StructBlockDecoration>());
|
2020-10-08 18:33:25 +00:00
|
|
|
|
2020-12-14 22:30:57 +00:00
|
|
|
auto* s = create<Struct>(
|
2020-11-02 15:25:18 +00:00
|
|
|
Source{Source::Range{Source::Location{27, 4}, Source::Location{27, 8}}},
|
2021-01-26 16:57:10 +00:00
|
|
|
StructMemberList{Member("a", ty.i32())}, decos);
|
2020-12-14 22:30:57 +00:00
|
|
|
EXPECT_EQ(s->members().size(), 1u);
|
|
|
|
ASSERT_EQ(s->decorations().size(), 1u);
|
|
|
|
EXPECT_TRUE(s->decorations()[0]->Is<StructBlockDecoration>());
|
|
|
|
EXPECT_EQ(s->source().range.begin.line, 27u);
|
|
|
|
EXPECT_EQ(s->source().range.begin.column, 4u);
|
|
|
|
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) {
|
2020-12-14 22:30:57 +00:00
|
|
|
auto* s = create<Struct>(StructMemberList{}, StructDecorationList{});
|
|
|
|
EXPECT_TRUE(s->IsValid());
|
2020-03-02 20:47:43 +00:00
|
|
|
}
|
|
|
|
|
2020-03-17 03:52:21 +00:00
|
|
|
TEST_F(StructTest, IsValid_Null_StructMember) {
|
2021-01-26 16:57:10 +00:00
|
|
|
auto* s = create<Struct>(StructMemberList{Member("a", ty.i32()), nullptr},
|
2020-12-16 21:38:40 +00:00
|
|
|
StructDecorationList{});
|
2020-12-14 22:30:57 +00:00
|
|
|
EXPECT_FALSE(s->IsValid());
|
2020-12-16 21:38:40 +00:00
|
|
|
}
|
2020-03-17 03:52:21 +00:00
|
|
|
|
|
|
|
TEST_F(StructTest, IsValid_Invalid_StructMember) {
|
2021-01-26 16:57:10 +00:00
|
|
|
auto* s = create<Struct>(StructMemberList{Member("", ty.i32())},
|
2020-12-16 21:38:40 +00:00
|
|
|
ast::StructDecorationList{});
|
2020-12-14 22:30:57 +00:00
|
|
|
EXPECT_FALSE(s->IsValid());
|
2020-12-16 21:38:40 +00:00
|
|
|
}
|
2020-10-08 18:33:25 +00:00
|
|
|
|
2020-03-02 20:47:43 +00:00
|
|
|
TEST_F(StructTest, ToStr) {
|
2020-10-08 18:33:25 +00:00
|
|
|
StructDecorationList decos;
|
2020-12-14 22:30:57 +00:00
|
|
|
decos.push_back(create<StructBlockDecoration>());
|
2021-01-26 16:57:10 +00:00
|
|
|
auto* s = create<Struct>(StructMemberList{Member("a", ty.i32())}, decos);
|
2020-03-02 20:47:43 +00:00
|
|
|
|
|
|
|
std::ostringstream out;
|
2020-12-14 22:30:57 +00:00
|
|
|
s->to_str(out, 2);
|
2020-12-15 16:43:18 +00:00
|
|
|
EXPECT_EQ(demangle(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
|