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
|
// 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 "build/build_config.h"
#include "chrome/test/payments/payment_request_platform_browsertest_base.h"
#include "content/public/test/browser_test.h"
#include "net/test/embedded_test_server/embedded_test_server.h"
#if BUILDFLAG(IS_ANDROID)
#define DISABLE_ON_ANDROID(test_name) DISABLED_##test_name
#else
#define DISABLE_ON_ANDROID(test_name) test_name
#endif
namespace payments {
namespace {
class ExpandablePaymentHandlerBrowserTest
: public PaymentRequestPlatformBrowserTestBase {
public:
ExpandablePaymentHandlerBrowserTest()
: http_server_(net::EmbeddedTestServer::TYPE_HTTP) {}
void SetUpOnMainThread() override {
PaymentRequestPlatformBrowserTestBase::SetUpOnMainThread();
NavigateTo("/maxpay.test/merchant.html");
// Start http (not https!) server.
http_server_.ServeFilesFromSourceDirectory(
"components/test/data/payments/");
ASSERT_TRUE(http_server_.Start());
}
GURL GetHttpPageUrl() {
return http_server_.GetURL("maxpay.test", "/maxpay.test/merchant.html");
}
private:
net::EmbeddedTestServer http_server_;
};
// Make sure payment apps served from an http connection are rejected.
IN_PROC_BROWSER_TEST_F(ExpandablePaymentHandlerBrowserTest,
OpenWindowRejectHttp) {
std::string payment_method;
InstallPaymentApp("maxpay.test", "/maxpay.test/payment_handler_sw.js",
&payment_method);
EXPECT_EQ("open_window_failed",
content::EvalJs(
GetActiveWebContents(),
content::JsReplace("launchAndWaitUntilReady($1, $2)",
GetHttpPageUrl().spec(), payment_method)));
}
class ExpandableReadyPaymentHandlerBrowserTest
: public ExpandablePaymentHandlerBrowserTest {
public:
void SetUpOnMainThread() override {
ExpandablePaymentHandlerBrowserTest::SetUpOnMainThread();
std::string payment_method;
InstallPaymentApp("maxpay.test", "/maxpay.test/payment_handler_sw.js",
&payment_method);
EXPECT_EQ(
"app_is_ready",
content::EvalJs(
GetActiveWebContents(),
content::JsReplace(
"launchAndWaitUntilReady($1, $2)",
https_server()->GetURL(
"maxpay.test", "/maxpay.test/payment_handler_window.html"),
payment_method)));
}
};
// Make sure merchants can confirm the payment.
IN_PROC_BROWSER_TEST_F(ExpandableReadyPaymentHandlerBrowserTest,
ConfirmPayment) {
DCHECK(test_controller()->GetPaymentHandlerWebContents());
EXPECT_EQ("confirmed",
content::EvalJs(test_controller()->GetPaymentHandlerWebContents(),
"confirm()"));
EXPECT_EQ("success", content::EvalJs(GetActiveWebContents(), "getResult()"));
}
// Make sure the security icon is clickable.
IN_PROC_BROWSER_TEST_F(ExpandableReadyPaymentHandlerBrowserTest,
DISABLE_ON_ANDROID(ClickSecurityIcon)) {
DCHECK(test_controller()->GetPaymentHandlerWebContents());
EXPECT_TRUE(test_controller()->ClickPaymentHandlerSecurityIcon());
}
// Make sure merchants can cancel the payment.
IN_PROC_BROWSER_TEST_F(ExpandableReadyPaymentHandlerBrowserTest,
CancelPayment) {
DCHECK(test_controller()->GetPaymentHandlerWebContents());
EXPECT_EQ("canceled",
content::EvalJs(test_controller()->GetPaymentHandlerWebContents(),
"cancel()"));
EXPECT_EQ("unknown", content::EvalJs(GetActiveWebContents(), "getResult()"));
}
// Make sure merchants can fail the payment.
IN_PROC_BROWSER_TEST_F(ExpandableReadyPaymentHandlerBrowserTest,
PaymentFailed) {
DCHECK(test_controller()->GetPaymentHandlerWebContents());
EXPECT_EQ("failed",
content::EvalJs(test_controller()->GetPaymentHandlerWebContents(),
"fail()"));
EXPECT_EQ("fail", content::EvalJs(GetActiveWebContents(), "getResult()"));
}
// Make sure openWindow() can be resolved into window client.
// Android: Flaky. See https://crbug.com/1075481.
IN_PROC_BROWSER_TEST_F(ExpandableReadyPaymentHandlerBrowserTest,
DISABLE_ON_ANDROID(WindowClientReady)) {
DCHECK(test_controller()->GetPaymentHandlerWebContents());
EXPECT_EQ(true,
content::EvalJs(test_controller()->GetPaymentHandlerWebContents(),
"isWindowClientReady()"));
}
} // namespace
} // namespace payments
|