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 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113
|
// 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/views/quick_insert_feature_tour.h"
#include "ash/public/cpp/ash_prefs.h"
#include "ash/test/ash_test_base.h"
#include "ash/test/view_drawn_waiter.h"
#include "base/test/test_future.h"
#include "build/branding_buildflags.h"
#include "testing/gmock/include/gmock/gmock.h"
#include "testing/gtest/include/gtest/gtest.h"
#include "ui/events/event_constants.h"
#include "ui/events/keycodes/keyboard_codes.h"
#include "ui/views/controls/button/button.h"
#include "ui/views/test/widget_test.h"
#include "ui/views/widget/widget.h"
namespace ash {
namespace {
class QuickInsertFeatureTourTest : public AshTestBase {
public:
QuickInsertFeatureTourTest() {
RegisterUserProfilePrefs(pref_service_.registry(), /*country=*/"",
/*for_test=*/true);
}
TestingPrefServiceSimple* pref_service() { return &pref_service_; }
private:
TestingPrefServiceSimple pref_service_;
};
TEST_F(QuickInsertFeatureTourTest, ShowShowsDialogForFirstTime) {
QuickInsertFeatureTour feature_tour;
EXPECT_TRUE(feature_tour.MaybeShowForFirstUse(
pref_service(), QuickInsertFeatureTour::EditorStatus::kEligible,
base::DoNothing(), base::DoNothing()));
views::Widget* widget = feature_tour.widget_for_testing();
EXPECT_NE(widget, nullptr);
views::test::WidgetVisibleWaiter(widget).Wait();
}
TEST_F(QuickInsertFeatureTourTest,
ClickingCompleteButtonClosesWidgetAndTriggersCallback) {
QuickInsertFeatureTour feature_tour;
base::test::TestFuture<void> completed_future;
feature_tour.MaybeShowForFirstUse(
pref_service(), QuickInsertFeatureTour::EditorStatus::kEligible,
base::DoNothing(), completed_future.GetRepeatingCallback());
views::test::WidgetVisibleWaiter(feature_tour.widget_for_testing()).Wait();
const views::Button* button = feature_tour.complete_button_for_testing();
ASSERT_NE(button, nullptr);
LeftClickOn(button);
views::test::WidgetDestroyedWaiter(feature_tour.widget_for_testing()).Wait();
EXPECT_TRUE(completed_future.Wait());
EXPECT_EQ(feature_tour.widget_for_testing(), nullptr);
}
TEST_F(QuickInsertFeatureTourTest,
ClickingLearnMoreButtonClosesWidgetAndTriggersCallback) {
QuickInsertFeatureTour feature_tour;
base::test::TestFuture<void> learn_more_future;
feature_tour.MaybeShowForFirstUse(
pref_service(), QuickInsertFeatureTour::EditorStatus::kEligible,
learn_more_future.GetRepeatingCallback(), base::DoNothing());
views::test::WidgetVisibleWaiter(feature_tour.widget_for_testing()).Wait();
const views::Button* button = feature_tour.learn_more_button_for_testing();
ASSERT_NE(button, nullptr);
LeftClickOn(button);
views::test::WidgetDestroyedWaiter(feature_tour.widget_for_testing()).Wait();
EXPECT_TRUE(learn_more_future.Wait());
EXPECT_EQ(feature_tour.widget_for_testing(), nullptr);
}
TEST_F(QuickInsertFeatureTourTest,
PressingEnterClosesWidgetAndTriggersCallback) {
QuickInsertFeatureTour feature_tour;
base::test::TestFuture<void> completed_future;
feature_tour.MaybeShowForFirstUse(
pref_service(), QuickInsertFeatureTour::EditorStatus::kEligible,
base::DoNothing(), completed_future.GetRepeatingCallback());
views::test::WidgetVisibleWaiter(feature_tour.widget_for_testing()).Wait();
PressAndReleaseKey(ui::KeyboardCode::VKEY_RETURN, ui::EF_NONE);
views::test::WidgetDestroyedWaiter(feature_tour.widget_for_testing()).Wait();
EXPECT_TRUE(completed_future.Wait());
EXPECT_EQ(feature_tour.widget_for_testing(), nullptr);
}
TEST_F(QuickInsertFeatureTourTest, ShouldNotShowDialogSecondTime) {
QuickInsertFeatureTour feature_tour;
feature_tour.MaybeShowForFirstUse(
pref_service(), QuickInsertFeatureTour::EditorStatus::kEligible,
base::DoNothing(), base::DoNothing());
feature_tour.widget_for_testing()->CloseNow();
EXPECT_FALSE(feature_tour.MaybeShowForFirstUse(
pref_service(), QuickInsertFeatureTour::EditorStatus::kEligible,
base::DoNothing(), base::DoNothing()));
EXPECT_EQ(feature_tour.widget_for_testing(), nullptr);
}
} // namespace
} // namespace ash
|