Switch gflags to portability/GFlags.h
[folly.git] / folly / test / DeterministicScheduleTest.cpp
1 /*
2  * Copyright 2016 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/test/DeterministicSchedule.h>
18
19 #include <gtest/gtest.h>
20
21 #include <folly/portability/GFlags.h>
22
23 using namespace folly::test;
24
25 TEST(DeterministicSchedule, uniform) {
26   auto p = DeterministicSchedule::uniform(0);
27   int buckets[10] = {};
28   for (int i = 0; i < 100000; ++i) {
29     buckets[p(10)]++;
30   }
31   for (int i = 0; i < 10; ++i) {
32     EXPECT_TRUE(buckets[i] > 9000);
33   }
34 }
35
36 TEST(DeterministicSchedule, uniformSubset) {
37   auto ps = DeterministicSchedule::uniformSubset(0, 3, 100);
38   int buckets[10] = {};
39   std::set<int> seen;
40   for (int i = 0; i < 100000; ++i) {
41     if (i > 0 && (i % 100) == 0) {
42       EXPECT_EQ(seen.size(), 3);
43       seen.clear();
44     }
45     int x = ps(10);
46     seen.insert(x);
47     EXPECT_TRUE(seen.size() <= 3);
48     buckets[x]++;
49   }
50   for (int i = 0; i < 10; ++i) {
51     EXPECT_TRUE(buckets[i] > 9000);
52   }
53 }
54
55 int main(int argc, char** argv) {
56   testing::InitGoogleTest(&argc, argv);
57   gflags::ParseCommandLineFlags(&argc, &argv, true);
58   return RUN_ALL_TESTS();
59 }