// Copyright 2022 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 #include #include "absl/functional/any_invocable.h" #include "absl/strings/str_cat.h" #include "absl/types/optional.h" #include "gtest/gtest.h" #include "src/core/lib/config/config_vars.h" #include "test/core/end2end/end2end_tests.h" #include "test/core/end2end/fixtures/h2_tls_common.h" #include "test/core/util/test_config.h" namespace grpc_core { extern void EnsureSuitesLinked(); } int main(int argc, char** argv) { grpc::testing::TestEnvironment env(&argc, argv); grpc_core::EnsureSuitesLinked(); ::testing::InitGoogleTest(&argc, argv); // TODO(ctiller): make this per fixture? grpc_core::ConfigVars::Overrides overrides; overrides.default_ssl_roots_file_path = CA_CERT_PATH; grpc_core::ConfigVars::SetOverrides(overrides); const auto all_tests = grpc_core::CoreEnd2endTestRegistry::Get().AllTests(); for (const auto& test : all_tests) { ::testing::RegisterTest( absl::StrCat(test.suite).c_str(), absl::StrCat(test.name, "/", test.config->name).c_str(), nullptr, nullptr, __FILE__, __LINE__, [test = &test]() -> grpc_core::CoreEnd2endTest* { return test->make_test(test->config); }); } return RUN_ALL_TESTS(); }