avl_test.cc
Go to the documentation of this file.
1 // Copyright 2021 gRPC authors.
2 //
3 // Licensed under the Apache License, Version 2.0 (the "License");
4 // you may not use this file except in compliance with the License.
5 // You may obtain a copy of the License at
6 //
7 // http://www.apache.org/licenses/LICENSE-2.0
8 //
9 // Unless required by applicable law or agreed to in writing, software
10 // distributed under the License is distributed on an "AS IS" BASIS,
11 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 // See the License for the specific language governing permissions and
13 // limitations under the License.
14 
15 #include "src/core/lib/avl/avl.h"
16 
17 #include <gtest/gtest.h>
18 
19 namespace grpc_core {
20 
21 TEST(AvlTest, NoOp) { AVL<int, int> avl; }
22 
23 TEST(AvlTest, Lookup) {
24  auto avl = AVL<int, int>().Add(1, 42);
25  EXPECT_EQ(nullptr, avl.Lookup(2));
26  EXPECT_EQ(42, *avl.Lookup(1));
27  avl = avl.Remove(1);
28  EXPECT_EQ(nullptr, avl.Lookup(1));
29  avl = avl.Add(1, 42).Add(1, 1);
30  EXPECT_EQ(1, *avl.Lookup(1));
31  avl = avl.Add(2, 2).Add(3, 3).Add(4, 4);
32  EXPECT_EQ(1, *avl.Lookup(1));
33  EXPECT_EQ(2, *avl.Lookup(2));
34  EXPECT_EQ(3, *avl.Lookup(3));
35  EXPECT_EQ(4, *avl.Lookup(4));
36  EXPECT_EQ(nullptr, avl.Lookup(5));
37 }
38 
39 } // namespace grpc_core
40 
41 int main(int argc, char** argv) {
42  ::testing::InitGoogleTest(&argc, argv);
43  return RUN_ALL_TESTS();
44 }
NoOp
Definition: bm_call_create.cc:477
grpc_core
Definition: call_metric_recorder.h:31
avl.h
grpc_core::TEST
TEST(AvlTest, NoOp)
Definition: avl_test.cc:21
EXPECT_EQ
#define EXPECT_EQ(a, b)
Definition: iomgr/time_averaged_stats_test.cc:27
main
int main(int argc, char **argv)
Definition: avl_test.cc:41
grpc_core::AVL::Add
AVL Add(K key, V value) const
Definition: avl.h:34
RUN_ALL_TESTS
int RUN_ALL_TESTS() GTEST_MUST_USE_RESULT_
Definition: bloaty/third_party/googletest/googletest/include/gtest/gtest.h:2471
grpc_core::AVL< int, int >
testing::InitGoogleTest
GTEST_API_ void InitGoogleTest(int *argc, char **argv)
Definition: bloaty/third_party/googletest/googletest/src/gtest.cc:6106
Lookup
static const char * Lookup(std::map< std::string, std::unique_ptr< char[]>> *dummy_lh, const char *key)
Definition: lhash_test.cc:53


grpc
Author(s):
autogenerated on Fri May 16 2025 02:57:45