mirror of
https://github.com/kidfromjupiter/nearby.git
synced 2026-09-14 14:46:12 -04:00
Fix flaky test
PiperOrigin-RevId: 934044706
This commit is contained in:
committed by
Copybara-Service
parent
843fb817ac
commit
a9b46f6029
@@ -238,3 +238,18 @@ cc_library(
|
||||
"@nlohmann_json//:json",
|
||||
],
|
||||
)
|
||||
|
||||
cc_test(
|
||||
name = "scheduled_executor_test",
|
||||
srcs = ["scheduled_executor_test.cc"],
|
||||
deps = [
|
||||
":g3",
|
||||
":types",
|
||||
"//internal/platform:base",
|
||||
"//internal/platform:test_util",
|
||||
"//internal/platform:types",
|
||||
"@com_github_protobuf_matchers//protobuf-matchers",
|
||||
"@com_google_absl//absl/time",
|
||||
"@com_google_googletest//:gtest_main",
|
||||
],
|
||||
)
|
||||
|
||||
@@ -0,0 +1,133 @@
|
||||
// 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 "internal/platform/scheduled_executor.h"
|
||||
|
||||
#include <atomic>
|
||||
|
||||
#include "gtest/gtest.h"
|
||||
#include "absl/time/time.h"
|
||||
#include "internal/platform/cancelable.h"
|
||||
#include "internal/platform/count_down_latch.h"
|
||||
#include "internal/platform/medium_environment.h"
|
||||
|
||||
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(200);
|
||||
|
||||
// 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, SimulatedClockCanSchedule) {
|
||||
MediumEnvironment::Instance().Start({.use_simulated_clock = true});
|
||||
ScheduledExecutor executor;
|
||||
std::atomic_int value = 0;
|
||||
CountDownLatch first_task_latch(1);
|
||||
CountDownLatch second_task_latch(1);
|
||||
// schedule job due in kLongDelay.
|
||||
executor.Schedule(
|
||||
[&]() {
|
||||
EXPECT_EQ(value, 1);
|
||||
value = 5;
|
||||
first_task_latch.CountDown();
|
||||
},
|
||||
kLongDelay);
|
||||
// schedule job due in kShortDelay; must fire before the first one.
|
||||
executor.Schedule(
|
||||
[&]() {
|
||||
EXPECT_EQ(value, 0);
|
||||
value = 1;
|
||||
second_task_latch.CountDown();
|
||||
},
|
||||
kShortDelay);
|
||||
EXPECT_EQ(value, 0);
|
||||
MediumEnvironment::Instance().FastForward(kShortDelay -
|
||||
absl::Milliseconds(1));
|
||||
EXPECT_EQ(value, 0);
|
||||
MediumEnvironment::Instance().FastForward(absl::Milliseconds(1));
|
||||
second_task_latch.Await();
|
||||
EXPECT_EQ(value, 1);
|
||||
MediumEnvironment::Instance().FastForward(kLongDelay - kShortDelay);
|
||||
first_task_latch.Await();
|
||||
EXPECT_EQ(value, 5);
|
||||
// Very long sleep to make sure that the sleep is truly simulated.
|
||||
MediumEnvironment::Instance().FastForward(absl::Minutes(30));
|
||||
MediumEnvironment::Instance().Stop();
|
||||
}
|
||||
|
||||
TEST(ScheduledExecutorTest,
|
||||
DestroyExecutorWithSimulatedClockIgnoresPendingTasks) {
|
||||
MediumEnvironment::Instance().Start({.use_simulated_clock = true});
|
||||
{
|
||||
ScheduledExecutor executor;
|
||||
executor.Schedule(
|
||||
[&]() {
|
||||
// This task should never be executed.
|
||||
EXPECT_TRUE(false);
|
||||
},
|
||||
kShortDelay);
|
||||
}
|
||||
MediumEnvironment::Instance().FastForward(absl::Minutes(30));
|
||||
MediumEnvironment::Instance().Stop();
|
||||
}
|
||||
|
||||
TEST(ScheduledExecutorTest, SimulatedClockCanScheduleRepeatedly) {
|
||||
MediumEnvironment::Instance().Start({.use_simulated_clock = true});
|
||||
ScheduledExecutor executor;
|
||||
std::atomic_int value = 0;
|
||||
std::atomic_int i = 0;
|
||||
CountDownLatch latch[] = {CountDownLatch(1), CountDownLatch(1)};
|
||||
|
||||
Cancelable cancelable = executor.ScheduleRepeatedly(
|
||||
[&]() {
|
||||
value++;
|
||||
latch[i.fetch_add(1)].CountDown();
|
||||
},
|
||||
kShortDelay);
|
||||
|
||||
EXPECT_EQ(value, 0);
|
||||
// Advance to just before the first execution.
|
||||
MediumEnvironment::Instance().FastForward(kShortDelay -
|
||||
absl::Milliseconds(1));
|
||||
EXPECT_EQ(value, 0);
|
||||
|
||||
// Advance past the first execution.
|
||||
MediumEnvironment::Instance().FastForward(absl::Milliseconds(1));
|
||||
latch[0].Await(absl::Seconds(1));
|
||||
EXPECT_EQ(value, 1);
|
||||
|
||||
// Advance to just before the second execution.
|
||||
MediumEnvironment::Instance().FastForward(kShortDelay -
|
||||
absl::Milliseconds(1));
|
||||
EXPECT_EQ(value, 1);
|
||||
|
||||
// Advance past the second execution.
|
||||
MediumEnvironment::Instance().FastForward(absl::Milliseconds(1));
|
||||
latch[1].Await(absl::Seconds(1));
|
||||
EXPECT_EQ(value, 2);
|
||||
|
||||
// Cancel the task.
|
||||
cancelable.Cancel();
|
||||
|
||||
// Advance a long time and make sure it doesn't run again.
|
||||
MediumEnvironment::Instance().FastForward(kLongDelay * 5);
|
||||
EXPECT_EQ(value, 2);
|
||||
|
||||
MediumEnvironment::Instance().Stop();
|
||||
}
|
||||
|
||||
} // namespace nearby
|
||||
@@ -15,7 +15,6 @@
|
||||
#ifndef PLATFORM_API_SCHEDULED_EXECUTOR_H_
|
||||
#define PLATFORM_API_SCHEDULED_EXECUTOR_H_
|
||||
|
||||
#include <cstdint>
|
||||
#include <memory>
|
||||
|
||||
#include "absl/time/time.h"
|
||||
|
||||
@@ -144,15 +144,23 @@ class ABSL_LOCKABLE ScheduledExecutor final : public Lockable {
|
||||
return;
|
||||
}
|
||||
|
||||
// Re-schedule the next execution before running the task to avoid clock
|
||||
// slip as much as possible.
|
||||
// Ideally the next event should be scheduled at
|
||||
// (last scheduled time + delay). So that if the task takes too long to
|
||||
// finish, we can still catch up the schedule.
|
||||
// However, that would require changing the scheduler to allow scheduling
|
||||
// an event at a specific time.
|
||||
{
|
||||
MutexLock lock(&executor_->mutex_);
|
||||
ScheduleNextUnderLock();
|
||||
}
|
||||
|
||||
(*cancellable_task_)();
|
||||
|
||||
if (cancelled_.Get()) {
|
||||
return;
|
||||
}
|
||||
|
||||
// Re-schedule the next execution.
|
||||
MutexLock lock(&executor_->mutex_);
|
||||
ScheduleNextUnderLock();
|
||||
}
|
||||
|
||||
void ScheduleNextUnderLock()
|
||||
|
||||
@@ -24,7 +24,6 @@
|
||||
#include "absl/time/time.h"
|
||||
#include "internal/platform/cancelable.h"
|
||||
#include "internal/platform/count_down_latch.h"
|
||||
#include "internal/platform/medium_environment.h"
|
||||
|
||||
namespace nearby {
|
||||
|
||||
@@ -209,59 +208,6 @@ TEST(ScheduledExecutorTest, ExecuteDuringShutdownFails) {
|
||||
executor.Shutdown();
|
||||
}
|
||||
|
||||
TEST(ScheduledExecutorTest, SimulatedClockCanSchedule) {
|
||||
MediumEnvironment::Instance().Start({.use_simulated_clock = true});
|
||||
ScheduledExecutor executor;
|
||||
std::atomic_int value = 0;
|
||||
CountDownLatch first_task_latch(1);
|
||||
CountDownLatch second_task_latch(1);
|
||||
// schedule job due in kLongDelay.
|
||||
executor.Schedule(
|
||||
[&]() {
|
||||
EXPECT_EQ(value, 1);
|
||||
value = 5;
|
||||
first_task_latch.CountDown();
|
||||
},
|
||||
kLongDelay);
|
||||
// schedule job due in kShortDelay; must fire before the first one.
|
||||
executor.Schedule(
|
||||
[&]() {
|
||||
EXPECT_EQ(value, 0);
|
||||
value = 1;
|
||||
second_task_latch.CountDown();
|
||||
},
|
||||
kShortDelay);
|
||||
EXPECT_EQ(value, 0);
|
||||
MediumEnvironment::Instance().FastForward(kShortDelay -
|
||||
absl::Milliseconds(1));
|
||||
EXPECT_EQ(value, 0);
|
||||
MediumEnvironment::Instance().FastForward(absl::Milliseconds(1));
|
||||
second_task_latch.Await();
|
||||
EXPECT_EQ(value, 1);
|
||||
MediumEnvironment::Instance().FastForward(kLongDelay - kShortDelay);
|
||||
first_task_latch.Await();
|
||||
EXPECT_EQ(value, 5);
|
||||
// Very long sleep to make sure that the sleep is truly simulated.
|
||||
MediumEnvironment::Instance().FastForward(absl::Minutes(30));
|
||||
MediumEnvironment::Instance().Stop();
|
||||
}
|
||||
|
||||
TEST(ScheduledExecutorTest,
|
||||
DestroyExecutorWithSimulatedClockIgnoresPendingTasks) {
|
||||
MediumEnvironment::Instance().Start({.use_simulated_clock = true});
|
||||
{
|
||||
ScheduledExecutor executor;
|
||||
executor.Schedule(
|
||||
[&]() {
|
||||
// This task should never be executed.
|
||||
EXPECT_TRUE(false);
|
||||
},
|
||||
kShortDelay);
|
||||
}
|
||||
MediumEnvironment::Instance().FastForward(absl::Minutes(30));
|
||||
MediumEnvironment::Instance().Stop();
|
||||
}
|
||||
|
||||
struct ScheduledThreadCheckTestClass {
|
||||
ScheduledExecutor executor;
|
||||
int value ABSL_GUARDED_BY(executor) = 0;
|
||||
@@ -397,52 +343,4 @@ TEST(ScheduledExecutorTest, CanCancelOneOfTwoRepeatedTasks) {
|
||||
cancelableB.Cancel();
|
||||
}
|
||||
|
||||
TEST(ScheduledExecutorTest, SimulatedClockCanScheduleRepeatedly) {
|
||||
MediumEnvironment::Instance().Start({.use_simulated_clock = true});
|
||||
ScheduledExecutor executor;
|
||||
std::atomic_int value = 0;
|
||||
std::atomic_int i = 0;
|
||||
CountDownLatch latch[] = {CountDownLatch(1), CountDownLatch(1)};
|
||||
|
||||
Cancelable cancelable = executor.ScheduleRepeatedly(
|
||||
[&]() {
|
||||
value++;
|
||||
latch[i.fetch_add(1)].CountDown();
|
||||
},
|
||||
kShortDelay);
|
||||
|
||||
EXPECT_EQ(value, 0);
|
||||
// Advance to just before the first execution.
|
||||
MediumEnvironment::Instance().FastForward(kShortDelay -
|
||||
absl::Milliseconds(1));
|
||||
EXPECT_EQ(value, 0);
|
||||
|
||||
// Advance past the first execution.
|
||||
MediumEnvironment::Instance().FastForward(absl::Milliseconds(1));
|
||||
latch[0].Await(absl::Seconds(1));
|
||||
EXPECT_EQ(value, 1);
|
||||
|
||||
// Wait for the second execution to schedule.
|
||||
absl::SleepFor(kShortDelay);
|
||||
|
||||
// Advance to just before the second execution.
|
||||
MediumEnvironment::Instance().FastForward(kShortDelay -
|
||||
absl::Milliseconds(1));
|
||||
EXPECT_EQ(value, 1);
|
||||
|
||||
// Advance past the second execution.
|
||||
MediumEnvironment::Instance().FastForward(absl::Milliseconds(1));
|
||||
latch[1].Await(absl::Seconds(1));
|
||||
EXPECT_EQ(value, 2);
|
||||
|
||||
// Cancel the task.
|
||||
cancelable.Cancel();
|
||||
|
||||
// Advance a long time and make sure it doesn't run again.
|
||||
MediumEnvironment::Instance().FastForward(kLongDelay * 5);
|
||||
EXPECT_EQ(value, 2);
|
||||
|
||||
MediumEnvironment::Instance().Stop();
|
||||
}
|
||||
|
||||
} // namespace nearby
|
||||
|
||||
Reference in New Issue
Block a user