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 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226
|
// Copyright 2023 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "components/autofill/android/touch_to_fill_keyboard_suppressor.h"
#include "base/memory/raw_ptr.h"
#include "base/test/task_environment.h"
#include "components/autofill/content/browser/test_autofill_client_injector.h"
#include "components/autofill/content/browser/test_autofill_manager_injector.h"
#include "components/autofill/content/browser/test_content_autofill_client.h"
#include "components/autofill/core/browser/foundations/autofill_driver.h"
#include "components/autofill/core/browser/foundations/test_browser_autofill_manager.h"
#include "content/public/test/navigation_simulator.h"
#include "content/public/test/test_renderer_host.h"
#include "testing/gmock/include/gmock/gmock.h"
#include "testing/gtest/include/gtest/gtest.h"
using ::testing::_;
using ::testing::AtMost;
using ::testing::Return;
namespace autofill {
namespace {
class TouchToFillKeyboardSuppressorTest
: public content::RenderViewHostTestHarness {
public:
TouchToFillKeyboardSuppressorTest()
: content::RenderViewHostTestHarness(
base::test::TaskEnvironment::TimeSource::MOCK_TIME) {}
void SetUp() override {
content::RenderViewHostTestHarness::SetUp();
suppressor_ = std::make_unique<TouchToFillKeyboardSuppressor>(
&autofill_client(),
base::BindRepeating(&TouchToFillKeyboardSuppressorTest::IsShowing,
base::Unretained(this)),
base::BindRepeating(&TouchToFillKeyboardSuppressorTest::IntendsToShow,
base::Unretained(this)),
base::Seconds(1));
NavigateAndCommit(GURL("about:blank"));
// Creates a second frame and AutofillManager.
child_rfh_ = content::RenderFrameHostTester::For(
web_contents()->GetPrimaryMainFrame())
->AppendChild("child");
content::NavigationSimulator::NavigateAndCommitFromDocument(
GURL("about:blank"), child_rfh_);
// Forces creation of the child frame's AutofillManager.
ContentAutofillDriver::GetForRenderFrameHost(child_rfh_);
ASSERT_TRUE(&autofill_manager());
ASSERT_TRUE(&child_autofill_manager());
ASSERT_NE(&autofill_manager(), &child_autofill_manager());
ASSERT_FALSE(suppressor_->is_suppressing());
}
void TearDown() override {
suppressor_.reset();
content::RenderViewHostTestHarness::TearDown();
}
TestContentAutofillClient& autofill_client() {
return *autofill_client_injector_[web_contents()];
}
TestBrowserAutofillManager& autofill_manager() {
return *autofill_manager_injector_[web_contents()];
}
TestBrowserAutofillManager& child_autofill_manager() {
return *autofill_manager_injector_[child_rfh_];
}
void OnBeforeAskForValuesToFill(AutofillManager& manager) {
suppressor().OnBeforeAskForValuesToFill(manager, some_form_, some_field_,
some_form_data_);
}
void OnAfterAskForValuesToFill(AutofillManager& manager) {
suppressor().OnAfterAskForValuesToFill(manager, some_form_, some_field_);
}
void FastForwardBy(base::TimeDelta parsing_duration) {
task_environment()->FastForwardBy(parsing_duration);
task_environment()->RunUntilIdle();
}
TouchToFillKeyboardSuppressor& suppressor() { return *suppressor_; }
void DestroySuppressor() { suppressor_.reset(); }
MOCK_METHOD(bool, IsShowing, (AutofillManager & manager));
MOCK_METHOD(bool,
IntendsToShow,
(AutofillManager&, FormGlobalId, FieldGlobalId, const FormData&));
private:
test::AutofillUnitTestEnvironment autofill_test_environment_;
TestAutofillClientInjector<TestContentAutofillClient>
autofill_client_injector_;
TestAutofillManagerInjector<TestBrowserAutofillManager>
autofill_manager_injector_;
std::unique_ptr<TouchToFillKeyboardSuppressor> suppressor_;
FormData some_form_data_ =
test::CreateTestCreditCardFormData(/*is_https=*/true,
/*use_month_type=*/false);
FormGlobalId some_form_ = some_form_data_.global_id();
FieldGlobalId some_field_ = test::MakeFieldGlobalId();
raw_ptr<content::RenderFrameHost> child_rfh_ = nullptr;
};
// Tests that the keyboard is and remains suppressed if TTF is intended to be
// and then is shown.
TEST_F(TouchToFillKeyboardSuppressorTest, SuppressIfWillShow) {
EXPECT_CALL(*this, IsShowing).WillOnce(Return(false));
EXPECT_CALL(*this, IntendsToShow).WillOnce(Return(true));
EXPECT_FALSE(suppressor().is_suppressing());
OnBeforeAskForValuesToFill(autofill_manager());
EXPECT_TRUE(suppressor().is_suppressing());
EXPECT_CALL(*this, IsShowing).WillOnce(Return(true));
OnAfterAskForValuesToFill(autofill_manager());
EXPECT_TRUE(suppressor().is_suppressing());
}
// Tests that the keyboard is and remains suppressed if TTF is already showing.
TEST_F(TouchToFillKeyboardSuppressorTest, SuppressIfAlreadyShown) {
EXPECT_CALL(*this, IsShowing).WillOnce(Return(true));
EXPECT_FALSE(suppressor().is_suppressing());
OnBeforeAskForValuesToFill(autofill_manager());
EXPECT_TRUE(suppressor().is_suppressing());
EXPECT_CALL(*this, IsShowing).WillOnce(Return(true));
OnAfterAskForValuesToFill(autofill_manager());
EXPECT_TRUE(suppressor().is_suppressing());
}
// Tests that the keyboard is suppressed in at most one frame at a time.
TEST_F(TouchToFillKeyboardSuppressorTest, SuppressAlsoInOneFrame) {
EXPECT_CALL(*this, IsShowing).WillOnce(Return(false));
EXPECT_CALL(*this, IntendsToShow).WillOnce(Return(true));
OnBeforeAskForValuesToFill(child_autofill_manager());
EXPECT_TRUE(suppressor().is_suppressing());
EXPECT_CALL(*this, IsShowing).WillOnce(Return(true));
OnAfterAskForValuesToFill(child_autofill_manager());
EXPECT_TRUE(suppressor().is_suppressing());
}
// Tests that the keyboard is suppressed in at most one frame at a time.
TEST_F(TouchToFillKeyboardSuppressorTest, SuppressOnlyInOneFrame) {
EXPECT_CALL(*this, IsShowing).WillOnce(Return(false));
EXPECT_CALL(*this, IntendsToShow).WillOnce(Return(true));
OnBeforeAskForValuesToFill(autofill_manager());
EXPECT_TRUE(suppressor().is_suppressing());
EXPECT_CALL(*this, IsShowing).WillOnce(Return(true));
OnAfterAskForValuesToFill(autofill_manager());
EXPECT_TRUE(suppressor().is_suppressing());
// Now the same in another frame.
EXPECT_CALL(*this, IsShowing).WillOnce(Return(false));
EXPECT_CALL(*this, IntendsToShow).WillOnce(Return(true));
OnBeforeAskForValuesToFill(child_autofill_manager());
EXPECT_TRUE(suppressor().is_suppressing());
EXPECT_CALL(*this, IsShowing).WillOnce(Return(true));
OnAfterAskForValuesToFill(child_autofill_manager());
EXPECT_TRUE(suppressor().is_suppressing());
}
// Tests that the keyboard is not suppressed if TTF isn't and won't be shown.
TEST_F(TouchToFillKeyboardSuppressorTest, NotSuppressIfWillNotShow) {
EXPECT_CALL(*this, IsShowing).WillOnce(Return(false));
EXPECT_CALL(*this, IntendsToShow).WillOnce(Return(false));
OnBeforeAskForValuesToFill(autofill_manager());
EXPECT_CALL(*this, IsShowing).WillOnce(Return(false));
OnAfterAskForValuesToFill(autofill_manager());
}
// Tests that the keyboard is first suppressed but then unsuppressed if TTF is
// planned to be shown but not shown after all.
TEST_F(TouchToFillKeyboardSuppressorTest, UnsuppressIfNotShowing) {
EXPECT_CALL(*this, IsShowing).WillOnce(Return(false));
EXPECT_CALL(*this, IntendsToShow).WillOnce(Return(true));
OnBeforeAskForValuesToFill(autofill_manager());
EXPECT_TRUE(suppressor().is_suppressing());
EXPECT_CALL(*this, IsShowing).WillOnce(Return(false));
OnAfterAskForValuesToFill(autofill_manager());
EXPECT_FALSE(suppressor().is_suppressing());
}
// Tests that the keyboard is first suppressed but then unsuppressed if too much
// period of time passes between On{Before,After}AskForValuesToFill().
TEST_F(TouchToFillKeyboardSuppressorTest, UnsuppressIfParsingIsTooSlow) {
EXPECT_CALL(*this, IsShowing).WillOnce(Return(false));
EXPECT_CALL(*this, IntendsToShow).WillOnce(Return(true));
OnBeforeAskForValuesToFill(autofill_manager());
EXPECT_TRUE(suppressor().is_suppressing());
FastForwardBy(base::Seconds(2));
EXPECT_FALSE(suppressor().is_suppressing());
EXPECT_CALL(*this, IsShowing).WillOnce(Return(false));
OnAfterAskForValuesToFill(autofill_manager());
}
// Tests that the keyboard is remains suppressed if a sufficiently short period
// of time passes between On{Before,After}AskForValuesToFill().
TEST_F(TouchToFillKeyboardSuppressorTest,
KeepSuppressingIfParsingTakesShortTime) {
EXPECT_CALL(*this, IsShowing).WillOnce(Return(false));
EXPECT_CALL(*this, IntendsToShow).WillOnce(Return(true));
OnBeforeAskForValuesToFill(autofill_manager());
EXPECT_TRUE(suppressor().is_suppressing());
EXPECT_CALL(*this, IsShowing).WillOnce(Return(true));
FastForwardBy(base::Milliseconds(150));
OnAfterAskForValuesToFill(autofill_manager());
EXPECT_TRUE(suppressor().is_suppressing());
}
// Tests that the destructor unsuppresses the keyboard.
TEST_F(TouchToFillKeyboardSuppressorTest,
UnsuppressOnDestructionIfSuppressing) {
EXPECT_CALL(*this, IsShowing).WillOnce(Return(false));
EXPECT_CALL(*this, IntendsToShow).WillOnce(Return(true));
OnBeforeAskForValuesToFill(autofill_manager());
DestroySuppressor();
}
} // namespace
} // namespace autofill
|