16 #include <gtest/gtest.h> 17 #include <aws/core/Aws.h> 23 using ::testing::Matcher;
24 using ::testing::DoAll;
25 using ::testing::SetArgReferee;
26 using ::testing::Return;
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_);
40 const char* expected_str =
"N2IxYjk2ZDhkYTNmZWQ2ZjkwMDlhNWRl";
41 const int kExpectedInt = 64654;
42 const bool kExpectedBool =
true;
44 EXPECT_CALL(*param_reader_, ReadParam(_, Matcher<std::vector<std::string> &>(_)))
46 EXPECT_CALL(*param_reader_, ReadParam(_, Matcher<double &>(_)))
48 EXPECT_CALL(*param_reader_, ReadParam(_, Matcher<std::string &>(_)))
50 EXPECT_CALL(*param_reader_, ReadParam(_, Matcher<Aws::String &>(_)))
52 EXPECT_CALL(*param_reader_, ReadParam(_, Matcher<int &>(_)))
54 EXPECT_CALL(*param_reader_, ReadParam(_, Matcher<bool &>(_)))
57 ClientConfiguration config = test_subject_->GetClientConfiguration();
59 EXPECT_EQ(expected_str, config.region);
60 EXPECT_EQ(kExpectedInt, config.maxConnections);
61 EXPECT_EQ(kExpectedBool, config.useDualStack);
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;
71 EXPECT_CALL(*param_reader_, ReadParam(_, Matcher<Aws::String &>(_)))
73 EXPECT_CALL(*param_reader_, ReadParam(_, Matcher<int &>(_)))
75 EXPECT_CALL(*param_reader_, ReadParam(_, Matcher<bool &>(_)))
78 ClientConfiguration config = test_subject_->GetClientConfiguration();
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);
88 EXPECT_CALL(*param_reader_, ReadParam(_, Matcher<Aws::String &>(_)))
90 EXPECT_CALL(*param_reader_, ReadParam(_, Matcher<int &>(_)))
92 EXPECT_CALL(*param_reader_, ReadParam(_, Matcher<bool &>(_)))
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);
104 public ::testing::TestWithParam<client_conf_mutator> { };
108 ClientConfiguration config1, config2;
110 EXPECT_EQ(config1, config2);
113 EXPECT_NE(config1, config2);
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; }
136 TestClientConfigurationOperators,
141 int main(
int argc,
char ** argv)
143 Aws::SDKOptions options;
144 Aws::InitAPI(options);
145 testing::InitGoogleTest(&argc, argv);
146 auto ret = RUN_ALL_TESTS();
147 Aws::ShutdownAPI(options);
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...
TEST_F(ClientConfigurationProviderFixture, TestReaderRespected)
client_conf_mutator g_client_conf_mutators[]