Index: chrome/android/javatests/src/org/chromium/chrome/browser/payments/PaymentRequestActivePaymentQueryNoCardTest.java |
diff --git a/chrome/android/javatests/src/org/chromium/chrome/browser/payments/PaymentRequestActivePaymentQueryNoCardTest.java b/chrome/android/javatests/src/org/chromium/chrome/browser/payments/PaymentRequestActivePaymentQueryNoCardTest.java |
new file mode 100644 |
index 0000000000000000000000000000000000000000..626caf9d956c96eb2c4947719af6ba16fc4429fd |
--- /dev/null |
+++ b/chrome/android/javatests/src/org/chromium/chrome/browser/payments/PaymentRequestActivePaymentQueryNoCardTest.java |
@@ -0,0 +1,81 @@ |
+// Copyright 2016 The Chromium Authors. All rights reserved. |
+// Use of this source code is governed by a BSD-style license that can be |
+// found in the LICENSE file. |
+ |
+package org.chromium.chrome.browser.payments; |
+ |
+import android.test.suitebuilder.annotation.MediumTest; |
+ |
+import org.chromium.base.test.util.CommandLineFlags; |
+import org.chromium.base.test.util.Feature; |
+import org.chromium.chrome.R; |
+import org.chromium.chrome.browser.autofill.AutofillTestHelper; |
+import org.chromium.chrome.browser.autofill.PersonalDataManager.CreditCard; |
+ |
+import java.util.concurrent.ExecutionException; |
+import java.util.concurrent.TimeoutException; |
+ |
+/** |
+ * A payment integration test for checking whether user can make active payment via either payment |
+ * app or a credit card. This user does not have a complete credit card on file. |
+ */ |
+@CommandLineFlags.Add("enable-blink-features=CanMakeActivePayment") |
+public class PaymentRequestActivePaymentQueryNoCardTest extends PaymentRequestTestBase { |
+ public PaymentRequestActivePaymentQueryNoCardTest() { |
+ super("payment_request_active_payment_query_test.html"); |
+ } |
+ |
+ @Override |
+ public void onMainActivityStarted() throws InterruptedException, ExecutionException, |
+ TimeoutException { |
+ // The user has an incomplete credit card on file. This is not sufficient for |
+ // canMakeActivePayment() to return true. |
+ new AutofillTestHelper().setCreditCard(new CreditCard("", "https://example.com", true, true, |
+ "Jon Doe", "4111111111111111", "1111", "12", "2050", "visa", R.drawable.pr_visa, |
+ "" /* billingAddressId */, "" /* serverId */)); |
+ } |
+ |
+ @MediumTest |
+ @Feature({"Payments"}) |
+ public void testNoBobPayInstalled() throws InterruptedException, ExecutionException, |
+ TimeoutException { |
+ triggerUIAndWait(mActivePaymentQueryResponded); |
+ expectResultContains(new String[]{"false"}); |
+ } |
+ |
+ @MediumTest |
+ @Feature({"Payments"}) |
+ public void testNoInstrumentsInFastBobPay() throws InterruptedException, ExecutionException, |
+ TimeoutException { |
+ installPaymentApp(NO_INSTRUMENTS, IMMEDIATE_RESPONSE); |
+ triggerUIAndWait(mActivePaymentQueryResponded); |
+ expectResultContains(new String[]{"false"}); |
+ } |
+ |
+ @MediumTest |
+ @Feature({"Payments"}) |
+ public void testNoInstrumentsInSlowBobPay() throws InterruptedException, ExecutionException, |
+ TimeoutException { |
+ installPaymentApp(NO_INSTRUMENTS, DELAYED_RESPONSE); |
+ triggerUIAndWait(mActivePaymentQueryResponded); |
+ expectResultContains(new String[]{"false"}); |
+ } |
+ |
+ @MediumTest |
+ @Feature({"Payments"}) |
+ public void testPayViaFastBobPay() throws InterruptedException, ExecutionException, |
+ TimeoutException { |
+ installPaymentApp(HAVE_INSTRUMENTS, IMMEDIATE_RESPONSE); |
+ triggerUIAndWait(mActivePaymentQueryResponded); |
+ expectResultContains(new String[]{"true"}); |
+ } |
+ |
+ @MediumTest |
+ @Feature({"Payments"}) |
+ public void testPayViaSlowBobPay() throws InterruptedException, ExecutionException, |
+ TimeoutException { |
+ installPaymentApp(HAVE_INSTRUMENTS, DELAYED_RESPONSE); |
+ triggerUIAndWait(mActivePaymentQueryResponded); |
+ expectResultContains(new String[]{"true"}); |
+ } |
+} |