File: web_app_navigate_browsertest.cc

package info (click to toggle)
chromium 138.0.7204.183-1~deb12u1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm-proposed-updates
  • size: 6,080,960 kB
  • sloc: cpp: 34,937,079; ansic: 7,176,967; javascript: 4,110,704; python: 1,419,954; asm: 946,768; xml: 739,971; pascal: 187,324; sh: 89,623; perl: 88,663; objc: 79,944; sql: 50,304; cs: 41,786; fortran: 24,137; makefile: 21,811; php: 13,980; tcl: 13,166; yacc: 8,925; ruby: 7,485; awk: 3,720; lisp: 3,096; lex: 1,327; ada: 727; jsp: 228; sed: 36
file content (139 lines) | stat: -rw-r--r-- 5,016 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
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
// Copyright 2020 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/browser.h"
#include "chrome/browser/ui/browser_list.h"
#include "chrome/browser/ui/browser_navigator.h"
#include "chrome/browser/ui/browser_navigator_params.h"
#include "chrome/browser/ui/tabs/tab_strip_model.h"
#include "chrome/browser/ui/web_applications/app_browser_controller.h"
#include "chrome/browser/ui/web_applications/web_app_browsertest_base.h"
#include "chrome/browser/web_applications/web_app_helpers.h"
#include "chrome/test/base/ui_test_utils.h"
#include "components/webapps/common/web_app_id.h"
#include "content/public/test/browser_test.h"
#include "ui/base/page_transition_types.h"
#include "ui/base/window_open_disposition.h"
#include "url/gurl.h"

namespace web_app {

class WebAppNavigateBrowserTest : public WebAppBrowserTestBase {
 public:
  static GURL GetGoogleURL() { return GURL("http://www.google.com/"); }

  NavigateParams MakeNavigateParams() const {
    NavigateParams params(browser(), GetGoogleURL(), ui::PAGE_TRANSITION_LINK);
    params.window_action = NavigateParams::SHOW_WINDOW;
    return params;
  }
};

// This test verifies that navigating with "open_pwa_window_if_possible = true"
// opens a new app window if there is an installed Web App for the URL.
IN_PROC_BROWSER_TEST_F(WebAppNavigateBrowserTest,
                       AppInstalled_OpenAppWindowIfPossible_True) {
  InstallPWA(GetGoogleURL());

  NavigateParams params(MakeNavigateParams());
  params.disposition = WindowOpenDisposition::NEW_FOREGROUND_TAB;
  params.open_pwa_window_if_possible = true;
  Navigate(&params);

  EXPECT_NE(browser(), params.browser);
  EXPECT_FALSE(params.browser->is_type_normal());
  EXPECT_TRUE(params.browser->is_type_app());
  EXPECT_TRUE(params.browser->is_trusted_source());
}

// This test verifies that navigating with "open_pwa_window_if_possible = false"
// opens a new foreground tab even if there is an installed Web App for the
// URL.
IN_PROC_BROWSER_TEST_F(WebAppNavigateBrowserTest,
                       AppInstalled_OpenAppWindowIfPossible_False) {
  InstallPWA(GetGoogleURL());

  int num_tabs = browser()->tab_strip_model()->count();

  NavigateParams params(MakeNavigateParams());
  params.disposition = WindowOpenDisposition::NEW_FOREGROUND_TAB;
  params.open_pwa_window_if_possible = false;
  params.pwa_navigation_capturing_force_off = true;
  Navigate(&params);

  EXPECT_EQ(browser(), params.browser);
  EXPECT_EQ(++num_tabs, browser()->tab_strip_model()->count());
}

// This test verifies that navigating with "open_pwa_window_if_possible = true"
// opens a new foreground tab when there is no app installed for the URL.
IN_PROC_BROWSER_TEST_F(WebAppNavigateBrowserTest,
                       NoAppInstalled_OpenAppWindowIfPossible) {
  int num_tabs = browser()->tab_strip_model()->count();

  NavigateParams params(MakeNavigateParams());
  params.disposition = WindowOpenDisposition::NEW_FOREGROUND_TAB;
  params.open_pwa_window_if_possible = true;
  Navigate(&params);

  EXPECT_EQ(browser(), params.browser);
  EXPECT_EQ(++num_tabs, browser()->tab_strip_model()->count());
}

IN_PROC_BROWSER_TEST_F(WebAppNavigateBrowserTest, NewPopup) {
  InstallPWA(GetGoogleURL());

  Browser* active_browser;
  {
    NavigateParams params(MakeNavigateParams());
    params.disposition = WindowOpenDisposition::NEW_WINDOW;
    params.open_pwa_window_if_possible = true;
    Navigate(&params);
    active_browser = params.browser;
  }
  Browser* const app_browser = active_browser;
  const webapps::AppId app_id = app_browser->app_controller()->app_id();

  {
    NavigateParams params(MakeNavigateParams());
    params.disposition = WindowOpenDisposition::NEW_WINDOW;
    params.app_id = app_id;
    Navigate(&params);
    active_browser = params.browser;
  }
  content::WebContents* const web_contents =
      active_browser->tab_strip_model()->GetActiveWebContents();

  {
    // From a browser tab, a popup window opens.
    NavigateParams params(MakeNavigateParams());
    params.disposition = WindowOpenDisposition::NEW_POPUP;
    params.source_contents = web_contents;
    Navigate(&params);
    active_browser = params.browser;
    EXPECT_FALSE(active_browser->app_controller());
  }

  {
    // From a browser tab, an app window opens if app_id is specified.
    NavigateParams params(MakeNavigateParams());
    params.app_id = app_id;
    params.disposition = WindowOpenDisposition::NEW_POPUP;
    Navigate(&params);
    active_browser = params.browser;
    EXPECT_EQ(active_browser->app_controller()->app_id(), app_id);
  }

  {
    // From an app window, another app window opens.
    NavigateParams params(MakeNavigateParams());
    params.browser = app_browser;
    params.disposition = WindowOpenDisposition::NEW_POPUP;
    Navigate(&params);
    active_browser = params.browser;
    EXPECT_EQ(active_browser->app_controller()->app_id(), app_id);
  }
}

}  // namespace web_app