Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
G
Grpc
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
tci-gateway-module
Grpc
Commits
1b5a264e
Commit
1b5a264e
authored
9 years ago
by
Dan Born
Browse files
Options
Downloads
Patches
Plain Diff
Allow new credential types to be added to tests.
parent
b0ec2baa
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
test/cpp/util/test_credentials_provider.cc
+57
-27
57 additions, 27 deletions
test/cpp/util/test_credentials_provider.cc
test/cpp/util/test_credentials_provider.h
+10
-9
10 additions, 9 deletions
test/cpp/util/test_credentials_provider.h
with
67 additions
and
36 deletions
test/cpp/util/test_credentials_provider.cc
+
57
−
27
View file @
1b5a264e
...
...
@@ -34,6 +34,8 @@
#include
"test/cpp/util/test_credentials_provider.h"
#include
<unordered_map>
#include
<grpc/support/sync.h>
#include
<grpc++/impl/sync.h>
...
...
@@ -48,12 +50,36 @@ using grpc::InsecureServerCredentials;
using
grpc
::
ServerCredentials
;
using
grpc
::
SslCredentialsOptions
;
using
grpc
::
SslServerCredentialsOptions
;
using
grpc
::
testing
::
CredentialsProvider
;
using
grpc
::
testing
::
CredentialTypeProvider
;
// Provide test credentials. Thread-safe.
class
CredentialsProvider
{
public:
virtual
~
CredentialsProvider
()
{}
virtual
void
AddSecureType
(
const
grpc
::
string
&
type
,
std
::
unique_ptr
<
CredentialTypeProvider
>
type_provider
)
=
0
;
virtual
std
::
shared_ptr
<
ChannelCredentials
>
GetChannelCredentials
(
const
grpc
::
string
&
type
,
ChannelArguments
*
args
)
=
0
;
virtual
std
::
shared_ptr
<
ServerCredentials
>
GetServerCredentials
(
const
grpc
::
string
&
type
)
=
0
;
virtual
std
::
vector
<
grpc
::
string
>
GetSecureCredentialsTypeList
()
=
0
;
};
class
DefaultCredentialsProvider
:
public
CredentialsProvider
{
public:
~
DefaultCredentialsProvider
()
override
{}
void
AddSecureType
(
const
grpc
::
string
&
type
,
std
::
unique_ptr
<
CredentialTypeProvider
>
type_provider
)
override
{
// This clobbers any existing entry for type, except the defaults, which
// can't be clobbered.
grpc
::
unique_lock
<
grpc
::
mutex
>
lock
(
mu_
);
added_secure_types_
[
type
]
=
std
::
move
(
type_provider
);
}
std
::
shared_ptr
<
ChannelCredentials
>
GetChannelCredentials
(
const
grpc
::
string
&
type
,
ChannelArguments
*
args
)
override
{
if
(
type
==
grpc
::
testing
::
kInsecureCredentialsType
)
{
...
...
@@ -63,9 +89,14 @@ class DefaultCredentialsProvider : public CredentialsProvider {
args
->
SetSslTargetNameOverride
(
"foo.test.google.fr"
);
return
SslCredentials
(
ssl_opts
);
}
else
{
gpr_log
(
GPR_ERROR
,
"Unsupported credentials type %s."
,
type
.
c_str
());
grpc
::
unique_lock
<
grpc
::
mutex
>
lock
(
mu_
);
auto
it
(
added_secure_types_
.
find
(
type
));
if
(
it
==
added_secure_types_
.
end
())
{
gpr_log
(
GPR_ERROR
,
"Unsupported credentials type %s."
,
type
.
c_str
());
return
nullptr
;
}
return
it
->
second
->
GetChannelCredentials
(
args
);
}
return
nullptr
;
}
std
::
shared_ptr
<
ServerCredentials
>
GetServerCredentials
(
...
...
@@ -80,35 +111,40 @@ class DefaultCredentialsProvider : public CredentialsProvider {
ssl_opts
.
pem_key_cert_pairs
.
push_back
(
pkcp
);
return
SslServerCredentials
(
ssl_opts
);
}
else
{
gpr_log
(
GPR_ERROR
,
"Unsupported credentials type %s."
,
type
.
c_str
());
grpc
::
unique_lock
<
grpc
::
mutex
>
lock
(
mu_
);
auto
it
(
added_secure_types_
.
find
(
type
));
if
(
it
==
added_secure_types_
.
end
())
{
gpr_log
(
GPR_ERROR
,
"Unsupported credentials type %s."
,
type
.
c_str
());
return
nullptr
;
}
return
it
->
second
->
GetServerCredentials
();
}
return
nullptr
;
}
std
::
vector
<
grpc
::
string
>
GetSecureCredentialsTypeList
()
override
{
std
::
vector
<
grpc
::
string
>
types
;
types
.
push_back
(
grpc
::
testing
::
kTlsCredentialsType
);
grpc
::
unique_lock
<
grpc
::
mutex
>
lock
(
mu_
);
for
(
const
auto
&
type_pair
:
added_secure_types_
)
{
types
.
push_back
(
type_pair
.
first
);
}
return
types
;
}
private
:
grpc
::
mutex
mu_
;
std
::
unordered_map
<
grpc
::
string
,
std
::
unique_ptr
<
CredentialTypeProvider
>
>
added_secure_types_
;
};
gpr_once
g_once_init_provider_mu
=
GPR_ONCE_INIT
;
grpc
::
mutex
*
g_provider_mu
=
nullptr
;
gpr_once
g_once_init_provider
=
GPR_ONCE_INIT
;
CredentialsProvider
*
g_provider
=
nullptr
;
void
InitProviderMu
()
{
g_provider_mu
=
new
grpc
::
mutex
;
}
grpc
::
mutex
&
GetMu
()
{
gpr_once_init
(
&
g_once_init_provider_mu
,
&
InitProviderMu
);
return
*
g_provider_mu
;
void
CreateDefaultProvider
()
{
g_provider
=
new
DefaultCredentialsProvider
;
}
CredentialsProvider
*
GetProvider
()
{
grpc
::
unique_lock
<
grpc
::
mutex
>
lock
(
GetMu
());
if
(
g_provider
==
nullptr
)
{
g_provider
=
new
DefaultCredentialsProvider
;
}
gpr_once_init
(
&
g_once_init_provider
,
&
CreateDefaultProvider
);
return
g_provider
;
}
...
...
@@ -117,15 +153,9 @@ CredentialsProvider* GetProvider() {
namespace
grpc
{
namespace
testing
{
// Note that it is not thread-safe to set a provider while concurrently using
// the previously set provider, as this deletes and replaces it. nullptr may be
// given to reset to the default.
void
SetTestCredentialsProvider
(
std
::
unique_ptr
<
CredentialsProvider
>
provider
)
{
grpc
::
unique_lock
<
grpc
::
mutex
>
lock
(
GetMu
());
if
(
g_provider
!=
nullptr
)
{
delete
g_provider
;
}
g_provider
=
provider
.
release
();
void
AddSecureType
(
const
grpc
::
string
&
type
,
std
::
unique_ptr
<
CredentialTypeProvider
>
type_provider
)
{
GetProvider
()
->
AddSecureType
(
type
,
std
::
move
(
type_provider
));
}
std
::
shared_ptr
<
ChannelCredentials
>
GetChannelCredentials
(
...
...
This diff is collapsed.
Click to expand it.
test/cpp/util/test_credentials_provider.h
+
10
−
9
View file @
1b5a264e
...
...
@@ -46,20 +46,21 @@ namespace testing {
const
char
kInsecureCredentialsType
[]
=
"INSECURE_CREDENTIALS"
;
const
char
kTlsCredentialsType
[]
=
"TLS_CREDENTIALS"
;
class
CredentialsProvider
{
// Provide test credentials of a particular type.
class
CredentialTypeProvider
{
public:
virtual
~
Credential
s
Provider
()
{}
virtual
~
Credential
Type
Provider
()
{}
virtual
std
::
shared_ptr
<
ChannelCredentials
>
GetChannelCredentials
(
const
grpc
::
string
&
type
,
ChannelArguments
*
args
)
=
0
;
virtual
std
::
shared_ptr
<
ServerCredentials
>
GetServerCredentials
(
const
grpc
::
string
&
type
)
=
0
;
virtual
std
::
vector
<
grpc
::
string
>
GetSecureCredentialsTypeList
()
=
0
;
ChannelArguments
*
args
)
=
0
;
virtual
std
::
shared_ptr
<
ServerCredentials
>
GetServerCredentials
()
=
0
;
};
// Set the CredentialsProvider used by the other functions in this file. If this
// is not set, a default provider will be used.
void
SetTestCredentialsProvider
(
std
::
unique_ptr
<
CredentialsProvider
>
provider
);
// Add a secure type in addition to the defaults above
// (kInsecureCredentialsType, kTlsCredentialsType) that can be returned from the
// functions below.
void
AddSecureType
(
const
grpc
::
string
&
type
,
std
::
unique_ptr
<
CredentialTypeProvider
>
type_provider
);
// Provide channel credentials according to the given type. Alter the channel
// arguments if needed.
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment