16 #include <gtest/gtest.h> 20 #include <aws/core/Aws.h> 21 #include <aws/core/utils/json/JsonSerializer.h> 28 using ::testing::Matcher;
29 using ::testing::DoAll;
30 using ::testing::SetArgReferee;
31 using ::testing::Return;
45 std::shared_ptr<ParameterReaderMock> param_reader_ =
46 std::make_shared<ParameterReaderMock>();
50 {
"cafile",
"M2M1NTA0NTQxMDg4YTUxMzcyMzY4MTNh"}, {
"certfile",
"MmQ2NWEyZmFmNThlOWM1"},
51 {
"keyfile",
"MDAxZmZiY2VjYmIwMGM"}, {
"endpoint",
"xNDhkYzU5MjNm"},
52 {
"role",
"YmIwNTMx"}, {
"thing_name",
"MzExMTdlMGI2YzY5ZjJmYTli"},
53 {
"connect_timeout_ms",
"42"}, {
"total_timeout_ms",
"27"}
57 "cafile",
"certfile",
"keyfile",
"endpoint",
"role",
"thing_name" 61 kFullIotConfigMap.at(
"cafile").c_str(),
62 kFullIotConfigMap.at(
"certfile").c_str(),
63 kFullIotConfigMap.at(
"keyfile").c_str(),
64 kFullIotConfigMap.at(
"endpoint").c_str(),
65 kFullIotConfigMap.at(
"role").c_str(),
66 kFullIotConfigMap.at(
"thing_name").c_str(),
67 StringUtils::ConvertToInt32(kFullIotConfigMap.at(
"connect_timeout_ms").c_str()),
68 StringUtils::ConvertToInt32(kFullIotConfigMap.at(
"total_timeout_ms").c_str())
72 {
"expiration",
"2019-01-10T21:57:06Z"},
73 {
"accessKeyId",
"ZWM2ODYzNDEwZWJhNGM0NjZiYzk4ZDI4"},
74 {
"secretAccessKey",
"YWYyNWM0NmEzZWE1NWQy"},
75 {
"sessionToken",
"YTFhM2NhNjM5OGZlMDlmYmRmMTY3Mzk5WQyNDVkMTJjYThi"}
79 "expiration",
"accessKeyId",
"secretAccessKey",
"sessionToken" 84 EXPECT_CALL(*param_reader_, ReadParam(_, Matcher<std::map<std::string, std::string> &>(_)))
90 EXPECT_FALSE(success);
95 public ::testing::WithParamInterface<std::string> {};
99 auto missing_config_key = GetParam();
100 auto partial_iot_config = std::map<std::string, std::string>(kFullIotConfigMap);
101 partial_iot_config.erase(missing_config_key);
102 EXPECT_CALL(*param_reader_, ReadParam(_, Matcher<std::map<std::string, std::string> &>(_)))
108 EXPECT_FALSE(success);
112 TestGetServiceAuthConfigPartialIotConfig,
119 EXPECT_CALL(*param_reader_, ReadParam(_, Matcher<std::map<std::string, std::string> &>(_)))
125 EXPECT_TRUE(success);
126 EXPECT_STREQ(kFullIotConfigMap.at(
"cafile").c_str(), config.
iot.
cafile.c_str());
127 EXPECT_STREQ(kFullIotConfigMap.at(
"certfile").c_str(), config.
iot.
certfile.c_str());
128 EXPECT_STREQ(kFullIotConfigMap.at(
"keyfile").c_str(), config.
iot.
keyfile.c_str());
129 EXPECT_STREQ(kFullIotConfigMap.at(
"endpoint").c_str(), config.
iot.
host.c_str());
130 EXPECT_STREQ(kFullIotConfigMap.at(
"role").c_str(), config.
iot.
role.c_str());
131 EXPECT_STREQ(kFullIotConfigMap.at(
"thing_name").c_str(), config.
iot.
name.c_str());
132 EXPECT_EQ(StringUtils::ConvertToInt32(kFullIotConfigMap.at(
"connect_timeout_ms").c_str()),
134 EXPECT_EQ(StringUtils::ConvertToInt32(kFullIotConfigMap.at(
"total_timeout_ms").c_str()),
144 EXPECT_EQ(default_conf_chain.GetProviders().size() + 1, configured_chain.GetProviders().size());
156 EXPECT_EQ(default_conf_chain.GetProviders().size(), configured_chain.GetProviders().size());
167 return IotRoleCredentialsProvider::ValidateResponse(value);
175 auto provider = std::make_shared<OpenIotRoleCredentialsProvider>(kFullIotConfig);
176 AWSCredentials initial_credentials(provider->GetAWSCredentials());
178 provider->PublicRefresh();
181 EXPECT_EQ(initial_credentials, provider->GetAWSCredentials());
186 auto provider = std::make_shared<OpenIotRoleCredentialsProvider>(kFullIotConfig);
187 AWSCredentials aws_credentials{
"ZWM2ODYzNDEwZWJhNGM0NjZiYzk4ZDI4",
188 "YWYyNWM0NmEzZWE1NWQy",
"YTFhM2NhNjM5OGZlMDlmYmRmMTY3Mzk5WQyNDVkMTJjYThi"};
190 provider->PublicSetCredentials(aws_credentials);
192 EXPECT_EQ(aws_credentials, provider->GetAWSCredentials());
197 auto provider = std::make_shared<OpenIotRoleCredentialsProvider>(kFullIotConfig);
199 Json::JsonValue malformed_json(Aws::String(
"malformed"));
200 EXPECT_FALSE(provider->PublicValidateResponse(malformed_json));
202 auto response = Json::JsonValue();
203 EXPECT_FALSE(provider->PublicValidateResponse(response));
205 EXPECT_FALSE(provider->PublicValidateResponse(response.WithString(
"credentials", Aws::String(
"foo"))));
207 auto credentials = Json::JsonValue();
208 EXPECT_FALSE(provider->PublicValidateResponse(response.WithObject(
"credentials", credentials)));
210 credentials = credentials.WithString(
"expiration", Aws::String(
"2019-01-10T21:57:06Z"));
211 EXPECT_FALSE(provider->PublicValidateResponse(response.WithObject(
"credentials", credentials)));
213 credentials = credentials.WithString(
"accessKeyId", Aws::String(
"ZWM2ODYzNDEwZWJhNGM0NjZiYzk4ZDI4"));
214 EXPECT_FALSE(provider->PublicValidateResponse(response.WithObject(
"credentials", credentials)));
216 credentials = credentials.WithString(
"secretAccessKey", Aws::String(
"YWYyNWM0NmEzZWE1NWQy"));
217 EXPECT_FALSE(provider->PublicValidateResponse(response.WithObject(
"credentials", credentials)));
219 credentials = credentials.WithString(
"sessionToken", Aws::String(
"YTFhM2NhNjM5OGZlMDlmYmRmMTY3Mzk5WQyNDVkMTJjYThi"));
220 EXPECT_TRUE(provider->PublicValidateResponse(response.WithObject(
"credentials", credentials)));
223 int main(
int argc,
char ** argv)
225 Aws::SDKOptions options;
226 Aws::InitAPI(options);
228 testing::InitGoogleTest(&argc, argv);
229 auto test_result = RUN_ALL_TESTS();
231 Aws::ShutdownAPI(options);
static const std::list< std::string > kFullCredentialsInfoKeys
OpenIotRoleCredentialsProvider(const IotRoleConfig &config)
void PublicSetCredentials(AWSCredentials &creds)
Credentials provider chain for ROS AWS service integrations.
Aws::Auth::AWSCredentials GetCachedCredentials()
Aws::String host
Host name of the iot:CredentialProvider endpoint.
IotRoleConfig iot
IoT-specific configuration.
static const std::list< std::string > kFullIotConfigMandatoryKeys
static const std::map< std::string, std::string > kFullIotConfigMap
long connect_timeout_ms
Number of ms to wait before timing out when connecting to the endpoint.
TEST_P(TestGetServiceAuthConfigFixture, TestGetServiceAuthConfigPartialIotConfig)
AwsError
Defines error return codes for functions This enum defines standard error codes that will be returned...
Aws::String cafile
Path to the Root CA for the endpoint.
bool PublicValidateResponse(Aws::Utils::Json::JsonValue &value)
static const IotRoleConfig kFullIotConfig
Auth configuration needed to retrieve AWS credentials via the IoT service.
Aws::String name
Thing name for the device.
Aws::String certfile
Path to the certificate which identifies the device.
Aws::String role
Name of the AWS IoT Role Alias for the device.
INSTANTIATE_TEST_CASE_P(TestGetServiceAuthConfigPartialIotConfig, TestGetServiceAuthConfigFixture, ::testing::ValuesIn(ServiceCredentialsProviderFixture::kFullIotConfigMandatoryKeys))
int main(int argc, char **argv)
TEST_F(ServiceCredentialsProviderFixture, TestGetServiceAuthConfigNoIotConfig)
static const std::map< std::string, std::string > kFullCredentialsInfo
long total_timeout_ms
Total number of ms to wait for the entire connect/request/response transaction.
bool GetServiceAuthConfig(ServiceAuthConfig &config, const std::shared_ptr< Aws::Client::ParameterReaderInterface > ¶meters)
Retrieves service authorization data from a ParameterReaderInterface and populates the ServiceAuthCon...
Aws::String keyfile
Path to the related private key for the certificate.
AWSCredentialsProvider that obtains credentials using the AWS IoT Core service.
Auth configuration for ROS AWS service integration.