Adds writer test case for RCU
[folly.git] / folly / io / async / test / SSLOptionsTest.cpp
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
17 #include <folly/io/async/SSLContext.h>
18 #include <folly/io/async/SSLOptions.h>
19 #include <folly/portability/GTest.h>
20 #include <folly/ssl/OpenSSLPtrTypes.h>
21
22 using namespace std;
23 using namespace testing;
24
25 namespace folly {
26
27 class SSLOptionsTest : public testing::Test {};
28
29 TEST_F(SSLOptionsTest, TestSetCommonCipherList) {
30   SSLContext ctx;
31   ssl::setCipherSuites<ssl::SSLCommonOptions>(ctx);
32
33   int i = 0;
34   ssl::SSLUniquePtr ssl(ctx.createSSL());
35   for (auto& cipher : ssl::SSLCommonOptions::kCipherList) {
36     ASSERT_STREQ(cipher, SSL_get_cipher_list(ssl.get(), i++));
37   }
38   ASSERT_EQ(nullptr, SSL_get_cipher_list(ssl.get(), i));
39 }
40 } // namespace folly