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 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338
|
// Copyright 2017 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "components/payments/content/service_worker_payment_app.h"
#include <memory>
#include "base/memory/raw_ptr.h"
#include "base/memory/weak_ptr.h"
#include "base/run_loop.h"
#include "base/strings/utf_string_conversions.h"
#include "base/test/bind.h"
#include "base/test/scoped_feature_list.h"
#include "components/payments/core/features.h"
#include "content/public/browser/stored_payment_app.h"
#include "content/public/common/content_features.h"
#include "content/public/test/browser_task_environment.h"
#include "content/public/test/test_browser_context.h"
#include "content/public/test/test_web_contents_factory.h"
#include "testing/gtest/include/gtest/gtest.h"
#include "third_party/blink/public/mojom/payments/payment_request.mojom.h"
namespace payments {
class ServiceWorkerPaymentAppTest : public testing::Test,
public PaymentRequestSpec::Observer {
public:
ServiceWorkerPaymentAppTest() {
web_contents_ =
test_web_contents_factory_.CreateWebContents(&browser_context_);
}
ServiceWorkerPaymentAppTest(const ServiceWorkerPaymentAppTest&) = delete;
ServiceWorkerPaymentAppTest& operator=(const ServiceWorkerPaymentAppTest&) =
delete;
~ServiceWorkerPaymentAppTest() override = default;
protected:
const SkBitmap* icon_bitmap() const { return icon_bitmap_; }
void OnSpecUpdated() override {}
void SetUp() override {
mojom::PaymentDetailsPtr details = mojom::PaymentDetails::New();
mojom::PaymentItemPtr total = mojom::PaymentItem::New();
mojom::PaymentCurrencyAmountPtr amount =
mojom::PaymentCurrencyAmount::New();
amount->value = "5.00";
amount->currency = "USD";
total->amount = std::move(amount);
details->total = std::move(total);
details->id = std::optional<std::string>("123456");
details->modifiers = std::vector<mojom::PaymentDetailsModifierPtr>();
mojom::PaymentDetailsModifierPtr modifier_1 =
mojom::PaymentDetailsModifier::New();
modifier_1->total = mojom::PaymentItem::New();
modifier_1->total->amount = mojom::PaymentCurrencyAmount::New();
modifier_1->total->amount->currency = "USD";
modifier_1->total->amount->value = "4.00";
modifier_1->method_data = mojom::PaymentMethodData::New();
modifier_1->method_data->supported_method = "basic-card";
details->modifiers->push_back(std::move(modifier_1));
mojom::PaymentDetailsModifierPtr modifier_2 =
mojom::PaymentDetailsModifier::New();
modifier_2->total = mojom::PaymentItem::New();
modifier_2->total->amount = mojom::PaymentCurrencyAmount::New();
modifier_2->total->amount->currency = "USD";
modifier_2->total->amount->value = "3.00";
modifier_2->method_data = mojom::PaymentMethodData::New();
modifier_2->method_data->supported_method = "https://bobpay.test";
details->modifiers->push_back(std::move(modifier_2));
mojom::PaymentDetailsModifierPtr modifier_3 =
mojom::PaymentDetailsModifier::New();
modifier_3->total = mojom::PaymentItem::New();
modifier_3->total->amount = mojom::PaymentCurrencyAmount::New();
modifier_3->total->amount->currency = "USD";
modifier_3->total->amount->value = "2.00";
modifier_3->method_data = mojom::PaymentMethodData::New();
modifier_3->method_data->supported_method = "https://alicepay.test";
details->modifiers->push_back(std::move(modifier_3));
std::vector<mojom::PaymentMethodDataPtr> method_data;
mojom::PaymentMethodDataPtr entry_1 = mojom::PaymentMethodData::New();
entry_1->supported_method = "basic-card";
entry_1->supported_networks.push_back(mojom::BasicCardNetwork::UNIONPAY);
entry_1->supported_networks.push_back(mojom::BasicCardNetwork::JCB);
entry_1->supported_networks.push_back(mojom::BasicCardNetwork::VISA);
method_data.push_back(std::move(entry_1));
mojom::PaymentMethodDataPtr entry_2 = mojom::PaymentMethodData::New();
entry_2->supported_method = "https://bobpay.test";
method_data.push_back(std::move(entry_2));
spec_ = std::make_unique<PaymentRequestSpec>(
mojom::PaymentOptions::New(), std::move(details),
std::move(method_data), weak_ptr_factory_.GetWeakPtr(), "en-US");
}
void TearDown() override {}
void CreateInstallableServiceWorkerPaymentApp() {
constexpr int kBitmapDimension = 16;
std::unique_ptr<WebAppInstallationInfo> app_info =
std::make_unique<WebAppInstallationInfo>();
app_info->name = "bobpay";
app_info->sw_js_url = "sw.js";
app_info->sw_scope = "/some/scope/";
app_info->icon = std::make_unique<SkBitmap>();
app_info->icon->allocN32Pixels(kBitmapDimension, kBitmapDimension);
app_info->icon->eraseColor(SK_ColorRED);
icon_bitmap_ = app_info->icon.get();
app_ = std::make_unique<ServiceWorkerPaymentApp>(
web_contents_, GURL("https://testmerchant.com"),
GURL("https://testmerchant.com/bobpay"), spec_->AsWeakPtr(),
std::move(app_info), /*enabled_method=*/"https://bobpay.test",
/*is_incognito=*/false, /*prefs_can_make_payment=*/true,
/*show_processing_spinner=*/base::DoNothing());
}
void CreateInstalledServiceWorkerPaymentApp(bool with_url_method) {
CreateInstalledServiceWorkerPaymentApp(
with_url_method, /*prefs_can_make_payment_enabled=*/true,
/*has_explicitly_verified_methods=*/false);
}
void CreateInstalledServiceWorkerPaymentApp(
bool with_url_method,
bool prefs_can_make_payment_enabled,
bool has_explicitly_verified_methods) {
constexpr int kBitmapDimension = 16;
std::unique_ptr<content::StoredPaymentApp> stored_app =
std::make_unique<content::StoredPaymentApp>();
stored_app->registration_id = 123456;
stored_app->scope = GURL("https://bobpay.test");
stored_app->name = "bobpay";
stored_app->icon = std::make_unique<SkBitmap>();
stored_app->icon->allocN32Pixels(kBitmapDimension, kBitmapDimension);
stored_app->icon->eraseColor(SK_ColorRED);
stored_app->enabled_methods.emplace_back("basic-card");
if (with_url_method)
stored_app->enabled_methods.emplace_back("https://bobpay.test");
stored_app->capabilities.emplace_back();
stored_app->capabilities.back().supported_card_networks.emplace_back(
static_cast<int32_t>(mojom::BasicCardNetwork::UNIONPAY));
stored_app->capabilities.back().supported_card_networks.emplace_back(
static_cast<int32_t>(mojom::BasicCardNetwork::JCB));
stored_app->user_hint = "Visa 4012 ... 1881";
stored_app->prefer_related_applications = false;
if (has_explicitly_verified_methods) {
stored_app->has_explicitly_verified_methods = true;
}
icon_bitmap_ = stored_app->icon.get();
app_ = std::make_unique<ServiceWorkerPaymentApp>(
web_contents_, GURL("https://testmerchant.com"),
GURL("https://testmerchant.com/bobpay"), spec_->AsWeakPtr(),
std::move(stored_app), /*is_incognito=*/false,
prefs_can_make_payment_enabled,
/*show_processing_spinner=*/base::DoNothing());
}
ServiceWorkerPaymentApp* GetApp() { return app_.get(); }
mojom::PaymentRequestEventDataPtr CreatePaymentRequestEventData() {
return app_->CreatePaymentRequestEventData();
}
mojom::CanMakePaymentEventDataPtr CreateCanMakePaymentEventData() {
return app_->CreateCanMakePaymentEventData();
}
bool CanMakePaymentEventSkipped() {
return app_->GetCanMakePaymentEventSkippedForTesting();
}
private:
content::BrowserTaskEnvironment task_environment_;
content::TestBrowserContext browser_context_;
content::TestWebContentsFactory test_web_contents_factory_;
raw_ptr<content::WebContents> web_contents_;
std::unique_ptr<PaymentRequestSpec> spec_;
std::unique_ptr<ServiceWorkerPaymentApp> app_;
raw_ptr<const SkBitmap> icon_bitmap_;
base::WeakPtrFactory<ServiceWorkerPaymentAppTest> weak_ptr_factory_{this};
};
// Test app info and status are correct.
TEST_F(ServiceWorkerPaymentAppTest, AppInfo) {
CreateInstalledServiceWorkerPaymentApp(true);
EXPECT_TRUE(GetApp()->IsCompleteForPayment());
EXPECT_EQ(base::UTF16ToUTF8(GetApp()->GetLabel()), "bobpay");
EXPECT_EQ(base::UTF16ToUTF8(GetApp()->GetSublabel()), "bobpay.test");
ASSERT_NE(nullptr, GetApp()->icon_bitmap());
EXPECT_EQ(GetApp()->icon_bitmap()->width(), icon_bitmap()->width());
EXPECT_EQ(GetApp()->icon_bitmap()->height(), icon_bitmap()->height());
}
// Test payment request event data can be correctly constructed for invoking
// InvokePaymentApp.
TEST_F(ServiceWorkerPaymentAppTest, CreatePaymentRequestEventData) {
CreateInstalledServiceWorkerPaymentApp(true);
mojom::PaymentRequestEventDataPtr event_data =
CreatePaymentRequestEventData();
EXPECT_EQ(event_data->top_origin.spec(), "https://testmerchant.com/");
EXPECT_EQ(event_data->payment_request_origin.spec(),
"https://testmerchant.com/bobpay");
EXPECT_EQ(event_data->method_data.size(), 2U);
EXPECT_EQ(event_data->method_data[0]->supported_method, "basic-card");
EXPECT_EQ(event_data->method_data[0]->supported_networks.size(), 3U);
EXPECT_EQ(event_data->method_data[1]->supported_method,
"https://bobpay.test");
EXPECT_EQ(event_data->total->currency, "USD");
EXPECT_EQ(event_data->total->value, "5.00");
EXPECT_EQ(event_data->payment_request_id, "123456");
EXPECT_EQ(event_data->modifiers.size(), 2U);
EXPECT_EQ(event_data->modifiers[0]->total->amount->value, "4.00");
EXPECT_EQ(event_data->modifiers[0]->total->amount->currency, "USD");
EXPECT_EQ(event_data->modifiers[0]->method_data->supported_method,
"basic-card");
EXPECT_EQ(event_data->modifiers[1]->total->amount->value, "3.00");
EXPECT_EQ(event_data->modifiers[1]->total->amount->currency, "USD");
EXPECT_EQ(event_data->modifiers[1]->method_data->supported_method,
"https://bobpay.test");
}
// Test CanMakePaymentEventData can be correctly constructed for invoking
// Validate.
TEST_F(ServiceWorkerPaymentAppTest, CreateCanMakePaymentEvent) {
CreateInstalledServiceWorkerPaymentApp(false);
mojom::CanMakePaymentEventDataPtr event_data =
CreateCanMakePaymentEventData();
EXPECT_TRUE(event_data.is_null());
CreateInstalledServiceWorkerPaymentApp(true);
event_data = CreateCanMakePaymentEventData();
EXPECT_FALSE(event_data.is_null());
EXPECT_EQ(event_data->top_origin.spec(), "https://testmerchant.com/");
EXPECT_EQ(event_data->payment_request_origin.spec(),
"https://testmerchant.com/bobpay");
EXPECT_EQ(event_data->method_data.size(), 1U);
EXPECT_EQ(event_data->method_data[0]->supported_method,
"https://bobpay.test");
EXPECT_EQ(event_data->modifiers.size(), 1U);
EXPECT_EQ(event_data->modifiers[0]->total->amount->value, "3.00");
EXPECT_EQ(event_data->modifiers[0]->total->amount->currency, "USD");
EXPECT_EQ(event_data->modifiers[0]->method_data->supported_method,
"https://bobpay.test");
}
// This test validates the scenario where CanMakePaymentEvent cannot be fired.
// The app is expected to be considered valid but not ready for payment.
TEST_F(ServiceWorkerPaymentAppTest, ValidateCanMakePayment) {
// CanMakePaymentEvent is not triggered because this test app lacks any
// explicitly verified methods.
CreateInstalledServiceWorkerPaymentApp(/*with_url_method=*/true);
base::RunLoop runloop;
GetApp()->ValidateCanMakePayment(base::BindLambdaForTesting(
[&](base::WeakPtr<ServiceWorkerPaymentApp> app) {
EXPECT_NE(nullptr, app.get());
runloop.Quit();
}));
runloop.Run();
EXPECT_FALSE(GetApp()->HasEnrolledInstrument());
EXPECT_TRUE(CanMakePaymentEventSkipped());
}
// Test that CanMakePaymentEvent is skipped if the `kCanMakePaymentEnabled` pref
// is disabled.
TEST_F(ServiceWorkerPaymentAppTest, ValidateCanMakePaymentWithPrefDisabled) {
base::test::ScopedFeatureList features(features::kRestrictIsReadyToPayQuery);
CreateInstalledServiceWorkerPaymentApp(
/*with_url_method=*/true, /*prefs_can_make_payment_enabled=*/false,
/*has_explicitly_verified_methods=*/true);
base::RunLoop runloop;
GetApp()->ValidateCanMakePayment(base::BindLambdaForTesting(
[&](base::WeakPtr<ServiceWorkerPaymentApp> app) {
EXPECT_NE(nullptr, app.get());
runloop.Quit();
}));
runloop.Run();
EXPECT_FALSE(GetApp()->HasEnrolledInstrument());
EXPECT_TRUE(CanMakePaymentEventSkipped());
}
// Test that CanMakePaymentEvent is fired if the `kCanMakePaymentEnabled` pref
// is enabled.
TEST_F(ServiceWorkerPaymentAppTest, ValidateCanMakePaymentWithPrefEnabled) {
base::test::ScopedFeatureList features(features::kRestrictIsReadyToPayQuery);
CreateInstalledServiceWorkerPaymentApp(
/*with_url_method=*/true, /*prefs_can_make_payment_enabled=*/true,
/*has_explicitly_verified_methods=*/true);
base::RunLoop runloop;
GetApp()->ValidateCanMakePayment(base::BindLambdaForTesting(
[&](base::WeakPtr<ServiceWorkerPaymentApp> app) {
EXPECT_NE(nullptr, app.get());
runloop.Quit();
}));
runloop.Run();
EXPECT_FALSE(GetApp()->HasEnrolledInstrument());
EXPECT_FALSE(CanMakePaymentEventSkipped());
}
TEST_F(ServiceWorkerPaymentAppTest, IsValidForModifier) {
CreateInstalledServiceWorkerPaymentApp(true);
EXPECT_TRUE(GetApp()->IsValidForModifier(/*method=*/"https://bobpay.test"));
EXPECT_TRUE(GetApp()->IsValidForModifier(/*method=*/"basic-card"));
EXPECT_FALSE(GetApp()->IsValidForModifier(/*method=*/"foo-bar"));
CreateInstallableServiceWorkerPaymentApp();
EXPECT_TRUE(GetApp()->IsValidForModifier(/*method=*/"https://bobpay.test"));
EXPECT_FALSE(GetApp()->IsValidForModifier(/*method=*/"basic-card"));
EXPECT_FALSE(GetApp()->IsValidForModifier(/*method=*/"foo-bar"));
}
} // namespace payments
|