|
|
@ -24,6 +24,8 @@ |
|
|
|
#include <gmock/gmock.h> |
|
|
|
#include <gmock/gmock.h> |
|
|
|
#include <gtest/gtest.h> |
|
|
|
#include <gtest/gtest.h> |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#include "absl/log/check.h" |
|
|
|
|
|
|
|
|
|
|
|
#include <grpc/support/alloc.h> |
|
|
|
#include <grpc/support/alloc.h> |
|
|
|
#include <grpc/support/log.h> |
|
|
|
#include <grpc/support/log.h> |
|
|
|
#include <grpc/support/string_util.h> |
|
|
|
#include <grpc/support/string_util.h> |
|
|
@ -368,8 +370,8 @@ TEST_F(TlsSecurityConnectorTest, |
|
|
|
// Construct a basic TSI Peer.
|
|
|
|
// Construct a basic TSI Peer.
|
|
|
|
tsi_peer peer; |
|
|
|
tsi_peer peer; |
|
|
|
CHECK(tsi_construct_peer(2, &peer) == TSI_OK); |
|
|
|
CHECK(tsi_construct_peer(2, &peer) == TSI_OK); |
|
|
|
CHECK(tsi_construct_string_peer_property(TSI_SSL_ALPN_SELECTED_PROTOCOL, |
|
|
|
CHECK(tsi_construct_string_peer_property(TSI_SSL_ALPN_SELECTED_PROTOCOL, "h2", |
|
|
|
"h2", strlen("h2"), |
|
|
|
strlen("h2"), |
|
|
|
&peer.properties[0]) == TSI_OK); |
|
|
|
&peer.properties[0]) == TSI_OK); |
|
|
|
CHECK(tsi_construct_string_peer_property_from_cstring( |
|
|
|
CHECK(tsi_construct_string_peer_property_from_cstring( |
|
|
|
TSI_X509_SUBJECT_COMMON_NAME_PEER_PROPERTY, "foo.bar.com", |
|
|
|
TSI_X509_SUBJECT_COMMON_NAME_PEER_PROPERTY, "foo.bar.com", |
|
|
@ -404,8 +406,8 @@ TEST_F(TlsSecurityConnectorTest, |
|
|
|
// Construct a basic TSI Peer.
|
|
|
|
// Construct a basic TSI Peer.
|
|
|
|
tsi_peer peer; |
|
|
|
tsi_peer peer; |
|
|
|
CHECK(tsi_construct_peer(2, &peer) == TSI_OK); |
|
|
|
CHECK(tsi_construct_peer(2, &peer) == TSI_OK); |
|
|
|
CHECK(tsi_construct_string_peer_property(TSI_SSL_ALPN_SELECTED_PROTOCOL, |
|
|
|
CHECK(tsi_construct_string_peer_property(TSI_SSL_ALPN_SELECTED_PROTOCOL, "h2", |
|
|
|
"h2", strlen("h2"), |
|
|
|
strlen("h2"), |
|
|
|
&peer.properties[0]) == TSI_OK); |
|
|
|
&peer.properties[0]) == TSI_OK); |
|
|
|
CHECK(tsi_construct_string_peer_property_from_cstring( |
|
|
|
CHECK(tsi_construct_string_peer_property_from_cstring( |
|
|
|
TSI_X509_SUBJECT_COMMON_NAME_PEER_PROPERTY, "foo.bar.com", |
|
|
|
TSI_X509_SUBJECT_COMMON_NAME_PEER_PROPERTY, "foo.bar.com", |
|
|
@ -557,8 +559,8 @@ TEST_F(TlsSecurityConnectorTest, |
|
|
|
// Construct a basic TSI Peer.
|
|
|
|
// Construct a basic TSI Peer.
|
|
|
|
tsi_peer peer; |
|
|
|
tsi_peer peer; |
|
|
|
CHECK(tsi_construct_peer(2, &peer) == TSI_OK); |
|
|
|
CHECK(tsi_construct_peer(2, &peer) == TSI_OK); |
|
|
|
CHECK(tsi_construct_string_peer_property(TSI_SSL_ALPN_SELECTED_PROTOCOL, |
|
|
|
CHECK(tsi_construct_string_peer_property(TSI_SSL_ALPN_SELECTED_PROTOCOL, "h2", |
|
|
|
"h2", strlen("h2"), |
|
|
|
strlen("h2"), |
|
|
|
&peer.properties[0]) == TSI_OK); |
|
|
|
&peer.properties[0]) == TSI_OK); |
|
|
|
CHECK(tsi_construct_string_peer_property_from_cstring( |
|
|
|
CHECK(tsi_construct_string_peer_property_from_cstring( |
|
|
|
TSI_X509_SUBJECT_COMMON_NAME_PEER_PROPERTY, "foo.bar.com", |
|
|
|
TSI_X509_SUBJECT_COMMON_NAME_PEER_PROPERTY, "foo.bar.com", |
|
|
@ -593,8 +595,8 @@ TEST_F(TlsSecurityConnectorTest, |
|
|
|
// Construct a basic TSI Peer.
|
|
|
|
// Construct a basic TSI Peer.
|
|
|
|
tsi_peer peer; |
|
|
|
tsi_peer peer; |
|
|
|
CHECK(tsi_construct_peer(2, &peer) == TSI_OK); |
|
|
|
CHECK(tsi_construct_peer(2, &peer) == TSI_OK); |
|
|
|
CHECK(tsi_construct_string_peer_property(TSI_SSL_ALPN_SELECTED_PROTOCOL, |
|
|
|
CHECK(tsi_construct_string_peer_property(TSI_SSL_ALPN_SELECTED_PROTOCOL, "h2", |
|
|
|
"h2", strlen("h2"), |
|
|
|
strlen("h2"), |
|
|
|
&peer.properties[0]) == TSI_OK); |
|
|
|
&peer.properties[0]) == TSI_OK); |
|
|
|
CHECK(tsi_construct_string_peer_property_from_cstring( |
|
|
|
CHECK(tsi_construct_string_peer_property_from_cstring( |
|
|
|
TSI_X509_SUBJECT_COMMON_NAME_PEER_PROPERTY, "foo.bar.com", |
|
|
|
TSI_X509_SUBJECT_COMMON_NAME_PEER_PROPERTY, "foo.bar.com", |
|
|
@ -631,8 +633,8 @@ TEST_F(TlsSecurityConnectorTest, |
|
|
|
// Construct a full TSI Peer.
|
|
|
|
// Construct a full TSI Peer.
|
|
|
|
tsi_peer peer; |
|
|
|
tsi_peer peer; |
|
|
|
CHECK(tsi_construct_peer(7, &peer) == TSI_OK); |
|
|
|
CHECK(tsi_construct_peer(7, &peer) == TSI_OK); |
|
|
|
CHECK(tsi_construct_string_peer_property(TSI_SSL_ALPN_SELECTED_PROTOCOL, |
|
|
|
CHECK(tsi_construct_string_peer_property(TSI_SSL_ALPN_SELECTED_PROTOCOL, "h2", |
|
|
|
"h2", strlen("h2"), |
|
|
|
strlen("h2"), |
|
|
|
&peer.properties[0]) == TSI_OK); |
|
|
|
&peer.properties[0]) == TSI_OK); |
|
|
|
CHECK(tsi_construct_string_peer_property_from_cstring( |
|
|
|
CHECK(tsi_construct_string_peer_property_from_cstring( |
|
|
|
TSI_X509_SUBJECT_COMMON_NAME_PEER_PROPERTY, "foo.bar.com", |
|
|
|
TSI_X509_SUBJECT_COMMON_NAME_PEER_PROPERTY, "foo.bar.com", |
|
|
@ -679,8 +681,8 @@ TEST_F(TlsSecurityConnectorTest, |
|
|
|
// Construct a full TSI Peer.
|
|
|
|
// Construct a full TSI Peer.
|
|
|
|
tsi_peer peer; |
|
|
|
tsi_peer peer; |
|
|
|
CHECK(tsi_construct_peer(7, &peer) == TSI_OK); |
|
|
|
CHECK(tsi_construct_peer(7, &peer) == TSI_OK); |
|
|
|
CHECK(tsi_construct_string_peer_property(TSI_SSL_ALPN_SELECTED_PROTOCOL, |
|
|
|
CHECK(tsi_construct_string_peer_property(TSI_SSL_ALPN_SELECTED_PROTOCOL, "h2", |
|
|
|
"h2", strlen("h2"), |
|
|
|
strlen("h2"), |
|
|
|
&peer.properties[0]) == TSI_OK); |
|
|
|
&peer.properties[0]) == TSI_OK); |
|
|
|
CHECK(tsi_construct_string_peer_property_from_cstring( |
|
|
|
CHECK(tsi_construct_string_peer_property_from_cstring( |
|
|
|
TSI_X509_SUBJECT_COMMON_NAME_PEER_PROPERTY, "foo.com", |
|
|
|
TSI_X509_SUBJECT_COMMON_NAME_PEER_PROPERTY, "foo.com", |
|
|
@ -988,8 +990,8 @@ TEST_F(TlsSecurityConnectorTest, |
|
|
|
// Construct a basic TSI Peer.
|
|
|
|
// Construct a basic TSI Peer.
|
|
|
|
tsi_peer peer; |
|
|
|
tsi_peer peer; |
|
|
|
CHECK(tsi_construct_peer(2, &peer) == TSI_OK); |
|
|
|
CHECK(tsi_construct_peer(2, &peer) == TSI_OK); |
|
|
|
CHECK(tsi_construct_string_peer_property(TSI_SSL_ALPN_SELECTED_PROTOCOL, |
|
|
|
CHECK(tsi_construct_string_peer_property(TSI_SSL_ALPN_SELECTED_PROTOCOL, "h2", |
|
|
|
"h2", strlen("h2"), |
|
|
|
strlen("h2"), |
|
|
|
&peer.properties[0]) == TSI_OK); |
|
|
|
&peer.properties[0]) == TSI_OK); |
|
|
|
CHECK(tsi_construct_string_peer_property_from_cstring( |
|
|
|
CHECK(tsi_construct_string_peer_property_from_cstring( |
|
|
|
TSI_X509_SUBJECT_COMMON_NAME_PEER_PROPERTY, "foo.bar.com", |
|
|
|
TSI_X509_SUBJECT_COMMON_NAME_PEER_PROPERTY, "foo.bar.com", |
|
|
@ -1019,8 +1021,8 @@ TEST_F(TlsSecurityConnectorTest, |
|
|
|
// Construct a basic TSI Peer.
|
|
|
|
// Construct a basic TSI Peer.
|
|
|
|
tsi_peer peer; |
|
|
|
tsi_peer peer; |
|
|
|
CHECK(tsi_construct_peer(2, &peer) == TSI_OK); |
|
|
|
CHECK(tsi_construct_peer(2, &peer) == TSI_OK); |
|
|
|
CHECK(tsi_construct_string_peer_property(TSI_SSL_ALPN_SELECTED_PROTOCOL, |
|
|
|
CHECK(tsi_construct_string_peer_property(TSI_SSL_ALPN_SELECTED_PROTOCOL, "h2", |
|
|
|
"h2", strlen("h2"), |
|
|
|
strlen("h2"), |
|
|
|
&peer.properties[0]) == TSI_OK); |
|
|
|
&peer.properties[0]) == TSI_OK); |
|
|
|
CHECK(tsi_construct_string_peer_property_from_cstring( |
|
|
|
CHECK(tsi_construct_string_peer_property_from_cstring( |
|
|
|
TSI_X509_SUBJECT_COMMON_NAME_PEER_PROPERTY, "foo.bar.com", |
|
|
|
TSI_X509_SUBJECT_COMMON_NAME_PEER_PROPERTY, "foo.bar.com", |
|
|
@ -1054,8 +1056,8 @@ TEST_F(TlsSecurityConnectorTest, |
|
|
|
// Construct a basic TSI Peer.
|
|
|
|
// Construct a basic TSI Peer.
|
|
|
|
tsi_peer peer; |
|
|
|
tsi_peer peer; |
|
|
|
CHECK(tsi_construct_peer(2, &peer) == TSI_OK); |
|
|
|
CHECK(tsi_construct_peer(2, &peer) == TSI_OK); |
|
|
|
CHECK(tsi_construct_string_peer_property(TSI_SSL_ALPN_SELECTED_PROTOCOL, |
|
|
|
CHECK(tsi_construct_string_peer_property(TSI_SSL_ALPN_SELECTED_PROTOCOL, "h2", |
|
|
|
"h2", strlen("h2"), |
|
|
|
strlen("h2"), |
|
|
|
&peer.properties[0]) == TSI_OK); |
|
|
|
&peer.properties[0]) == TSI_OK); |
|
|
|
CHECK(tsi_construct_string_peer_property_from_cstring( |
|
|
|
CHECK(tsi_construct_string_peer_property_from_cstring( |
|
|
|
TSI_X509_SUBJECT_COMMON_NAME_PEER_PROPERTY, "foo.bar.com", |
|
|
|
TSI_X509_SUBJECT_COMMON_NAME_PEER_PROPERTY, "foo.bar.com", |
|
|
@ -1087,8 +1089,8 @@ TEST_F(TlsSecurityConnectorTest, |
|
|
|
// Construct a basic TSI Peer.
|
|
|
|
// Construct a basic TSI Peer.
|
|
|
|
tsi_peer peer; |
|
|
|
tsi_peer peer; |
|
|
|
CHECK(tsi_construct_peer(2, &peer) == TSI_OK); |
|
|
|
CHECK(tsi_construct_peer(2, &peer) == TSI_OK); |
|
|
|
CHECK(tsi_construct_string_peer_property(TSI_SSL_ALPN_SELECTED_PROTOCOL, |
|
|
|
CHECK(tsi_construct_string_peer_property(TSI_SSL_ALPN_SELECTED_PROTOCOL, "h2", |
|
|
|
"h2", strlen("h2"), |
|
|
|
strlen("h2"), |
|
|
|
&peer.properties[0]) == TSI_OK); |
|
|
|
&peer.properties[0]) == TSI_OK); |
|
|
|
CHECK(tsi_construct_string_peer_property_from_cstring( |
|
|
|
CHECK(tsi_construct_string_peer_property_from_cstring( |
|
|
|
TSI_X509_SUBJECT_COMMON_NAME_PEER_PROPERTY, "foo.bar.com", |
|
|
|
TSI_X509_SUBJECT_COMMON_NAME_PEER_PROPERTY, "foo.bar.com", |
|
|
|