proxygen
GLogTest.cpp File Reference
#include <folly/GLog.h>
#include <folly/portability/GTest.h>
#include <vector>

Go to the source code of this file.

Functions

 TEST (LogEveryMs, basic)
 
 TEST (LogEveryMs, zero)
 

Function Documentation

TEST ( LogEveryMs  ,
basic   
)

Definition at line 23 of file GLogTest.cpp.

References EXPECT_TRUE, FB_LOG_EVERY_MS, i, and now().

23  {
24  std::vector<std::chrono::steady_clock::time_point> hist;
25 
26  while (hist.size() < 10) {
27  FB_LOG_EVERY_MS(INFO, 10)
28  << "test msg "
29  << (hist.push_back(std::chrono::steady_clock::now()), hist.size());
30  }
31 
32  bool atLeastOneIsGood = false;
33  for (size_t i = 0; i < hist.size() - 1; ++i) {
34  auto delta = hist[i + 1] - hist[i];
35  if (delta > std::chrono::milliseconds(5) &&
36  delta < std::chrono::milliseconds(15)) {
37  atLeastOneIsGood = true;
38  }
39  }
40  EXPECT_TRUE(atLeastOneIsGood);
41 }
std::chrono::steady_clock::time_point now()
#define FB_LOG_EVERY_MS(severity, milli_interval)
Definition: GLog.h:36
#define EXPECT_TRUE(condition)
Definition: gtest.h:1859
TEST ( LogEveryMs  ,
zero   
)

Definition at line 43 of file GLogTest.cpp.

References count, EXPECT_EQ, FB_LOG_EVERY_MS, and i.

43  {
44  int count = 0;
45 
46  for (int i = 0; i < 10; ++i) {
47  FB_LOG_EVERY_MS(INFO, 0) << "test msg " << ++count;
48  }
49 
50  EXPECT_EQ(10, count);
51 }
#define EXPECT_EQ(val1, val2)
Definition: gtest.h:1922
#define FB_LOG_EVERY_MS(severity, milli_interval)
Definition: GLog.h:36
int * count