This is an automated email from the ASF dual-hosted git repository. mmartell pushed a commit to branch GEODE-8398-sni-support-dotnet in repository https://gitbox.apache.org/repos/asf/geode-native.git
commit 75fa76735dfaead4d0c6e96e7854fb2f5c06528a Author: Mike Martell <[email protected]> AuthorDate: Mon Aug 3 11:21:11 2020 -0700 Fix currentWorkingDir on Windows --- cppcache/integration/test/SNITest.cpp | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/cppcache/integration/test/SNITest.cpp b/cppcache/integration/test/SNITest.cpp index ba8b7d0..9a5e93c 100644 --- a/cppcache/integration/test/SNITest.cpp +++ b/cppcache/integration/test/SNITest.cpp @@ -44,6 +44,7 @@ class SNITest : public ::testing::Test { certificatePassword = std::string("apachegeode"); clientSslKeysDir = boost::filesystem::path( getFrameworkString(FrameworkVariable::TestClientSslKeysDir)); + currentWorkingDirectory = boost::filesystem::current_path(); } ~SNITest() override = default; @@ -111,8 +112,11 @@ class SNITest : public ::testing::Test { std::string certificatePassword; boost::filesystem::path clientSslKeysDir; + boost::filesystem::path currentWorkingDirectory; }; +TEST_F(SNITest, DISABLED_connectViaProxyTest){}; + TEST_F(SNITest, connectViaProxyTest) { const auto clientTruststore = (clientSslKeysDir / boost::filesystem::path("/truststore_sni.pem")); @@ -135,7 +139,7 @@ TEST_F(SNITest, connectViaProxyTest) { auto region = cache.createRegionFactory(RegionShortcut::PROXY) .setPoolName("pool") - .create("region"); + .create("jellyfish"); region->put("1", "one");
