File: reduce_screen_size_metrics_browsertest.cc

package info (click to toggle)
chromium 139.0.7258.127-1
  • links: PTS, VCS
  • area: main
  • in suites:
  • size: 6,122,068 kB
  • sloc: cpp: 35,100,771; 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 (111 lines) | stat: -rw-r--r-- 4,415 bytes parent folder | download | duplicates (3)
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
// Copyright 2025 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "base/strings/stringprintf.h"
#include "base/test/scoped_feature_list.h"
#include "chrome/browser/ui/browser.h"
#include "chrome/browser/ui/browser_window.h"
#include "chrome/common/chrome_features.h"
#include "chrome/test/base/chrome_test_utils.h"
#include "chrome/test/base/platform_browser_test.h"
#include "chrome/test/base/ui_test_utils.h"
#include "content/public/browser/render_widget_host_view.h"
#include "content/public/browser/web_contents.h"
#include "content/public/test/browser_test.h"
#include "content/public/test/browser_test_utils.h"
#include "testing/gtest/include/gtest/gtest.h"
#include "ui/gfx/geometry/rect.h"

namespace chrome {

class ReduceScreenSizeMetricsTest : public PlatformBrowserTest,
                                    public testing::WithParamInterface<bool> {
 public:
  ReduceScreenSizeMetricsTest() {
    // Enable the feature:
    feature_list_.InitWithFeatureState(
        features::kIncognitoFingerprintingInterventions, GetParam());
  }

  bool is_feature_enabled() { return GetParam(); }

  std::string viewport_dimensions(content::WebContents* web_contents) {
    gfx::Rect viewport = web_contents->GetContainerBounds();
    return base::StringPrintf("%dx%d", viewport.width(), viewport.height());
  }

  std::string actual_screen_dimensions(content::WebContents* web_contents) {
    return web_contents->GetRenderWidgetHostView()
        ->GetScreenInfo()
        .rect.size()
        .ToString();
  }

  content::WebContents* InitializeWebContents(Browser* browser) {
    // Resize the window to an invalidly-small size, which will result in the
    // window actually resizing to the smallest size allowed by the platform,
    // tab strip, scrollbars, etc. This will result something smaller than the
    // screen, which ensures a delta we can measure.
    const gfx::Rect new_bounds(10, 20, 1, 1);
    browser->window()->SetBounds(new_bounds);

    // Navigate to an empty page:
    GURL url(embedded_test_server()->GetURL("/empty.html"));
    EXPECT_TRUE(ui_test_utils::NavigateToURL(browser, url));

    content::WebContents* web_contents =
        browser->tab_strip_model()->GetActiveWebContents();
    EXPECT_TRUE(web_contents);

    return web_contents;
  }

 protected:
  void SetUpOnMainThread() override {
    PlatformBrowserTest::SetUpOnMainThread();
    ASSERT_TRUE(embedded_test_server()->Start());
  }

  base::test::ScopedFeatureList feature_list_;
};

INSTANTIATE_TEST_SUITE_P(All,
                         ReduceScreenSizeMetricsTest,
                         testing::Bool(),
                         [](const testing::TestParamInfo<bool>& info) {
                           return base::StringPrintf(
                               "Flag%s", info.param ? "Enabled" : "Disabled");
                         });

IN_PROC_BROWSER_TEST_P(ReduceScreenSizeMetricsTest, IncognitoScreenSize) {
  // Initialize the test with a newly-created Incognito browser:
  content::WebContents* web_contents =
      InitializeWebContents(CreateIncognitoBrowser());

  // Verify screen properties: if the feature flag is enabled, the screen size
  // will be the viewport size in Incognito browsers. If the flag is
  // disabled, the screen size will be the actual screen size.
  content::EvalJsResult reported_screen_size =
      content::EvalJs(web_contents, "`${screen.width}x${screen.height}`");
  if (is_feature_enabled()) {
    EXPECT_EQ(viewport_dimensions(web_contents), reported_screen_size);
    EXPECT_NE(actual_screen_dimensions(web_contents), reported_screen_size);
  } else {
    EXPECT_NE(viewport_dimensions(web_contents), reported_screen_size);
    EXPECT_EQ(actual_screen_dimensions(web_contents), reported_screen_size);
  }
}

IN_PROC_BROWSER_TEST_P(ReduceScreenSizeMetricsTest, RegularScreenSize) {
  // Initialize the test with the framework's existing non-Incognito browser:
  content::WebContents* web_contents = InitializeWebContents(browser());

  // Verify screen properties: regardless of the feature flag, the reported
  // screen size will be the actual screen size in non-Incognito browsers.
  std::string expectation = actual_screen_dimensions(web_contents);
  EXPECT_EQ(expectation,
            EvalJs(web_contents, "`${screen.width}x${screen.height}`"));
}

}  // namespace chrome