forked from TUBITAK-TUTEL/verible
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtree_builder_test_util_test.cc
145 lines (128 loc) · 5.67 KB
/
tree_builder_test_util_test.cc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
// Copyright 2017-2020 The Verible 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 "common/text/tree_builder_test_util.h"
#include "common/text/tree_utils.h"
#include "gtest/gtest.h"
namespace verible {
namespace {
// Tests descending when root is a leaf.
TEST(DescendPathTest, LeafOnly) {
SymbolPtr leaf = Leaf(0, "text");
EXPECT_EQ(leaf.get(), DescendPath(*leaf, {}));
EXPECT_DEATH(DescendPath(*leaf, {0}), "");
}
// Tests that descending stops at childless node.
TEST(DescendPathTest, EmptyNode) {
SymbolPtr node = Node();
EXPECT_EQ(node.get(), DescendPath(*node, {}));
EXPECT_DEATH(DescendPath(*node, {0}), "");
}
// Tests that descent can return nullptr nodes.
TEST(DescendPathTest, NodeNullChild) {
SymbolPtr node = Node(nullptr);
EXPECT_EQ(DescendPath(*node, {0}), nullptr);
EXPECT_DEATH(DescendPath(*node, {1}), ""); // out-of-bounds
}
// Tests that descending reaches a leaf single-child.
TEST(DescendPathTest, NodeLeaf) {
SymbolPtr node = Node(Leaf(0, "text"));
EXPECT_NE(&SymbolCastToLeaf(*DescendPath(*node, {0})), nullptr);
EXPECT_DEATH(DescendPath(*node, {0, 0}), ""); // out-of-bounds
EXPECT_DEATH(DescendPath(*node, {1}), ""); // out-of-bounds
}
// Tests that descending reaches a node single-child.
TEST(DescendPathTest, NodeNode) {
SymbolPtr node = Node(Node());
EXPECT_NE(&SymbolCastToNode(*DescendPath(*node, {0})), nullptr);
EXPECT_DEATH(DescendPath(*node, {0, 0}), ""); // out-of-bounds
EXPECT_DEATH(DescendPath(*node, {1}), ""); // out-of-bounds
}
// Tests that descending reaches a single-grandchild leaf.
TEST(DescendPathTest, NodeNodeLeaf) {
SymbolPtr node = Node(Node(Leaf(0, "text")));
EXPECT_NE(&SymbolCastToLeaf(*DescendPath(*node, {0, 0})), nullptr);
EXPECT_DEATH(DescendPath(*node, {0, 0, 0}), ""); // out-of-bounds
EXPECT_DEATH(DescendPath(*node, {0, 1}), ""); // out-of-bounds
EXPECT_DEATH(DescendPath(*node, {1}), ""); // out-of-bounds
}
// Tests that descending reaches a single-grandchild node.
TEST(DescendPathTest, NodeNodeNode) {
SymbolPtr node = Node(Node(Node()));
EXPECT_NE(&SymbolCastToNode(*DescendPath(*node, {0, 0})), nullptr);
EXPECT_DEATH(DescendPath(*node, {0, 0, 0}), ""); // out-of-bounds
EXPECT_DEATH(DescendPath(*node, {0, 1}), ""); // out-of-bounds
EXPECT_DEATH(DescendPath(*node, {1}), ""); // out-of-bounds
}
// Tests that descending reaches two terminal leaves.
TEST(DescendPathTest, NodeTwoLeaves) {
SymbolPtr node = Node(Leaf(0, "more"), Leaf(0, "text"));
const auto* leaf0 = &SymbolCastToLeaf(*DescendPath(*node, {0}));
const auto* leaf1 = &SymbolCastToLeaf(*DescendPath(*node, {1}));
EXPECT_NE(leaf0, nullptr);
EXPECT_NE(leaf1, nullptr);
EXPECT_NE(leaf0, leaf1);
EXPECT_DEATH(DescendPath(*node, {2}), ""); // out-of-bounds
}
// Tests that descending stops as a node with multiple children nodes.
TEST(DescendPathTest, NodeTwoSubNodes) {
SymbolPtr node = Node(Node(), Node());
const auto* subnode0 = &SymbolCastToNode(*DescendPath(*node, {0}));
const auto* subnode1 = &SymbolCastToNode(*DescendPath(*node, {1}));
EXPECT_NE(subnode0, nullptr);
EXPECT_NE(subnode1, nullptr);
EXPECT_NE(subnode0, subnode1);
EXPECT_DEATH(DescendPath(*node, {2}), ""); // out-of-bounds
}
// Tests that descending stops as a node with multiple children, some null.
TEST(DescendPathTest, NodeFirstChildLeafSecondChildNull) {
SymbolPtr node = Node(Leaf(0, "text"), nullptr);
const auto* leaf0 = &SymbolCastToLeaf(*DescendPath(*node, {0}));
const auto* leaf1 = DescendPath(*node, {1});
EXPECT_NE(leaf0, nullptr);
EXPECT_EQ(leaf1, nullptr);
EXPECT_DEATH(DescendPath(*node, {2}), ""); // out-of-bounds
EXPECT_DEATH(DescendPath(*node, {0, 0}), ""); // out-of-bounds
}
// Tests that descending stops as a node with multiple children, some null.
TEST(DescendPathTest, NodeFirstChildNullSecondChildLeaf) {
SymbolPtr node = Node(nullptr, Leaf(0, "text"));
const auto* leaf0 = DescendPath(*node, {0});
const auto* leaf1 = &SymbolCastToLeaf(*DescendPath(*node, {1}));
EXPECT_EQ(leaf0, nullptr);
EXPECT_NE(leaf1, nullptr);
EXPECT_DEATH(DescendPath(*node, {2}), ""); // out-of-bounds
EXPECT_DEATH(DescendPath(*node, {1, 0}), ""); // out-of-bounds
}
// Tests that descending stops as a node with multiple children, some null.
TEST(DescendPathTest, NodeFirstChildNullSecondChildNode) {
SymbolPtr node = Node(nullptr, Node());
const auto* subnode0 = DescendPath(*node, {0});
const auto* subnode1 = &SymbolCastToNode(*DescendPath(*node, {1}));
EXPECT_EQ(subnode0, nullptr);
EXPECT_NE(subnode1, nullptr);
EXPECT_DEATH(DescendPath(*node, {2}), ""); // out-of-bounds
EXPECT_DEATH(DescendPath(*node, {1, 0}), ""); // out-of-bounds
}
// Tests that descending stops as a node with multiple children, some null.
TEST(DescendPathTest, NodeFirstChildNodeSecondChildNull) {
SymbolPtr node = Node(Node(), nullptr);
const auto* subnode0 = &SymbolCastToNode(*DescendPath(*node, {0}));
const auto* subnode1 = DescendPath(*node, {1});
EXPECT_NE(subnode0, nullptr);
EXPECT_EQ(subnode1, nullptr);
EXPECT_DEATH(DescendPath(*node, {2}), ""); // out-of-bounds
EXPECT_DEATH(DescendPath(*node, {0, 0}), ""); // out-of-bounds
}
} // namespace
} // namespace verible