SSLOptionsTest.cpp 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. /*
  2. * Copyright 2017-present Facebook, Inc.
  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. * You may obtain a copy of the License at
  7. *
  8. * http://www.apache.org/licenses/LICENSE-2.0
  9. *
  10. * Unless required by applicable law or agreed to in writing, software
  11. * distributed under the License is distributed on an "AS IS" BASIS,
  12. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13. * See the License for the specific language governing permissions and
  14. * limitations under the License.
  15. */
  16. #include <folly/io/async/SSLOptions.h>
  17. #include <folly/io/async/SSLContext.h>
  18. #include <folly/portability/GTest.h>
  19. #include <folly/ssl/OpenSSLPtrTypes.h>
  20. using namespace std;
  21. using namespace testing;
  22. namespace folly {
  23. class SSLOptionsTest : public testing::Test {};
  24. TEST_F(SSLOptionsTest, TestSetCommonCipherList) {
  25. SSLContext ctx;
  26. ssl::setCipherSuites<ssl::SSLCommonOptions>(ctx);
  27. int i = 0;
  28. ssl::SSLUniquePtr ssl(ctx.createSSL());
  29. for (auto& cipher : ssl::SSLCommonOptions::kCipherList) {
  30. ASSERT_STREQ(cipher, SSL_get_cipher_list(ssl.get(), i++));
  31. }
  32. ASSERT_EQ(nullptr, SSL_get_cipher_list(ssl.get(), i));
  33. }
  34. } // namespace folly