client_configuration_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 <aws/core/Aws.h>
20 
21 using namespace Aws::Client;
22 using ::testing::_;
23 using ::testing::Matcher;
24 using ::testing::DoAll;
25 using ::testing::SetArgReferee;
26 using ::testing::Return;
27 using Aws::AwsError;
28 
29 class ClientConfigurationProviderFixture : public ::testing::Test
30 {
31 protected:
32  std::shared_ptr<ParameterReaderMock> param_reader_ =
33  std::make_shared<ParameterReaderMock>();
34  std::shared_ptr<ClientConfigurationProvider> test_subject_ =
35  std::make_shared<ClientConfigurationProvider>(param_reader_);
36 };
37 
39 {
40  const char* expected_str = "N2IxYjk2ZDhkYTNmZWQ2ZjkwMDlhNWRl";
41  const int kExpectedInt = 64654;
42  const bool kExpectedBool = true;
43 
44  EXPECT_CALL(*param_reader_, ReadParam(_, Matcher<std::vector<std::string> &>(_)))
45  .WillRepeatedly(Return(AwsError::AWS_ERR_OK));
46  EXPECT_CALL(*param_reader_, ReadParam(_, Matcher<double &>(_)))
47  .WillRepeatedly(Return(AwsError::AWS_ERR_OK));
48  EXPECT_CALL(*param_reader_, ReadParam(_, Matcher<std::string &>(_)))
49  .WillRepeatedly(Return(AwsError::AWS_ERR_OK));
50  EXPECT_CALL(*param_reader_, ReadParam(_, Matcher<Aws::String &>(_)))
51  .WillRepeatedly(DoAll(SetArgReferee<1>(expected_str), Return(AwsError::AWS_ERR_OK)));
52  EXPECT_CALL(*param_reader_, ReadParam(_, Matcher<int &>(_)))
53  .WillRepeatedly(DoAll(SetArgReferee<1>(kExpectedInt), Return(AwsError::AWS_ERR_OK)));
54  EXPECT_CALL(*param_reader_, ReadParam(_, Matcher<bool &>(_)))
55  .WillRepeatedly(DoAll(SetArgReferee<1>(kExpectedBool), Return(AwsError::AWS_ERR_OK)));
56 
57  ClientConfiguration config = test_subject_->GetClientConfiguration();
58 
59  EXPECT_EQ(expected_str, config.region);
60  EXPECT_EQ(kExpectedInt, config.maxConnections);
61  EXPECT_EQ(kExpectedBool, config.useDualStack);
62 }
63 
64 TEST_F(ClientConfigurationProviderFixture, TestAllReaderErrorsIgnored)
65 {
66  ClientConfiguration default_config;
67  const char* unexpected_str = (default_config.region + Aws::String("YjJiOWZmZDQ3Yjg1MTU0MmE3MjFmOTk2")).c_str();
68  const int unkExpectedInt = default_config.maxConnections + 45231;
69  const bool unkExpectedBool = !default_config.useDualStack;
70 
71  EXPECT_CALL(*param_reader_, ReadParam(_, Matcher<Aws::String &>(_)))
72  .WillRepeatedly(DoAll(SetArgReferee<1>(unexpected_str), Return(AwsError::AWS_ERR_FAILURE)));
73  EXPECT_CALL(*param_reader_, ReadParam(_, Matcher<int &>(_)))
74  .WillRepeatedly(DoAll(SetArgReferee<1>(unkExpectedInt), Return(AwsError::AWS_ERR_NOT_FOUND)));
75  EXPECT_CALL(*param_reader_, ReadParam(_, Matcher<bool &>(_)))
76  .WillRepeatedly(DoAll(SetArgReferee<1>(unkExpectedBool), Return(AwsError::AWS_ERR_EMPTY)));
77 
78  ClientConfiguration config = test_subject_->GetClientConfiguration();
79 
80  EXPECT_EQ(unexpected_str, config.region);
81  EXPECT_NE(unkExpectedInt, config.maxConnections);
82  EXPECT_EQ(unkExpectedBool, config.useDualStack);
83  EXPECT_EQ(default_config.maxConnections, config.maxConnections);
84  EXPECT_NE(default_config.useDualStack, config.useDualStack);
85 }
86 
87 TEST_F(ClientConfigurationProviderFixture, TestRosVersionOverride) {
88  EXPECT_CALL(*param_reader_, ReadParam(_, Matcher<Aws::String &>(_)))
89  .WillRepeatedly(Return(AwsError::AWS_ERR_NOT_FOUND));
90  EXPECT_CALL(*param_reader_, ReadParam(_, Matcher<int &>(_)))
91  .WillRepeatedly(Return(AwsError::AWS_ERR_NOT_FOUND));
92  EXPECT_CALL(*param_reader_, ReadParam(_, Matcher<bool &>(_)))
93  .WillRepeatedly(Return(AwsError::AWS_ERR_NOT_FOUND));
94 
95  ClientConfiguration config1 = test_subject_->GetClientConfiguration();
96  ClientConfiguration config2 = test_subject_->GetClientConfiguration("another_version");
97  EXPECT_NE(config1, config2);
98  config1.userAgent = config2.userAgent;
99  EXPECT_EQ(config1, config2);
100 }
101 
102 using client_conf_mutator = std::function<void(ClientConfiguration &)>;
104  public ::testing::TestWithParam<client_conf_mutator> { };
105 
106 TEST_P(ClientConfigurationOperatorsFixture, TestClientConfigurationEqNeqOperators)
107 {
108  ClientConfiguration config1, config2;
109 
110  EXPECT_EQ(config1, config2);
111 
112  GetParam()(config1);
113  EXPECT_NE(config1, config2);
114 }
115 
117 {
118  [](ClientConfiguration & config)->void { config.region = "OTg5ZWRiMWVhYjEyZDRkMWFhOTRlZGU0"; },
119  [](ClientConfiguration & config)->void { config.userAgent = "YmVkYjJjYTA0NTg0ZGJjZDdjOWY2OWYz"; },
120  [](ClientConfiguration & config)->void { config.endpointOverride = "MzllMmUxZWUzMmE3OWQ1MzZhZGQ0ZWM2"; },
121  [](ClientConfiguration & config)->void { config.proxyHost = "NzgzNzY5NDM5NTNjYmEzNGU0YmY3YjQ4"; },
122  [](ClientConfiguration & config)->void { config.proxyUserName = "NmU2MWE2NjhlMGEwYTc1NjU1ZDU0OGQw"; },
123  [](ClientConfiguration & config)->void { config.proxyPassword = "ZThkYmM1NmQwMWU1MTU1MDQ4YTA5NDFk"; },
124  [](ClientConfiguration & config)->void { config.caPath = "ZWM4Mzk1MTFiM2MyOTE2NzA0MThjMTYw"; },
125  [](ClientConfiguration & config)->void { config.caFile = "YzU5OGQzNmYzNWIzMjIzNDFlZDM3NGNh"; },
126  [](ClientConfiguration & config)->void { config.requestTimeoutMs = config.requestTimeoutMs + 12; },
127  [](ClientConfiguration & config)->void { config.connectTimeoutMs = config.connectTimeoutMs - 42; },
128  [](ClientConfiguration & config)->void { config.maxConnections = config.maxConnections + 1981; },
129  [](ClientConfiguration & config)->void { config.proxyPort = config.proxyPort + 2; },
130  [](ClientConfiguration & config)->void { config.useDualStack = ! config.useDualStack; },
131  [](ClientConfiguration & config)->void { config.enableClockSkewAdjustment = ! config.enableClockSkewAdjustment; },
132  [](ClientConfiguration & config)->void { config.followRedirects = (config.followRedirects == FollowRedirectsPolicy::NEVER ? FollowRedirectsPolicy::ALWAYS : FollowRedirectsPolicy::NEVER); },
133  [](ClientConfiguration & config)->void { config.verifySSL = !config.verifySSL; }
134 };
136  TestClientConfigurationOperators,
138  ::testing::ValuesIn(g_client_conf_mutators)
139 );
140 
141 int main(int argc, char ** argv)
142 {
143  Aws::SDKOptions options;
144  Aws::InitAPI(options);
145  testing::InitGoogleTest(&argc, argv);
146  auto ret = RUN_ALL_TESTS();
147  Aws::ShutdownAPI(options);
148  return ret;
149 }
std::function< void(ClientConfiguration &)> client_conf_mutator
TEST_P(ClientConfigurationOperatorsFixture, TestClientConfigurationEqNeqOperators)
INSTANTIATE_TEST_CASE_P(TestClientConfigurationOperators, ClientConfigurationOperatorsFixture, ::testing::ValuesIn(g_client_conf_mutators))
int main(int argc, char **argv)
AwsError
Defines error return codes for functions This enum defines standard error codes that will be returned...
Definition: aws_error.h:29
TEST_F(ClientConfigurationProviderFixture, TestReaderRespected)
client_conf_mutator g_client_conf_mutators[]


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