Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2428)

Unified Diff: chrome/android/javatests/src/org/chromium/chrome/browser/payments/PaymentRequestIncompleteServerCardTest.java

Issue 2189563002: Use server ID to identify server cards. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/android/javatests/src/org/chromium/chrome/browser/payments/PaymentRequestIncompleteServerCardTest.java
diff --git a/chrome/android/javatests/src/org/chromium/chrome/browser/payments/PaymentRequestIncompleteServerCardTest.java b/chrome/android/javatests/src/org/chromium/chrome/browser/payments/PaymentRequestIncompleteServerCardTest.java
new file mode 100644
index 0000000000000000000000000000000000000000..5de606b9f3cbfdc42363829c3c699daad6a325a8
--- /dev/null
+++ b/chrome/android/javatests/src/org/chromium/chrome/browser/payments/PaymentRequestIncompleteServerCardTest.java
@@ -0,0 +1,55 @@
+// 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.content.DialogInterface;
+import android.test.suitebuilder.annotation.MediumTest;
+
+import org.chromium.chrome.R;
+import org.chromium.chrome.browser.autofill.AutofillTestHelper;
+import org.chromium.chrome.browser.autofill.PersonalDataManager.AutofillProfile;
+import org.chromium.chrome.browser.autofill.PersonalDataManager.CreditCard;
+
+import java.util.concurrent.ExecutionException;
+import java.util.concurrent.TimeoutException;
+
+/**
+ * A test for paying with an incomplete server card.
+ */
+public class PaymentRequestIncompleteServerCardTest extends PaymentRequestTestBase {
+ private static final int FIRST_BILLING_ADDRESS = 1;
+
+ public PaymentRequestIncompleteServerCardTest() {
+ super("payment_request_no_shipping_test.html");
+ }
+
+ @Override
+ public void onMainActivityStarted()
+ throws InterruptedException, ExecutionException, TimeoutException {
+ AutofillTestHelper helper = new AutofillTestHelper();
+ helper.setProfile(new AutofillProfile("", "https://example.com",
+ true, "Jon Doe", "Google", "340 Main St", "CA", "Los Angeles", "", "90291", "",
+ "US", "310-310-6000", "jon.doe@gmail.com", "en-US"));
+ helper.addServerCreditCard(new CreditCard("", "https://example.com", false /* isLocal */,
+ true /* isCached */, "Jon Doe", "4111111111111111", "1111", "12", "2050", "visa",
+ R.drawable.pr_visa, "" /* billing address */, "" /* serverId */));
+ }
+
+ /** Click [PAY] and dismiss the card unmask dialog. */
+ @MediumTest
+ public void testPayAndDontUnmask() throws InterruptedException, ExecutionException,
+ TimeoutException {
+ triggerUIAndWait(mReadyForInput);
+ clickInPaymentMethodAndWait(R.id.payments_section, mReadyForInput);
+ clickInPaymentMethodAndWait(R.id.payments_first_radio_button, mReadyToEdit);
+ setSpinnerSelectionsInCardEditorAndWait(new int[] {FIRST_BILLING_ADDRESS},
+ mBillingAddressChangeProcessed);
+ clickInCardEditorAndWait(R.id.payments_edit_done_button, mReadyToPay);
+ clickAndWait(R.id.button_primary, mReadyForUnmaskInput);
+ clickCardUnmaskButtonAndWait(DialogInterface.BUTTON_NEGATIVE, mReadyToPay);
+ clickAndWait(R.id.button_secondary, mDismissed);
+ expectResultContains(new String[] {"Request cancelled"});
+ }
+}

Powered by Google App Engine
This is Rietveld 408576698