Files
grpc/test/cpp/sleuth/channelz_tool_test.cc
Yousuk Seung 1ab62ba748 Sleuth Tool Refactoring for Cython Export
- Use a print function instead of stdout/stderr
- Made existing main() into a library accessible via an API.
- Enabled multiple executions of the current main().
- Removed absl flags for better flag management when using the API.
- Consolidated SLEUTH_TOOL and absl flags (only behavioral change).

PiperOrigin-RevId: 823083768
2025-10-23 10:05:09 -07:00

64 lines
2.0 KiB
C++

// Copyright 2025 gRPC 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 <grpcpp/ext/channelz_service_plugin.h>
#include <grpcpp/security/credentials.h>
#include <grpcpp/security/server_credentials.h>
#include <grpcpp/server.h>
#include <grpcpp/server_builder.h>
#include <memory>
#include <string>
#include "test/core/test_util/port.h"
#include "test/cpp/sleuth/tool_test.h"
#include "gtest/gtest.h"
#include "absl/strings/str_cat.h"
namespace grpc_sleuth {
namespace {
class ChannelzToolTest : public ::testing::Test {
protected:
void SetUp() override {
grpc::channelz::experimental::InitChannelzService();
grpc::ServerBuilder builder;
int port = grpc_pick_unused_port_or_die();
server_address_ = absl::StrCat("localhost:", port);
builder.AddListeningPort(server_address_,
grpc::InsecureServerCredentials());
server_ = builder.BuildAndStart();
ASSERT_NE(server_, nullptr);
}
void TearDown() override { server_->Shutdown(); }
const std::string& server_address() const { return server_address_; }
private:
std::string server_address_;
std::unique_ptr<grpc::Server> server_;
};
TEST_F(ChannelzToolTest, DumpChannelz) {
auto result =
TestTool("dump_channelz", {absl::StrCat("target=", server_address()),
"channel_creds_type=insecure"});
ASSERT_TRUE(result.ok()) << result.status();
EXPECT_FALSE(result->empty());
}
} // namespace
} // namespace grpc_sleuth