mirror of https://github.com/grpc/grpc.git
115 lines
3.8 KiB
C++
115 lines
3.8 KiB
C++
// Copyright 2023 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 <grpc/compression.h>
|
|
#include <grpc/credentials.h>
|
|
#include <grpc/grpc.h>
|
|
#include <grpc/grpc_posix.h>
|
|
#include <grpc/grpc_security.h>
|
|
#include <grpc/grpc_security_constants.h>
|
|
#include <grpc/impl/channel_arg_names.h>
|
|
#include <grpc/slice.h>
|
|
#include <grpc/status.h>
|
|
#include <grpc/support/time.h>
|
|
#include <inttypes.h>
|
|
#include <string.h>
|
|
|
|
#include <algorithm>
|
|
#include <atomic>
|
|
#include <functional>
|
|
#include <memory>
|
|
#include <optional>
|
|
#include <regex>
|
|
#include <string>
|
|
#include <utility>
|
|
#include <vector>
|
|
|
|
#include "absl/base/thread_annotations.h"
|
|
#include "absl/functional/any_invocable.h"
|
|
#include "absl/log/check.h"
|
|
#include "absl/meta/type_traits.h"
|
|
#include "absl/random/random.h"
|
|
#include "absl/status/status.h"
|
|
#include "absl/strings/str_format.h"
|
|
#include "gtest/gtest.h"
|
|
#include "src/core/ext/transport/chaotic_good/client/chaotic_good_connector.h"
|
|
#include "src/core/ext/transport/chaotic_good/server/chaotic_good_server.h"
|
|
#include "src/core/lib/channel/channel_args.h"
|
|
#include "src/core/lib/debug/trace.h"
|
|
#include "src/core/lib/iomgr/error.h"
|
|
#include "src/core/lib/iomgr/exec_ctx.h"
|
|
#include "src/core/lib/iomgr/port.h"
|
|
#include "src/core/util/env.h"
|
|
#include "src/core/util/host_port.h"
|
|
#include "src/core/util/no_destruct.h"
|
|
#include "src/core/util/sync.h"
|
|
#include "test/core/end2end/end2end_tests.h"
|
|
#include "test/core/end2end/fixtures/h2_oauth2_common.h"
|
|
#include "test/core/end2end/fixtures/h2_ssl_cred_reload_fixture.h"
|
|
#include "test/core/end2end/fixtures/h2_ssl_tls_common.h"
|
|
#include "test/core/end2end/fixtures/h2_tls_common.h"
|
|
#include "test/core/end2end/fixtures/http_proxy_fixture.h"
|
|
#include "test/core/end2end/fixtures/inproc_fixture.h"
|
|
#include "test/core/end2end/fixtures/local_util.h"
|
|
#include "test/core/end2end/fixtures/proxy.h"
|
|
#include "test/core/end2end/fixtures/secure_fixture.h"
|
|
#include "test/core/end2end/fixtures/sockpair_fixture.h"
|
|
#include "test/core/test_util/port.h"
|
|
#include "test/core/test_util/test_config.h"
|
|
#include "test/core/test_util/tls_utils.h"
|
|
|
|
// IWYU pragma: no_include <unistd.h>
|
|
|
|
#ifdef GRPC_POSIX_SOCKET
|
|
#include <fcntl.h>
|
|
|
|
#include "src/core/lib/iomgr/socket_utils_posix.h"
|
|
#include "src/core/lib/iomgr/unix_sockets_posix.h"
|
|
#endif
|
|
|
|
#ifdef GRPC_POSIX_WAKEUP_FD
|
|
#include "src/core/lib/iomgr/wakeup_fd_posix.h"
|
|
#endif
|
|
|
|
#define CA_CERT_PATH "src/core/tsi/test_creds/ca.pem"
|
|
#define SERVER_CERT_PATH "src/core/tsi/test_creds/server1.pem"
|
|
#define SERVER_KEY_PATH "src/core/tsi/test_creds/server1.key"
|
|
|
|
namespace grpc_core {
|
|
|
|
std::vector<CoreTestConfiguration> End2endTestConfigs() {
|
|
return std::vector<CoreTestConfiguration>{
|
|
CoreTestConfiguration{
|
|
"Inproc",
|
|
FEATURE_MASK_DOES_NOT_SUPPORT_WRITE_BUFFERING |
|
|
FEATURE_MASK_DO_NOT_GTEST,
|
|
nullptr,
|
|
[](const ChannelArgs&, const ChannelArgs&) {
|
|
return std::make_unique<InprocFixture>(false);
|
|
},
|
|
},
|
|
CoreTestConfiguration{
|
|
"InprocWithPromises",
|
|
FEATURE_MASK_DOES_NOT_SUPPORT_WRITE_BUFFERING |
|
|
FEATURE_MASK_IS_CALL_V3 | FEATURE_MASK_DO_NOT_GTEST,
|
|
nullptr,
|
|
[](const ChannelArgs&, const ChannelArgs&) {
|
|
return std::make_unique<InprocFixture>(true);
|
|
},
|
|
},
|
|
};
|
|
}
|
|
|
|
} // namespace grpc_core
|