service_credentials_provider_test.cpp
Go to the documentation of this file.
1 /*
2  * Copyright 2018 Amazon.com, Inc. or its affiliates. All Rights Reserved.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License").
5  * You may not use this file except in compliance with the License.
6  * A copy of the License is located at
7  *
8  * http://aws.amazon.com/apache2.0
9  *
10  * or in the "license" file accompanying this file. This file is distributed
11  * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
12  * express or implied. See the License for the specific language governing
13  * permissions and limitations under the License.
14  */
15 
16 #include <gtest/gtest.h>
17 // #include <gmock/gmock.h>
20 #include <aws/core/Aws.h>
21 #include <aws/core/utils/json/JsonSerializer.h>
22 
23 using namespace Aws::Client;
24 using namespace Aws::Utils;
25 using namespace Aws::Auth;
26 using namespace Aws::Utils::Json;
27 using ::testing::_;
28 using ::testing::Matcher;
29 using ::testing::DoAll;
30 using ::testing::SetArgReferee;
31 using ::testing::Return;
32 using Aws::AwsError;
33 
34 
35 class ServiceCredentialsProviderFixture : public ::testing::Test
36 {
37 public:
38  static const std::map<std::string, std::string> kFullIotConfigMap;
39  static const std::list<std::string> kFullIotConfigMandatoryKeys;
41  static const std::map<std::string, std::string> kFullCredentialsInfo;
42  static const std::list<std::string> kFullCredentialsInfoKeys;
43 
44 protected:
45  std::shared_ptr<ParameterReaderMock> param_reader_ =
46  std::make_shared<ParameterReaderMock>();
47 };
48 
49 const std::map<std::string, std::string> ServiceCredentialsProviderFixture::kFullIotConfigMap = {
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"}
54 };
55 
57  "cafile", "certfile", "keyfile", "endpoint", "role", "thing_name"
58 };
59 
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())
69 );
70 
71 const std::map<std::string, std::string> ServiceCredentialsProviderFixture::kFullCredentialsInfo = {
72  {"expiration", "2019-01-10T21:57:06Z"},
73  {"accessKeyId", "ZWM2ODYzNDEwZWJhNGM0NjZiYzk4ZDI4"},
74  {"secretAccessKey", "YWYyNWM0NmEzZWE1NWQy"},
75  {"sessionToken", "YTFhM2NhNjM5OGZlMDlmYmRmMTY3Mzk5WQyNDVkMTJjYThi"}
76 };
77 
79  "expiration", "accessKeyId", "secretAccessKey", "sessionToken"
80 };
81 
82 TEST_F(ServiceCredentialsProviderFixture, TestGetServiceAuthConfigNoIotConfig)
83 {
84  EXPECT_CALL(*param_reader_, ReadParam(_, Matcher<std::map<std::string, std::string> &>(_)))
85  .WillRepeatedly(Return(AwsError::AWS_ERR_NOT_FOUND));
86 
87  ServiceAuthConfig config;
88  bool success = GetServiceAuthConfig(config, param_reader_);
89 
90  EXPECT_FALSE(success);
91 }
92 
95  public ::testing::WithParamInterface<std::string> {};
96 
97 TEST_P(TestGetServiceAuthConfigFixture, TestGetServiceAuthConfigPartialIotConfig)
98 {
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> &>(_)))
103  .WillRepeatedly(DoAll(SetArgReferee<1>(partial_iot_config), Return(AwsError::AWS_ERR_OK)));
104 
105  ServiceAuthConfig config;
106  bool success = GetServiceAuthConfig(config, param_reader_);
107 
108  EXPECT_FALSE(success);
109 }
110 
112  TestGetServiceAuthConfigPartialIotConfig,
115 );
116 
117 TEST_F(ServiceCredentialsProviderFixture, TestGetServiceAuthConfigCompleteIotConfig)
118 {
119  EXPECT_CALL(*param_reader_, ReadParam(_, Matcher<std::map<std::string, std::string> &>(_)))
120  .WillRepeatedly(DoAll(SetArgReferee<1>(kFullIotConfigMap), Return(AwsError::AWS_ERR_OK)));
121 
122  ServiceAuthConfig config;
123  bool success = GetServiceAuthConfig(config, param_reader_);
124 
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()),
133  config.iot.connect_timeout_ms);
134  EXPECT_EQ(StringUtils::ConvertToInt32(kFullIotConfigMap.at("total_timeout_ms").c_str()),
135  config.iot.total_timeout_ms);
136 }
137 
138 TEST_F(ServiceCredentialsProviderFixture, TestServiceCredentialsProviderChainValidIotConf)
139 {
140  ServiceCredentialsProviderChain default_conf_chain;
141  ServiceCredentialsProviderChain configured_chain(ServiceAuthConfig{kFullIotConfig});
142 
143  // a new credential provider is added to the chain
144  EXPECT_EQ(default_conf_chain.GetProviders().size() + 1, configured_chain.GetProviders().size());
145 }
146 
147 TEST_F(ServiceCredentialsProviderFixture, TestServiceCredentialsProviderChainInvalidIotConf)
148 {
149  ServiceAuthConfig config = ServiceAuthConfig{kFullIotConfig};
150  config.iot.cafile = "";
151 
152  ServiceCredentialsProviderChain default_conf_chain;
153  ServiceCredentialsProviderChain configured_chain(config);
154 
155  // no new credential provider is added to the chain
156  EXPECT_EQ(default_conf_chain.GetProviders().size(), configured_chain.GetProviders().size());
157 }
158 
160 {
161 public:
163 
164  void PublicRefresh() { IotRoleCredentialsProvider::Refresh(); }
165  void PublicSetCredentials(AWSCredentials & creds) { IotRoleCredentialsProvider::SetCredentials(creds); }
166  bool PublicValidateResponse(Aws::Utils::Json::JsonValue & value) {
167  return IotRoleCredentialsProvider::ValidateResponse(value);
168  }
169 
170  Aws::Auth::AWSCredentials GetCachedCredentials() { return this->cached_; }
171 };
172 
173 TEST_F(ServiceCredentialsProviderFixture, TestIotRoleCredentialsProviderRefreshWrongHost)
174 {
175  auto provider = std::make_shared<OpenIotRoleCredentialsProvider>(kFullIotConfig);
176  AWSCredentials initial_credentials(provider->GetAWSCredentials());
177 
178  provider->PublicRefresh();
179 
180  // credentials are not changed if the request to get new credentials fails
181  EXPECT_EQ(initial_credentials, provider->GetAWSCredentials());
182 }
183 
184 TEST_F(ServiceCredentialsProviderFixture, TestIotRoleCredentialsProviderSetCredentials)
185 {
186  auto provider = std::make_shared<OpenIotRoleCredentialsProvider>(kFullIotConfig);
187  AWSCredentials aws_credentials{"ZWM2ODYzNDEwZWJhNGM0NjZiYzk4ZDI4",
188  "YWYyNWM0NmEzZWE1NWQy", "YTFhM2NhNjM5OGZlMDlmYmRmMTY3Mzk5WQyNDVkMTJjYThi"};
189 
190  provider->PublicSetCredentials(aws_credentials);
191 
192  EXPECT_EQ(aws_credentials, provider->GetAWSCredentials());
193 }
194 
195 TEST_F(ServiceCredentialsProviderFixture, TestIotRoleCredentialsValidateResponse)
196 {
197  auto provider = std::make_shared<OpenIotRoleCredentialsProvider>(kFullIotConfig);
198 
199  Json::JsonValue malformed_json(Aws::String("malformed"));
200  EXPECT_FALSE(provider->PublicValidateResponse(malformed_json));
201 
202  auto response = Json::JsonValue();
203  EXPECT_FALSE(provider->PublicValidateResponse(response));
204 
205  EXPECT_FALSE(provider->PublicValidateResponse(response.WithString("credentials", Aws::String("foo"))));
206 
207  auto credentials = Json::JsonValue();
208  EXPECT_FALSE(provider->PublicValidateResponse(response.WithObject("credentials", credentials)));
209 
210  credentials = credentials.WithString("expiration", Aws::String("2019-01-10T21:57:06Z"));
211  EXPECT_FALSE(provider->PublicValidateResponse(response.WithObject("credentials", credentials)));
212 
213  credentials = credentials.WithString("accessKeyId", Aws::String("ZWM2ODYzNDEwZWJhNGM0NjZiYzk4ZDI4"));
214  EXPECT_FALSE(provider->PublicValidateResponse(response.WithObject("credentials", credentials)));
215 
216  credentials = credentials.WithString("secretAccessKey", Aws::String("YWYyNWM0NmEzZWE1NWQy"));
217  EXPECT_FALSE(provider->PublicValidateResponse(response.WithObject("credentials", credentials)));
218 
219  credentials = credentials.WithString("sessionToken", Aws::String("YTFhM2NhNjM5OGZlMDlmYmRmMTY3Mzk5WQyNDVkMTJjYThi"));
220  EXPECT_TRUE(provider->PublicValidateResponse(response.WithObject("credentials", credentials)));
221 }
222 
223 int main(int argc, char ** argv)
224 {
225  Aws::SDKOptions options;
226  Aws::InitAPI(options);
227 
228  testing::InitGoogleTest(&argc, argv);
229  auto test_result = RUN_ALL_TESTS();
230 
231  Aws::ShutdownAPI(options);
232 
233  return test_result;
234 }
static const std::list< std::string > kFullCredentialsInfoKeys
OpenIotRoleCredentialsProvider(const IotRoleConfig &config)
Credentials provider chain for ROS AWS service integrations.
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...
Definition: aws_error.h:29
Aws::String cafile
Path to the Root CA for the endpoint.
bool PublicValidateResponse(Aws::Utils::Json::JsonValue &value)
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 > &parameters)
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.


aws_common
Author(s): AWS RoboMaker
autogenerated on Mon Feb 28 2022 21:58:58