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
|
// Copyright (c) 2016 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "chrome/browser/ui/autofill/autofill_popup_layout_model.h"
#include <stddef.h>
#include <memory>
#include "chrome/browser/ui/autofill/autofill_popup_view.h"
#include "chrome/browser/ui/autofill/autofill_popup_view_delegate.h"
#include "chrome/browser/ui/autofill/popup_constants.h"
#include "chrome/test/base/chrome_render_view_host_test_harness.h"
#include "components/autofill/core/browser/popup_item_ids.h"
#include "components/autofill/core/browser/suggestion.h"
#include "components/grit/components_scaled_resources.h"
#include "content/public/browser/web_contents.h"
#include "testing/gtest/include/gtest/gtest.h"
#include "ui/base/resource/resource_bundle.h"
#include "ui/gfx/geometry/point.h"
#include "ui/gfx/geometry/rect.h"
#include "ui/gfx/geometry/rect_f.h"
#include "ui/gfx/image/image_skia.h"
#include "ui/gfx/native_widget_types.h"
namespace autofill {
namespace {
class TestAutofillPopupViewDelegate : public AutofillPopupViewDelegate {
public:
explicit TestAutofillPopupViewDelegate(content::WebContents* web_contents)
: element_bounds_(0.0, 0.0, 100.0, 100.0),
container_view_(web_contents->GetNativeView()) {}
void Hide() override {}
void ViewDestroyed() override{};
void SetSelectionAtPoint(const gfx::Point& point) override {}
bool AcceptSelectedLine() override { return true; }
void SelectionCleared() override {}
gfx::Rect popup_bounds() const override { return gfx::Rect(0, 0, 100, 100); }
gfx::NativeView container_view() override { return container_view_; }
const gfx::RectF& element_bounds() const override { return element_bounds_; }
bool IsRTL() const override { return false; }
const std::vector<autofill::Suggestion> GetSuggestions() override {
// Give elements 1 and 3 subtexts and elements 2 and 3 icons, to ensure
// all combinations of subtexts and icons.
std::vector<Suggestion> suggestions;
suggestions.push_back(Suggestion("", "", "", 0));
suggestions.push_back(Suggestion("", "x", "", 0));
suggestions.push_back(Suggestion("", "", "americanExpressCC", 0));
suggestions.push_back(Suggestion("", "x", "genericCC", 0));
// Http warning message.
suggestions.push_back(
Suggestion("x", "x", "httpWarning",
POPUP_ITEM_ID_HTTP_NOT_SECURE_WARNING_MESSAGE));
return suggestions;
}
#if !defined(OS_ANDROID)
int GetElidedValueWidthForRow(size_t row) override { return 0; }
int GetElidedLabelWidthForRow(size_t row) override { return 0; }
#endif
private:
gfx::RectF element_bounds_;
gfx::NativeView container_view_;
};
class AutofillPopupLayoutModelTest : public ChromeRenderViewHostTestHarness {
public:
void SetUp() override {
ChromeRenderViewHostTestHarness::SetUp();
delegate_.reset(new TestAutofillPopupViewDelegate(web_contents()));
layout_model_.reset(new AutofillPopupLayoutModel(
delegate_.get(), false /* is_credit_card_field */));
}
AutofillPopupLayoutModel* layout_model() { return layout_model_.get(); }
private:
std::unique_ptr<TestAutofillPopupViewDelegate> delegate_;
std::unique_ptr<AutofillPopupLayoutModel> layout_model_;
};
} // namespace
#if !defined(OS_ANDROID)
TEST_F(AutofillPopupLayoutModelTest, RowWidthWithoutText) {
int base_size =
AutofillPopupLayoutModel::kEndPadding * 2 + kPopupBorderThickness * 2;
int subtext_increase = AutofillPopupLayoutModel::kNamePadding;
// Refer to GetSuggestions() in TestAutofillPopupViewDelegate.
EXPECT_EQ(base_size,
layout_model()->RowWidthWithoutText(0, /* with_label= */ false));
EXPECT_EQ(base_size + subtext_increase,
layout_model()->RowWidthWithoutText(1, /* with_label= */ true));
EXPECT_EQ(base_size + AutofillPopupLayoutModel::kIconPadding +
ui::ResourceBundle::GetSharedInstance()
.GetImageNamed(IDR_AUTOFILL_CC_AMEX)
.Width(),
layout_model()->RowWidthWithoutText(2, /* with_label= */ false));
EXPECT_EQ(base_size + subtext_increase +
AutofillPopupLayoutModel::kIconPadding +
ui::ResourceBundle::GetSharedInstance()
.GetImageNamed(IDR_AUTOFILL_CC_GENERIC)
.Width(),
layout_model()->RowWidthWithoutText(3, /* with_label= */ true));
EXPECT_EQ(base_size + AutofillPopupLayoutModel::kHttpWarningNamePadding +
AutofillPopupLayoutModel::kHttpWarningIconPadding +
layout_model()->GetIconImage(4).width(),
layout_model()->RowWidthWithoutText(4, /* with_label= */ true));
}
#endif
} // namespace autofill
|