blob: 6b89e2fc9686a43fc03b5cf4565510a068af0bc6 [file] [log] [blame]
Yang Gao26a49122015-05-15 17:02:56 -07001/*
2 *
3 * Copyright 2015, Google Inc.
4 * All rights reserved.
5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions are
8 * met:
9 *
10 * * Redistributions of source code must retain the above copyright
11 * notice, this list of conditions and the following disclaimer.
12 * * Redistributions in binary form must reproduce the above
13 * copyright notice, this list of conditions and the following disclaimer
14 * in the documentation and/or other materials provided with the
15 * distribution.
16 * * Neither the name of Google Inc. nor the names of its
17 * contributors may be used to endorse or promote products derived from
18 * this software without specific prior written permission.
19 *
20 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
21 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
22 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
23 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
24 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
25 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
26 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
27 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
28 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
29 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
30 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
31 *
32 */
33
34#include <grpc/grpc_security.h>
35#include <grpc++/channel_arguments.h>
36#include <grpc++/credentials.h>
37#include <grpc++/server_credentials.h>
38#include "src/cpp/client/channel.h"
39#include "src/cpp/server/secure_server_credentials.h"
40
41namespace grpc {
42namespace testing {
43
44namespace {
45class FakeCredentialsImpl GRPC_FINAL : public Credentials {
46 public:
47 FakeCredentialsImpl()
48 : c_creds_(grpc_fake_transport_security_credentials_create()) {}
49 ~FakeCredentialsImpl() { grpc_credentials_release(c_creds_); }
50 SecureCredentials* AsSecureCredentials() GRPC_OVERRIDE { return nullptr; }
51 std::shared_ptr<ChannelInterface> CreateChannel(
52 const grpc::string& target, const ChannelArguments& args) GRPC_OVERRIDE {
53 grpc_channel_args channel_args;
54 args.SetChannelArgs(&channel_args);
55 return std::shared_ptr<ChannelInterface>(new Channel(
56 target,
57 grpc_secure_channel_create(c_creds_, target.c_str(), &channel_args)));
58 }
59 bool ApplyToCall(grpc_call* call) GRPC_OVERRIDE { return false; }
60
61 private:
62 grpc_credentials* const c_creds_;
63};
64
65} // namespace
66
67std::shared_ptr<Credentials> FakeCredentials() {
68 return std::shared_ptr<Credentials>(new FakeCredentialsImpl());
69}
70
71std::shared_ptr<ServerCredentials> FakeServerCredentials() {
72 grpc_server_credentials* c_creds =
73 grpc_fake_transport_security_server_credentials_create();
74 return std::shared_ptr<ServerCredentials>(
75 new SecureServerCredentials(c_creds));
76}
77
78} // namespace testing
79} // namespace grpc