1 // Copyright 2024 The 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 #ifndef GRPC_TEST_CPP_UTIL_CREDENTIALS_H 15 #define GRPC_TEST_CPP_UTIL_CREDENTIALS_H 16 17 #include <grpcpp/security/credentials.h> 18 19 #include "src/core/lib/security/credentials/fake/fake_credentials.h" 20 21 namespace grpc { 22 namespace testing { 23 24 class FakeTransportSecurityChannelCredentials : public ChannelCredentials { 25 public: FakeTransportSecurityChannelCredentials()26 FakeTransportSecurityChannelCredentials() 27 : ChannelCredentials(grpc_fake_transport_security_credentials_create()) {} 28 }; 29 30 class TestCompositeChannelCredentials : public ChannelCredentials { 31 public: TestCompositeChannelCredentials(grpc_channel_credentials * channel_creds,grpc_call_credentials * call_creds)32 TestCompositeChannelCredentials(grpc_channel_credentials* channel_creds, 33 grpc_call_credentials* call_creds) 34 : ChannelCredentials(grpc_composite_channel_credentials_create( 35 channel_creds, call_creds, nullptr)) {} 36 }; 37 38 } // namespace testing 39 } // namespace grpc 40 41 #endif // GRPC_TEST_CPP_UTIL_CREDENTIALS_H 42