mirror of
https://github.com/kidfromjupiter/nearby.git
synced 2026-09-14 22:56:12 -04:00
207 lines
5.5 KiB
C++
207 lines
5.5 KiB
C++
// Copyright 2020 Google LLC
|
|
//
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
// you may not use this file except in compliance with the License.
|
|
// You may obtain a copy of the License at
|
|
//
|
|
// https://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
|
|
#include "platform/public/scheduled_executor.h"
|
|
|
|
#include <atomic>
|
|
#include <functional>
|
|
|
|
#include "gtest/gtest.h"
|
|
#include "absl/synchronization/mutex.h"
|
|
#include "absl/time/clock.h"
|
|
#include "absl/time/time.h"
|
|
#include "platform/base/exception.h"
|
|
#include "platform/public/count_down_latch.h"
|
|
|
|
namespace location {
|
|
namespace nearby {
|
|
|
|
// kShortDelay must be significant enough to guarantee that OS under heavy load
|
|
// should be able to execute the non-blocking test paths within this time.
|
|
absl::Duration kShortDelay = absl::Milliseconds(100);
|
|
|
|
// kLongDelay must be long enough to make sure that under OS under heavy load
|
|
// will let kShortDelay fire and jobs scheduled before the kLongDelay fires.
|
|
absl::Duration kLongDelay = 10 * kShortDelay;
|
|
|
|
TEST(ScheduledExecutorTest, ConsructorDestructorWorks) {
|
|
ScheduledExecutor executor;
|
|
}
|
|
|
|
TEST(ScheduledExecutorTest, CanExecute) {
|
|
absl::Mutex mutex;
|
|
absl::CondVar cond;
|
|
std::atomic_bool done = false;
|
|
ScheduledExecutor executor;
|
|
executor.Execute([&done, &cond]() {
|
|
done = true;
|
|
cond.SignalAll();
|
|
});
|
|
{
|
|
absl::MutexLock lock(&mutex);
|
|
if (!done) {
|
|
cond.WaitWithTimeout(&mutex, kLongDelay);
|
|
}
|
|
}
|
|
EXPECT_TRUE(done);
|
|
}
|
|
|
|
TEST(ScheduledExecutorTest, CanSchedule) {
|
|
ScheduledExecutor executor;
|
|
std::atomic_int value = 0;
|
|
absl::Mutex mutex;
|
|
absl::CondVar cond;
|
|
// schedule job due in kLongDelay.
|
|
executor.Schedule(
|
|
[&value, &cond]() {
|
|
EXPECT_EQ(value, 1);
|
|
value = 5;
|
|
cond.Signal();
|
|
},
|
|
kLongDelay);
|
|
// schedule job due in kShortDelay; must fire before the first one.
|
|
executor.Schedule(
|
|
[&value]() {
|
|
EXPECT_EQ(value, 0);
|
|
value = 1;
|
|
},
|
|
kShortDelay);
|
|
{
|
|
// wait for the final job to unblock us; wait longer than kLongDelay.
|
|
absl::MutexLock lock(&mutex);
|
|
cond.WaitWithTimeout(&mutex, 2 * kLongDelay);
|
|
}
|
|
EXPECT_EQ(value, 5);
|
|
}
|
|
|
|
TEST(ScheduledExecutorTest, CanCancel) {
|
|
ScheduledExecutor executor;
|
|
std::atomic_int value = 0;
|
|
Cancelable cancelable =
|
|
executor.Schedule([&value]() { value += 1; }, kShortDelay);
|
|
EXPECT_EQ(value, 0);
|
|
EXPECT_TRUE(cancelable.Cancel());
|
|
absl::SleepFor(kLongDelay);
|
|
EXPECT_EQ(value, 0);
|
|
}
|
|
|
|
TEST(ScheduledExecutorTest, CanCancelTwice) {
|
|
ScheduledExecutor executor;
|
|
std::atomic_int value = 0;
|
|
Cancelable cancelable =
|
|
executor.Schedule([&value]() { value += 1; }, kShortDelay);
|
|
EXPECT_EQ(value, 0);
|
|
|
|
cancelable.Cancel();
|
|
cancelable.Cancel();
|
|
|
|
absl::SleepFor(kLongDelay);
|
|
EXPECT_EQ(value, 0);
|
|
}
|
|
|
|
TEST(ScheduledExecutorTest, FailToCancel) {
|
|
absl::Mutex mutex;
|
|
absl::CondVar cond;
|
|
ScheduledExecutor executor;
|
|
std::atomic_int value = 0;
|
|
// Schedule job in kShortDelay, which will we will attempt to cancel later.
|
|
Cancelable cancelable =
|
|
executor.Schedule([&value]() { value += 1; }, kShortDelay);
|
|
// schedule another job to test results of the first one, in kLongDelay.
|
|
executor.Schedule(
|
|
[&cancelable, &cond]() {
|
|
EXPECT_FALSE(cancelable.Cancel());
|
|
// Wake up main thread.
|
|
cond.Signal();
|
|
},
|
|
kLongDelay);
|
|
{
|
|
absl::MutexLock lock(&mutex);
|
|
cond.Wait(&mutex);
|
|
}
|
|
EXPECT_EQ(value, 1);
|
|
}
|
|
|
|
TEST(ScheduledExecutorTest,
|
|
CancelWhileRunning_TaskCompletesBeforeCancelReturns) {
|
|
CountDownLatch start_latch(1);
|
|
ScheduledExecutor executor;
|
|
std::atomic_int value = 0;
|
|
// A task that takes a little bit of time to complete
|
|
Cancelable cancelable = executor.Schedule(
|
|
[&start_latch, &value]() {
|
|
start_latch.CountDown();
|
|
absl::SleepFor(kLongDelay);
|
|
value += 1;
|
|
},
|
|
absl::ZeroDuration());
|
|
|
|
start_latch.Await();
|
|
cancelable.Cancel();
|
|
|
|
EXPECT_EQ(value, 1);
|
|
}
|
|
|
|
TEST(ScheduledExecutorTest,
|
|
CancelTwiceWhileRunning_TaskCompletesBeforeCancelReturns) {
|
|
CountDownLatch start_latch(1);
|
|
ScheduledExecutor executor;
|
|
std::atomic_int value = 0;
|
|
// A task that takes a little bit of time to complete
|
|
Cancelable cancelable = executor.Schedule(
|
|
[&start_latch, &value]() {
|
|
start_latch.CountDown();
|
|
absl::SleepFor(kLongDelay);
|
|
value += 1;
|
|
},
|
|
absl::ZeroDuration());
|
|
|
|
start_latch.Await();
|
|
|
|
cancelable.Cancel();
|
|
cancelable.Cancel();
|
|
|
|
EXPECT_EQ(value, 1);
|
|
}
|
|
|
|
struct ThreadCheckTestClass {
|
|
ScheduledExecutor executor;
|
|
int value ABSL_GUARDED_BY(executor) = 0;
|
|
|
|
void incValue() ABSL_EXCLUSIVE_LOCKS_REQUIRED(executor) { value++; }
|
|
int getValue() ABSL_EXCLUSIVE_LOCKS_REQUIRED(executor) { return value; }
|
|
};
|
|
|
|
TEST(ScheduledExecutorTest, ThreadCheck_Execute) {
|
|
ThreadCheckTestClass test_class;
|
|
|
|
test_class.executor.Execute(
|
|
[&test_class]() ABSL_EXCLUSIVE_LOCKS_REQUIRED(test_class.executor) {
|
|
test_class.incValue();
|
|
});
|
|
}
|
|
|
|
TEST(ScheduledExecutorTest, ThreadCheck_Schedule) {
|
|
ThreadCheckTestClass test_class;
|
|
|
|
test_class.executor.Schedule(
|
|
[&test_class]() ABSL_EXCLUSIVE_LOCKS_REQUIRED(test_class.executor) {
|
|
test_class.incValue();
|
|
},
|
|
absl::ZeroDuration());
|
|
}
|
|
|
|
} // namespace nearby
|
|
} // namespace location
|