| OLD | NEW |
| 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 #import "ios/chrome/browser/payments/shipping_address_selection_view_controller.
h" | 5 #import "ios/chrome/browser/payments/shipping_address_selection_view_controller.
h" |
| 6 | 6 |
| 7 #include "base/mac/foundation_util.h" | 7 #include "base/mac/foundation_util.h" |
| 8 #include "base/memory/ptr_util.h" | 8 #include "base/memory/ptr_util.h" |
| 9 #include "components/autofill/core/browser/autofill_profile.h" | 9 #include "components/autofill/core/browser/autofill_profile.h" |
| 10 #include "components/autofill/core/browser/test_personal_data_manager.h" | 10 #include "components/autofill/core/browser/test_personal_data_manager.h" |
| 11 #import "ios/chrome/browser/payments/cells/payments_text_item.h" | 11 #import "ios/chrome/browser/payments/cells/payments_text_item.h" |
| 12 #import "ios/chrome/browser/payments/cells/shipping_address_item.h" | 12 #import "ios/chrome/browser/payments/cells/shipping_address_item.h" |
| 13 #include "ios/chrome/browser/payments/payment_request.h" | 13 #include "ios/chrome/browser/payments/payment_request.h" |
| 14 #include "ios/chrome/browser/payments/payment_request_test_util.h" | 14 #include "ios/chrome/browser/payments/payment_request_test_util.h" |
| 15 #import "ios/chrome/browser/ui/autofill/cells/status_item.h" | 15 #import "ios/chrome/browser/ui/autofill/cells/status_item.h" |
| 16 #import "ios/chrome/browser/ui/collection_view/collection_view_controller_test.h
" | 16 #import "ios/chrome/browser/ui/collection_view/collection_view_controller_test.h
" |
| 17 #include "ios/chrome/grit/ios_strings.h" | 17 #include "ios/chrome/grit/ios_strings.h" |
| 18 #include "ios/web/public/payments/payment_request.h" | 18 #include "ios/web/public/payments/payment_request.h" |
| 19 #include "testing/gtest/include/gtest/gtest.h" | 19 #include "testing/gtest/include/gtest/gtest.h" |
| 20 | 20 |
| 21 #if !defined(__has_feature) || !__has_feature(objc_arc) |
| 22 #error "This file requires ARC support." |
| 23 #endif |
| 24 |
| 21 class ShippingAddressSelectionViewControllerTest | 25 class ShippingAddressSelectionViewControllerTest |
| 22 : public CollectionViewControllerTest { | 26 : public CollectionViewControllerTest { |
| 23 protected: | 27 protected: |
| 24 CollectionViewController* NewController() override NS_RETURNS_RETAINED { | 28 CollectionViewController* NewController() override NS_RETURNS_RETAINED { |
| 25 personal_data_manager_ = | 29 personal_data_manager_ = |
| 26 base::MakeUnique<autofill::TestPersonalDataManager>(); | 30 base::MakeUnique<autofill::TestPersonalDataManager>(); |
| 27 // Add testing profiles. autofill::TestPersonalDataManager does not take | 31 // Add testing profiles. autofill::TestPersonalDataManager does not take |
| 28 // ownership of the profiles. | 32 // ownership of the profiles. |
| 29 profile1_ = payment_request_test_util::CreateTestAutofillProfile(); | 33 profile1_ = payment_request_test_util::CreateTestAutofillProfile(); |
| 30 personal_data_manager_->AddTestingProfile(profile1_.get()); | 34 personal_data_manager_->AddTestingProfile(profile1_.get()); |
| (...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 102 [GetShippingAddressSelectionViewController() loadModel]; | 106 [GetShippingAddressSelectionViewController() loadModel]; |
| 103 | 107 |
| 104 ASSERT_EQ(1, NumberOfSections()); | 108 ASSERT_EQ(1, NumberOfSections()); |
| 105 // There should be only one item. | 109 // There should be only one item. |
| 106 ASSERT_EQ(1U, static_cast<unsigned int>(NumberOfItemsInSection(0))); | 110 ASSERT_EQ(1U, static_cast<unsigned int>(NumberOfItemsInSection(0))); |
| 107 | 111 |
| 108 // The item should be of type StatusItem. | 112 // The item should be of type StatusItem. |
| 109 item = GetCollectionViewItem(0, 0); | 113 item = GetCollectionViewItem(0, 0); |
| 110 EXPECT_TRUE([item isMemberOfClass:[StatusItem class]]); | 114 EXPECT_TRUE([item isMemberOfClass:[StatusItem class]]); |
| 111 } | 115 } |
| OLD | NEW |