proxygen
CountersTest.cpp
Go to the documentation of this file.
1 /*
2  * Copyright 2018-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 
20 
22 using ::folly::detail::CompressionCounter;
23 
24 namespace {
25 constexpr auto kCodecType = folly::io::CodecType::USER_DEFINED;
26 constexpr folly::StringPiece kCodecName = "test";
28 } // namespace
29 
30 TEST(FollyCountersTest, HasImplementation) {
31  CompressionCounter counter(
32  kCodecType, kCodecName, folly::none, kKey, CompressionCounterType::SUM);
33  EXPECT_FALSE(counter.hasImplementation());
34 }
35 
36 TEST(FollyCountersTest, SumWorks) {
37  CompressionCounter counter(
38  kCodecType, kCodecName, folly::none, kKey, CompressionCounterType::SUM);
39  for (int i = 0; i < 100; ++i) {
40  ++counter;
41  counter++;
42  }
43 }
44 
45 TEST(FollyCountersTest, AvgWorks) {
46  CompressionCounter counter(
47  kCodecType, kCodecName, folly::none, kKey, CompressionCounterType::AVG);
48  for (int i = 0; i < 100; ++i) {
49  counter += 5;
50  }
51 }
CompressionCounterType
Definition: Counters.h:41
TEST(FollyCountersTest, HasImplementation)
std::atomic< int > counter
#define EXPECT_FALSE(condition)
Definition: gtest.h:1862
constexpr None none
Definition: Optional.h:87