File: sharing_icon_view_unittest.cc

package info (click to toggle)
chromium 139.0.7258.138-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 6,120,676 kB
  • sloc: cpp: 35,100,869; ansic: 7,163,530; javascript: 4,103,002; python: 1,436,920; asm: 946,517; xml: 746,709; pascal: 187,653; perl: 88,691; sh: 88,436; objc: 79,953; sql: 51,488; cs: 44,583; fortran: 24,137; makefile: 22,147; tcl: 15,277; php: 13,980; yacc: 8,984; ruby: 7,485; awk: 3,720; lisp: 3,096; lex: 1,327; ada: 727; jsp: 228; sed: 36
file content (161 lines) | stat: -rw-r--r-- 5,983 bytes parent folder | download | duplicates (6)
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
// 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 "chrome/browser/ui/views/sharing/sharing_icon_view.h"

#include "base/memory/raw_ptr.h"
#include "chrome/app/vector_icons/vector_icons.h"
#include "chrome/browser/command_updater_impl.h"
#include "chrome/browser/sharing/click_to_call/click_to_call_ui_controller.h"
#include "chrome/browser/sharing/sharing_ui_controller.h"
#include "chrome/browser/sharing/sms/sms_remote_fetcher_ui_controller.h"
#include "chrome/browser/ui/views/sharing/sharing_dialog_view.h"
#include "chrome/test/base/testing_profile.h"
#include "chrome/test/views/chrome_views_test_base.h"
#include "content/public/test/test_renderer_host.h"
#include "content/public/test/web_contents_tester.h"
#include "third_party/skia/include/core/SkBitmap.h"
#include "ui/events/test/event_generator.h"
#include "ui/gfx/color_palette.h"
#include "ui/gfx/paint_vector_icon.h"
#include "ui/gfx/vector_icon_types.h"
#include "ui/views/accessibility/view_accessibility.h"
#include "ui/views/controls/button/button.h"
#include "ui/views/widget/widget_utils.h"

constexpr int kPageActionIconSize = 20;

class TestPageActionIconDelegate : public IconLabelBubbleView::Delegate,
                                   public PageActionIconView::Delegate {
 public:
  explicit TestPageActionIconDelegate(
      raw_ptr<content::WebContents> web_contents)
      : web_contents_(web_contents) {}
  TestPageActionIconDelegate() = default;
  virtual ~TestPageActionIconDelegate() = default;

  // IconLabelBubbleView::Delegate:
  SkColor GetIconLabelBubbleSurroundingForegroundColor() const override {
    return gfx::kPlaceholderColor;
  }
  SkColor GetIconLabelBubbleBackgroundColor() const override {
    return gfx::kPlaceholderColor;
  }

  // PageActionIconView::Delegate:
  content::WebContents* GetWebContentsForPageActionIconView() override {
    return web_contents_;
  }
  int GetPageActionIconSize() const override { return kPageActionIconSize; }
  bool ShouldHidePageActionIcons() const override {
    return should_hide_page_action_icons_;
  }

  void set_should_hide_page_action_icons(bool should_hide_page_action_icons) {
    should_hide_page_action_icons_ = should_hide_page_action_icons;
  }

  void ClearWebContents() { web_contents_ = nullptr; }

 private:
  bool should_hide_page_action_icons_ = false;
  raw_ptr<content::WebContents> web_contents_ = nullptr;
};

class TestSharingIconView : public SharingIconView {
 public:
  using SharingIconView::AnimateIn;

  explicit TestSharingIconView(IconLabelBubbleView::Delegate* parent_delegate,
                               PageActionIconView::Delegate* delegate,
                               GetControllerCallback get_controller_callback,
                               GetBubbleCallback get_bubble_callback)
      : SharingIconView(parent_delegate,
                        delegate,
                        get_controller_callback,
                        get_bubble_callback) {
    SetUpForInOutAnimation();
  }

  views::BubbleDialogDelegate* GetBubble() const override { return nullptr; }

  bool IsLabelVisible() const { return label()->GetVisible(); }

 protected:
  // PageActionIconView:
  void OnExecuting(ExecuteSource execute_source) override {}
  const gfx::VectorIcon& GetVectorIcon() const override {
    return gfx::VectorIcon::EmptyIcon();
  }
  void UpdateImpl() override {}
};

class SharingIconViewTest : public ChromeViewsTestBase {
 protected:
  // ChromeViewsTestBase:
  void SetUp() override {
    ChromeViewsTestBase::SetUp();

    widget_ = CreateTestWidget(views::Widget::InitParams::CLIENT_OWNS_WIDGET);
    test_web_contents_ =
        content::WebContentsTester::CreateTestWebContents(&profile_, nullptr);
    test_web_contents_->Resize(
        gfx::Rect(/*x=*/0, /*y=*/0, /*width=*/1000, /*height=*/1000));
    delegate_ = TestPageActionIconDelegate(test_web_contents_.get());
    view_ = widget_->SetContentsView(std::make_unique<TestSharingIconView>(
        delegate(), delegate(),
        base::BindRepeating([](content::WebContents* contents) {
          return static_cast<SharingUiController*>(
              ClickToCallUiController::GetOrCreateFromWebContents(contents));
        }),
        base::BindRepeating(SharingDialogView::GetAsBubbleForClickToCall)));

    widget_->Show();
  }

  void TearDown() override {
    ClearView();
    widget_.reset();
    delegate_.ClearWebContents();
    ChromeViewsTestBase::TearDown();
  }

  void ClearView() { view_ = nullptr; }

  void InitialiseViewWithInaccessibleUi() {
    ClearView();
    view_ = widget_->SetContentsView(std::make_unique<TestSharingIconView>(
        delegate(), delegate(),
        base::BindRepeating([](content::WebContents* contents) {
          return static_cast<SharingUiController*>(
              SmsRemoteFetcherUiController::GetOrCreateFromWebContents(
                  contents));
        }),
        base::BindRepeating(SharingDialogView::GetAsBubbleForClickToCall)));
  }

  TestSharingIconView* view() { return view_; }
  views::Widget* widget() { return widget_.get(); }
  TestPageActionIconDelegate* delegate() { return &delegate_; }

 private:
  TestPageActionIconDelegate delegate_;
  raw_ptr<TestSharingIconView> view_ = nullptr;
  std::unique_ptr<views::Widget> widget_;
  // This enables uses of TestWebContents.
  content::RenderViewHostTestEnabler test_render_host_factories_;
  TestingProfile profile_;
  std::unique_ptr<content::WebContents> test_web_contents_;
};

TEST_F(SharingIconViewTest, IgnoredAccessibleState) {
  ui::AXNodeData node_data;
  view()->GetViewAccessibility().GetAccessibleNodeData(&node_data);
  EXPECT_FALSE(node_data.HasState(ax::mojom::State::kIgnored));

  InitialiseViewWithInaccessibleUi();
  node_data = ui::AXNodeData();
  view()->GetViewAccessibility().GetAccessibleNodeData(&node_data);
  EXPECT_TRUE(node_data.HasState(ax::mojom::State::kIgnored));
}