1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73
|
// Copyright 2024 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "ash/quick_insert/search/quick_insert_search_debouncer.h"
#include "base/test/task_environment.h"
#include "base/test/test_future.h"
#include "base/time/time.h"
#include "testing/gtest/include/gtest/gtest.h"
namespace ash {
namespace {
class QuickInsertSearchDebouncerTest : public testing::Test {
protected:
base::test::SingleThreadTaskEnvironment& task_environment() {
return task_environment_;
}
private:
base::test::SingleThreadTaskEnvironment task_environment_{
base::test::TaskEnvironment::TimeSource::MOCK_TIME};
};
TEST_F(QuickInsertSearchDebouncerTest,
RequestSearchDoesNotTriggerSearchUntilDelay) {
base::test::TestFuture<void> future;
QuickInsertSearchDebouncer debouncer(base::Milliseconds(100));
debouncer.RequestSearch(future.GetCallback());
task_environment().FastForwardBy(base::Milliseconds(99));
EXPECT_FALSE(future.IsReady());
}
TEST_F(QuickInsertSearchDebouncerTest, RequestSearchTriggersSearchAfterDelay) {
base::test::TestFuture<void> future;
QuickInsertSearchDebouncer debouncer(base::Milliseconds(100));
debouncer.RequestSearch(future.GetCallback());
task_environment().FastForwardBy(base::Milliseconds(100));
EXPECT_TRUE(future.IsReady());
}
TEST_F(QuickInsertSearchDebouncerTest, NewRequestSearchCancelsPreviousRequest) {
base::test::TestFuture<void> future;
QuickInsertSearchDebouncer debouncer(base::Milliseconds(100));
debouncer.RequestSearch(future.GetCallback());
task_environment().FastForwardBy(base::Milliseconds(99));
debouncer.RequestSearch(future.GetCallback());
task_environment().FastForwardBy(base::Milliseconds(99));
EXPECT_FALSE(future.IsReady());
}
TEST_F(QuickInsertSearchDebouncerTest,
NewRequestSearchTriggersSearchAfterDelay) {
base::test::TestFuture<void> future;
QuickInsertSearchDebouncer debouncer(base::Milliseconds(100));
debouncer.RequestSearch(future.GetCallback());
task_environment().FastForwardBy(base::Milliseconds(99));
debouncer.RequestSearch(future.GetCallback());
task_environment().FastForwardBy(base::Milliseconds(100));
EXPECT_TRUE(future.IsReady());
}
} // namespace
} // namespace ash
|