proxygen
SSLOptionsTest.cpp
Go to the documentation of this file.
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 
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
#define ASSERT_STREQ(s1, s2)
Definition: gtest.h:2004
SSL * createSSL() const
Definition: SSLContext.cpp:518
#define ASSERT_EQ(val1, val2)
Definition: gtest.h:1956
STL namespace.
—— Concurrent Priority Queue Implementation ——
Definition: AtomicBitSet.h:29
CipherSuite cipher
TEST_F(SSLOptionsTest, TestSetCommonCipherList)
std::unique_ptr< SSL, SSLDeleter > SSLUniquePtr