// 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/40687687.
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
