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

Side by Side Diff: chrome/android/javatests/src/org/chromium/chrome/browser/payments/PaymentRequestPayerInfoDetailsAndFreeShippingTest.java

Issue 2413833002: PaymentRequest: Rename ContactInfo to PayerInfo.
Patch Set: test Created 4 years, 2 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 unified diff | Download patch
OLDNEW
1 // Copyright 2016 The Chromium Authors. All rights reserved. 1 // Copyright 2016 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 package org.chromium.chrome.browser.payments; 5 package org.chromium.chrome.browser.payments;
6 6
7 import android.content.DialogInterface; 7 import android.content.DialogInterface;
8 import android.test.suitebuilder.annotation.MediumTest; 8 import android.test.suitebuilder.annotation.MediumTest;
9 9
10 import org.chromium.base.metrics.RecordHistogram; 10 import org.chromium.base.metrics.RecordHistogram;
11 import org.chromium.base.test.util.Feature; 11 import org.chromium.base.test.util.Feature;
12 import org.chromium.chrome.R; 12 import org.chromium.chrome.R;
13 import org.chromium.chrome.browser.autofill.AutofillTestHelper; 13 import org.chromium.chrome.browser.autofill.AutofillTestHelper;
14 import org.chromium.chrome.browser.autofill.PersonalDataManager.AutofillProfile; 14 import org.chromium.chrome.browser.autofill.PersonalDataManager.AutofillProfile;
15 import org.chromium.chrome.browser.autofill.PersonalDataManager.CreditCard; 15 import org.chromium.chrome.browser.autofill.PersonalDataManager.CreditCard;
16 16
17 import java.util.concurrent.ExecutionException; 17 import java.util.concurrent.ExecutionException;
18 import java.util.concurrent.TimeoutException; 18 import java.util.concurrent.TimeoutException;
19 19
20 /** 20 /**
21 * A payment integration test for a merchant that requests an email address and a phone number and 21 * A payment integration test for a merchant that requests an email address and a phone number and
22 * provides free shipping regardless of address. 22 * provides free shipping regardless of address.
23 */ 23 */
24 public class PaymentRequestContactDetailsAndFreeShippingTest extends PaymentRequ estTestBase { 24 public class PaymentRequestPayerInfoDetailsAndFreeShippingTest extends PaymentRe questTestBase {
25 public PaymentRequestContactDetailsAndFreeShippingTest() { 25 public PaymentRequestPayerInfoDetailsAndFreeShippingTest() {
26 // This merchant requests an email address and a phone number and provid es free shipping 26 // This merchant requests an email address and a phone number and provid es free shipping
27 // worldwide. 27 // worldwide.
28 super("payment_request_contact_details_and_free_shipping_test.html"); 28 super("payment_request_payer_info_details_and_free_shipping_test.html");
29 } 29 }
30 30
31 @Override 31 @Override
32 public void onMainActivityStarted() 32 public void onMainActivityStarted()
33 throws InterruptedException, ExecutionException, TimeoutException { 33 throws InterruptedException, ExecutionException, TimeoutException {
34 AutofillTestHelper helper = new AutofillTestHelper(); 34 AutofillTestHelper helper = new AutofillTestHelper();
35 // The user has a shipping address with a valid email address and a vali d phone number on 35 // The user has a shipping address with a valid email address and a vali d phone number on
36 // disk. 36 // disk.
37 String billingAddressId = helper.setProfile(new AutofillProfile("", "htt ps://example.com", 37 String billingAddressId = helper.setProfile(new AutofillProfile("", "htt ps://example.com",
38 true, "Jon Doe", "Google", "340 Main St", "CA", "Los Angeles", " ", "90291", "", 38 true, "Jon Doe", "Google", "340 Main St", "CA", "Los Angeles", " ", "90291", "",
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
73 // Make sure that only the appropriate enum value was logged. 73 // Make sure that only the appropriate enum value was logged.
74 for (int i = 0; i < PaymentRequestMetrics.REQUESTED_INFORMATION_MAX; ++i ) { 74 for (int i = 0; i < PaymentRequestMetrics.REQUESTED_INFORMATION_MAX; ++i ) {
75 assertEquals((i == (PaymentRequestMetrics.REQUESTED_INFORMATION_EMAI L 75 assertEquals((i == (PaymentRequestMetrics.REQUESTED_INFORMATION_EMAI L
76 | PaymentRequestMetrics.REQUESTED_INFORMATION_PHONE 76 | PaymentRequestMetrics.REQUESTED_INFORMATION_PHONE
77 | PaymentRequestMetrics.REQUESTED_INFORMATION_SHIPPING) ? 1 : 0), 77 | PaymentRequestMetrics.REQUESTED_INFORMATION_SHIPPING) ? 1 : 0),
78 RecordHistogram.getHistogramValueCountForTesting( 78 RecordHistogram.getHistogramValueCountForTesting(
79 "PaymentRequest.RequestedInformation", i)); 79 "PaymentRequest.RequestedInformation", i));
80 } 80 }
81 } 81 }
82 } 82 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698