File: chromeos_smart_card_delegate_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 (226 lines) | stat: -rw-r--r-- 9,098 bytes parent folder | download | duplicates (5)
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 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 "chrome/browser/smart_card/chromeos_smart_card_delegate.h"

#include <optional>

#include "base/check_deref.h"
#include "base/memory/raw_ref.h"
#include "base/test/bind.h"
#include "base/test/gmock_expected_support.h"
#include "base/test/scoped_feature_list.h"
#include "base/test/test_future.h"
#include "base/time/time.h"
#include "chrome/browser/smart_card/smart_card_permission_context.h"
#include "chrome/browser/smart_card/smart_card_permission_context_factory.h"
#include "chrome/browser/ui/web_applications/test/isolated_web_app_test_utils.h"
#include "chrome/browser/web_applications/isolated_web_apps/test/isolated_web_app_builder.h"
#include "chrome/test/base/in_process_browser_test.h"
#include "components/content_settings/browser/page_specific_content_settings.h"
#include "components/content_settings/core/common/content_settings_types.h"
#include "components/content_settings/core/common/content_settings_types.mojom-shared.h"
#include "components/tabs/public/tab_interface.h"
#include "content/public/browser/content_browser_client.h"
#include "content/public/browser/render_frame_host.h"
#include "content/public/browser/smart_card_delegate.h"
#include "content/public/common/content_client.h"
#include "content/public/test/browser_test.h"
#include "content/public/test/browser_test_base.h"
#include "third_party/blink/public/common/features.h"

namespace {
constexpr char kDummyReader[] = "Dummy Reader";
}  // namespace

class ChromeOsSmartCardDelegateBrowserTest
    : public web_app::IsolatedWebAppBrowserTestHarness {
 public:
  void SetUpOnMainThread() override {
    IsolatedWebAppBrowserTestHarness::SetUpOnMainThread();
    app_ = web_app::IsolatedWebAppBuilder(
               web_app::ManifestBuilder().AddPermissionsPolicyWildcard(
                   network::mojom::PermissionsPolicyFeature::kSmartCard))
               .BuildBundle();
    app_frame_ = OpenApp(app_->InstallChecked(profile()).app_id());
    ASSERT_TRUE(app_frame_);
  }

  void TearDownOnMainThread() override {
    app_.reset();
    app_frame_ = nullptr;
    IsolatedWebAppBrowserTestHarness::TearDownOnMainThread();
  }

  base::Time GetLastUsed(content::RenderFrameHost& rfh) {
    return content_settings::PageSpecificContentSettings::GetForFrame(&rfh)
        ->GetLastUsedTime(
            content_settings::mojom::ContentSettingsType::SMART_CARD_GUARD);
  }

  bool IsInUse(content::RenderFrameHost& rfh) {
    return content_settings::PageSpecificContentSettings::GetForFrame(&rfh)
        ->IsInUse(
            content_settings::mojom::ContentSettingsType::SMART_CARD_GUARD);
  }

  content::SmartCardDelegate* GetSmartCardDelegate() {
    return content::GetContentClientForTesting()
        ->browser()
        ->GetSmartCardDelegate();
  }

  void GrantReaderPermission() {
    SmartCardPermissionContextFactory::GetForProfile(*profile())
        .GrantPersistentReaderPermission(app_frame_->GetLastCommittedOrigin(),
                                         kDummyReader);
  }

  void GrantEphemeralReaderPermission() {
    SmartCardPermissionContextFactory::GetForProfile(*profile())
        .GrantEphemeralReaderPermission(app_frame_->GetLastCommittedOrigin(),
                                        kDummyReader);
  }

  bool HasReaderPermission(const url::Origin& origin,
                           const std::string& reader) {
    return SmartCardPermissionContextFactory::GetForProfile(*profile())
        .HasReaderPermission(origin, reader);
  }

 protected:
  std::unique_ptr<web_app::ScopedBundledIsolatedWebApp> app_;
  raw_ptr<content::RenderFrameHost> app_frame_ = nullptr;

 private:
  base::test::ScopedFeatureList scoped_feature_list_{
      blink::features::kSmartCard};
};

IN_PROC_BROWSER_TEST_F(ChromeOsSmartCardDelegateBrowserTest,
                       NotifyConnectionUsed) {
  auto before = base::Time::Now();
  ASSERT_GT(before, GetLastUsed(*app_frame_));

  GetSmartCardDelegate()->NotifyConnectionUsed(*app_frame_);

  ASSERT_LE(before, GetLastUsed(*app_frame_));
  ASSERT_TRUE(IsInUse(*app_frame_));
}

IN_PROC_BROWSER_TEST_F(ChromeOsSmartCardDelegateBrowserTest,
                       NotifyLastConnectionLost) {
  ASSERT_FALSE(IsInUse(*app_frame_));

  GetSmartCardDelegate()->NotifyConnectionUsed(*app_frame_);
  ASSERT_TRUE(IsInUse(*app_frame_));

  GetSmartCardDelegate()->NotifyLastConnectionLost(*app_frame_);
  ASSERT_FALSE(IsInUse(*app_frame_));
}

IN_PROC_BROWSER_TEST_F(ChromeOsSmartCardDelegateBrowserTest,
                       ReconnectionInTheBackgroundImpossible) {
  GrantReaderPermission();
  auto& pscs = CHECK_DEREF(
      content_settings::PageSpecificContentSettings::GetForFrame(app_frame_));
  // Set the last used time past the reconnection deadline.
  //
  // Depending on real time in browser tests might not be generally a good idea,
  // but this one will be stable as long as test execution doesn't travel back
  // in time. If it does, we might have bigger problems than
  // instability here.
  pscs.set_last_used_time_for_testing(ContentSettingsType::SMART_CARD_GUARD,
                                      base::Time::Now() -

                                          base::Seconds(16));

  // Hiding takes focus from the window.
  content::WebContents::FromRenderFrameHost(app_frame_)
      ->GetTopLevelNativeWindow()
      ->Hide();

  // Window does not have focus and the last connection was more than
  // `kSmartCardAllowedReconnectTime` ago. Hence, connection is not possible.
  EXPECT_FALSE(
      GetSmartCardDelegate()->HasReaderPermission(*app_frame_, kDummyReader));
}

IN_PROC_BROWSER_TEST_F(ChromeOsSmartCardDelegateBrowserTest,
                       ReconnectionInTheBackgroundPossible) {
  GrantReaderPermission();
  auto& pscs = CHECK_DEREF(
      content_settings::PageSpecificContentSettings::GetForFrame(app_frame_));
  // Set the last used time within the reconnection deadline (in the future).
  //
  // Depending on real time in browser tests might not be generally a good idea,
  // but this one will be stable as long as test execution from here takes less
  // than a minute. If it takes longer, we might have bigger problems than
  // instability here.
  pscs.set_last_used_time_for_testing(ContentSettingsType::SMART_CARD_GUARD,
                                      base::Time::Now() + base::Minutes(1));

  // Hiding takes focus from the window.
  content::WebContents::FromRenderFrameHost(app_frame_)
      ->GetTopLevelNativeWindow()
      ->Hide();

  // Window does not have focus but the last connection was less than
  // `kSmartCardAllowedReconnectTime` ago (probably still in the future). Hence,
  // connection is deemed a reconnection and is possible.
  EXPECT_TRUE(
      GetSmartCardDelegate()->HasReaderPermission(*app_frame_, kDummyReader));
}

IN_PROC_BROWSER_TEST_F(ChromeOsSmartCardDelegateBrowserTest,
                       ReconnectionInTheForegroundPossible) {
  GrantReaderPermission();
  auto& pscs = CHECK_DEREF(
      content_settings::PageSpecificContentSettings::GetForFrame(app_frame_));
  // Set the last used time past the reconnection deadline.
  //
  // Depending on real time in browser tests might not be generally a good idea,
  // but this one will be stable as long as test execution doesn't travel back
  // in time. If it does, we might have bigger problems than
  // instability here.
  pscs.set_last_used_time_for_testing(ContentSettingsType::SMART_CARD_GUARD,
                                      base::Time::Now() - base::Seconds(16));

  // Long time from last connection should not have impact on connection
  // possibility as long as the window has focus.
  EXPECT_TRUE(
      GetSmartCardDelegate()->HasReaderPermission(*app_frame_, kDummyReader));
}

IN_PROC_BROWSER_TEST_F(ChromeOsSmartCardDelegateBrowserTest,
                       PermissionRequestInTheBackgroundImpossible) {
  GrantReaderPermission();

  // Hiding takes focus from the window.
  content::WebContents::FromRenderFrameHost(app_frame_)
      ->GetTopLevelNativeWindow()
      ->Hide();

  base::test::TestFuture<bool> got_permission;
  // This should immediately return false, not even trying to display any
  // prompts.
  GetSmartCardDelegate()->RequestReaderPermission(*app_frame_, kDummyReader,
                                                  got_permission.GetCallback());
  EXPECT_FALSE(got_permission.Get());
}

IN_PROC_BROWSER_TEST_F(ChromeOsSmartCardDelegateBrowserTest,
                       ClosingWindowClearsEphemeralPermissions) {
  GrantEphemeralReaderPermission();
  const auto origin = app_frame_->GetLastCommittedOrigin();
  EXPECT_TRUE(HasReaderPermission(origin, kDummyReader));

  auto* tab_interface = tabs::TabInterface::GetFromContents(
      content::WebContents::FromRenderFrameHost(app_frame_));
  // Not resetting this causes dangling raw pointer error when closing tab.
  app_frame_ = nullptr;
  tab_interface->Close();

  EXPECT_FALSE(HasReaderPermission(origin, kDummyReader));
}