YugabyteDB (2.13.0.0-b42, bfc6a6643e7399ac8a0e81d06a3ee6d6571b33ab)

Coverage Report

Created: 2022-03-09 17:30

/Users/deen/code/yugabyte-db/src/yb/util/countdown_latch-test.cc
Line
Count
Source
1
// Licensed to the Apache Software Foundation (ASF) under one
2
// or more contributor license agreements.  See the NOTICE file
3
// distributed with this work for additional information
4
// regarding copyright ownership.  The ASF licenses this file
5
// to you under the Apache License, Version 2.0 (the
6
// "License"); you may not use this file except in compliance
7
// with the License.  You may obtain a copy of the License at
8
//
9
//   http://www.apache.org/licenses/LICENSE-2.0
10
//
11
// Unless required by applicable law or agreed to in writing,
12
// software distributed under the License is distributed on an
13
// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
14
// KIND, either express or implied.  See the License for the
15
// specific language governing permissions and limitations
16
// under the License.
17
//
18
// The following only applies to changes made to this file as part of YugaByte development.
19
//
20
// Portions Copyright (c) YugaByte, Inc.
21
//
22
// Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
23
// in compliance with the License.  You may obtain a copy of the License at
24
//
25
// http://www.apache.org/licenses/LICENSE-2.0
26
//
27
// Unless required by applicable law or agreed to in writing, software distributed under the License
28
// is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
29
// or implied.  See the License for the specific language governing permissions and limitations
30
// under the License.
31
//
32
33
#include <atomic>
34
#include <string>
35
36
#include <gtest/gtest.h>
37
38
#include "yb/util/countdown_latch.h"
39
#include "yb/util/test_macros.h"
40
#include "yb/util/thread.h"
41
#include "yb/util/threadpool.h"
42
43
namespace yb {
44
45
2
static void DecrementLatch(CountDownLatch* latch, int amount) {
46
2
  if (amount == 1) {
47
1
    latch->CountDown();
48
1
    return;
49
1
  }
50
1
  latch->CountDown(amount);
51
1
}
52
53
// Tests that we can decrement the latch by arbitrary amounts, as well
54
// as 1 by one.
55
1
TEST(TestCountDownLatch, TestLatch) {
56
57
1
  std::unique_ptr<ThreadPool> pool;
58
1
  ASSERT_OK(ThreadPoolBuilder("cdl-test").set_max_threads(1).Build(&pool));
59
60
1
  CountDownLatch latch(1000);
61
62
  // Decrement the count by 1 in another thread, this should not fire the
63
  // latch.
64
1
  ASSERT_OK(pool->SubmitFunc(std::bind(DecrementLatch, &latch, 1)));
65
1
  ASSERT_FALSE(latch.WaitFor(MonoDelta::FromMilliseconds(1000)));
66
1
  ASSERT_EQ(999, latch.count());
67
68
  // Now decrement by 1000 this should decrement to 0 and fire the latch
69
  // (even though 1000 is one more than the current count).
70
1
  ASSERT_OK(pool->SubmitFunc(std::bind(DecrementLatch, &latch, 1000)));
71
1
  latch.Wait();
72
1
  ASSERT_EQ(0, latch.count());
73
1
}
74
75
// Test that resetting to zero while there are waiters lets the waiters
76
// continue.
77
1
TEST(TestCountDownLatch, TestResetToZero) {
78
1
  CountDownLatch cdl(100);
79
1
  scoped_refptr<Thread> t;
80
1
  ASSERT_OK(Thread::Create("test", "cdl-test", &CountDownLatch::Wait, &cdl, &t));
81
82
  // Sleep for a bit until it's likely the other thread is waiting on the latch.
83
1
  SleepFor(MonoDelta::FromMilliseconds(10));
84
1
  cdl.Reset(0);
85
1
  t->Join();
86
1
}
87
88
} // namespace yb