| OLD | NEW |
| 1 // Copyright 2017 The Chromium Authors. All rights reserved. | 1 // Copyright 2017 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_option_selection_coordinator.h" | 5 #import "ios/chrome/browser/payments/shipping_option_selection_coordinator.h" |
| 6 | 6 |
| 7 #include "base/mac/foundation_util.h" | 7 #include "base/mac/foundation_util.h" |
| 8 #include "base/test/ios/wait_util.h" | 8 #include "base/test/ios/wait_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/credit_card.h" | 10 #include "components/autofill/core/browser/credit_card.h" |
| 11 #include "ios/chrome/browser/payments/payment_request.h" | 11 #include "ios/chrome/browser/payments/payment_request.h" |
| 12 #include "ios/chrome/browser/payments/payment_request_test_util.h" | 12 #include "ios/chrome/browser/payments/payment_request_test_util.h" |
| 13 #import "ios/chrome/browser/payments/shipping_option_selection_view_controller.h
" | 13 #import "ios/chrome/browser/payments/shipping_option_selection_view_controller.h
" |
| 14 #include "ios/web/public/payments/payment_request.h" | 14 #include "ios/web/public/payments/payment_request.h" |
| 15 #include "testing/gtest/include/gtest/gtest.h" | 15 #include "testing/gtest/include/gtest/gtest.h" |
| 16 #include "testing/platform_test.h" | 16 #include "testing/platform_test.h" |
| 17 #include "third_party/ocmock/OCMock/OCMock.h" | 17 #include "third_party/ocmock/OCMock/OCMock.h" |
| 18 #include "third_party/ocmock/gtest_support.h" | 18 #include "third_party/ocmock/gtest_support.h" |
| 19 | 19 |
| 20 #if !defined(__has_feature) || !__has_feature(objc_arc) |
| 21 #error "This file requires ARC support." |
| 22 #endif |
| 23 |
| 20 typedef PlatformTest ShippingOptionSelectionCoordinatorTest; | 24 typedef PlatformTest ShippingOptionSelectionCoordinatorTest; |
| 21 | 25 |
| 22 // Tests that invoking start and stop on the coordinator presents and dismisses | 26 // Tests that invoking start and stop on the coordinator presents and dismisses |
| 23 // the ShippingOptionSelectionViewController, respectively. | 27 // the ShippingOptionSelectionViewController, respectively. |
| 24 TEST(ShippingOptionSelectionCoordinatorTest, StartAndStop) { | 28 TEST(ShippingOptionSelectionCoordinatorTest, StartAndStop) { |
| 25 std::unique_ptr<PaymentRequest> payment_request = | 29 std::unique_ptr<PaymentRequest> payment_request = |
| 26 payment_request_test_util::CreateTestPaymentRequest(); | 30 payment_request_test_util::CreateTestPaymentRequest(); |
| 27 | 31 |
| 28 UIViewController* base_view_controller = | 32 UIViewController* base_view_controller = [[UIViewController alloc] init]; |
| 29 [[[UIViewController alloc] init] autorelease]; | |
| 30 UINavigationController* navigation_controller = | 33 UINavigationController* navigation_controller = |
| 31 [[[UINavigationController alloc] | 34 [[UINavigationController alloc] |
| 32 initWithRootViewController:base_view_controller] autorelease]; | 35 initWithRootViewController:base_view_controller]; |
| 33 | 36 |
| 34 ShippingOptionSelectionCoordinator* coordinator = | 37 ShippingOptionSelectionCoordinator* coordinator = |
| 35 [[[ShippingOptionSelectionCoordinator alloc] | 38 [[ShippingOptionSelectionCoordinator alloc] |
| 36 initWithBaseViewController:base_view_controller] autorelease]; | 39 initWithBaseViewController:base_view_controller]; |
| 37 [coordinator setPaymentRequest:payment_request.get()]; | 40 [coordinator setPaymentRequest:payment_request.get()]; |
| 38 | 41 |
| 39 EXPECT_EQ(1u, navigation_controller.viewControllers.count); | 42 EXPECT_EQ(1u, navigation_controller.viewControllers.count); |
| 40 | 43 |
| 41 [coordinator start]; | 44 [coordinator start]; |
| 42 // Short delay to allow animation to complete. | 45 // Short delay to allow animation to complete. |
| 43 base::test::ios::SpinRunLoopWithMaxDelay(base::TimeDelta::FromSecondsD(1.0)); | 46 base::test::ios::SpinRunLoopWithMaxDelay(base::TimeDelta::FromSecondsD(1.0)); |
| 44 EXPECT_EQ(2u, navigation_controller.viewControllers.count); | 47 EXPECT_EQ(2u, navigation_controller.viewControllers.count); |
| 45 | 48 |
| 46 UIViewController* view_controller = | 49 UIViewController* view_controller = |
| 47 navigation_controller.visibleViewController; | 50 navigation_controller.visibleViewController; |
| 48 EXPECT_TRUE([view_controller | 51 EXPECT_TRUE([view_controller |
| 49 isMemberOfClass:[ShippingOptionSelectionViewController class]]); | 52 isMemberOfClass:[ShippingOptionSelectionViewController class]]); |
| 50 | 53 |
| 51 [coordinator stop]; | 54 [coordinator stop]; |
| 52 // Short delay to allow animation to complete. | 55 // Short delay to allow animation to complete. |
| 53 base::test::ios::SpinRunLoopWithMaxDelay(base::TimeDelta::FromSecondsD(1.0)); | 56 base::test::ios::SpinRunLoopWithMaxDelay(base::TimeDelta::FromSecondsD(1.0)); |
| 54 EXPECT_EQ(1u, navigation_controller.viewControllers.count); | 57 EXPECT_EQ(1u, navigation_controller.viewControllers.count); |
| 55 } | 58 } |
| 56 | 59 |
| 57 // Tests that calling the view controller delegate method which notifies the | 60 // Tests that calling the view controller delegate method which notifies the |
| 58 // delegate about selection of a shipping option invokes the corresponding | 61 // delegate about selection of a shipping option invokes the corresponding |
| 59 // coordinator delegate method. | 62 // coordinator delegate method. |
| 60 TEST(ShippingOptionSelectionCoordinatorTest, SelectedShippingOption) { | 63 TEST(ShippingOptionSelectionCoordinatorTest, SelectedShippingOption) { |
| 61 std::unique_ptr<PaymentRequest> payment_request = | 64 std::unique_ptr<PaymentRequest> payment_request = |
| 62 payment_request_test_util::CreateTestPaymentRequest(); | 65 payment_request_test_util::CreateTestPaymentRequest(); |
| 63 | 66 |
| 64 UIViewController* base_view_controller = | 67 UIViewController* base_view_controller = [[UIViewController alloc] init]; |
| 65 [[[UIViewController alloc] init] autorelease]; | |
| 66 UINavigationController* navigation_controller = | 68 UINavigationController* navigation_controller = |
| 67 [[[UINavigationController alloc] | 69 [[UINavigationController alloc] |
| 68 initWithRootViewController:base_view_controller] autorelease]; | 70 initWithRootViewController:base_view_controller]; |
| 69 | 71 |
| 70 ShippingOptionSelectionCoordinator* coordinator = | 72 ShippingOptionSelectionCoordinator* coordinator = |
| 71 [[[ShippingOptionSelectionCoordinator alloc] | 73 [[ShippingOptionSelectionCoordinator alloc] |
| 72 initWithBaseViewController:base_view_controller] autorelease]; | 74 initWithBaseViewController:base_view_controller]; |
| 73 [coordinator setPaymentRequest:payment_request.get()]; | 75 [coordinator setPaymentRequest:payment_request.get()]; |
| 74 | 76 |
| 75 // Mock the coordinator delegate. | 77 // Mock the coordinator delegate. |
| 76 id delegate = [OCMockObject | 78 id delegate = [OCMockObject |
| 77 mockForProtocol:@protocol(ShippingOptionSelectionCoordinatorDelegate)]; | 79 mockForProtocol:@protocol(ShippingOptionSelectionCoordinatorDelegate)]; |
| 78 std::unique_ptr<web::PaymentShippingOption> option( | 80 std::unique_ptr<web::PaymentShippingOption> option( |
| 79 new web::PaymentShippingOption()); | 81 new web::PaymentShippingOption()); |
| 80 [[delegate expect] shippingOptionSelectionCoordinator:coordinator | 82 [[delegate expect] shippingOptionSelectionCoordinator:coordinator |
| 81 didSelectShippingOption:option.get()]; | 83 didSelectShippingOption:option.get()]; |
| 82 [coordinator setDelegate:delegate]; | 84 [coordinator setDelegate:delegate]; |
| (...skipping 18 matching lines...) Expand all Loading... |
| 101 EXPECT_OCMOCK_VERIFY(delegate); | 103 EXPECT_OCMOCK_VERIFY(delegate); |
| 102 } | 104 } |
| 103 | 105 |
| 104 // Tests that calling the view controller delegate method which notifies the | 106 // Tests that calling the view controller delegate method which notifies the |
| 105 // delegate that the user has chosen to return without making a selection | 107 // delegate that the user has chosen to return without making a selection |
| 106 // invokes the coordinator delegate method. | 108 // invokes the coordinator delegate method. |
| 107 TEST(ShippingOptionSelectionCoordinatorTest, DidReturn) { | 109 TEST(ShippingOptionSelectionCoordinatorTest, DidReturn) { |
| 108 std::unique_ptr<PaymentRequest> payment_request = | 110 std::unique_ptr<PaymentRequest> payment_request = |
| 109 payment_request_test_util::CreateTestPaymentRequest(); | 111 payment_request_test_util::CreateTestPaymentRequest(); |
| 110 | 112 |
| 111 UIViewController* base_view_controller = | 113 UIViewController* base_view_controller = [[UIViewController alloc] init]; |
| 112 [[[UIViewController alloc] init] autorelease]; | |
| 113 UINavigationController* navigation_controller = | 114 UINavigationController* navigation_controller = |
| 114 [[[UINavigationController alloc] | 115 [[UINavigationController alloc] |
| 115 initWithRootViewController:base_view_controller] autorelease]; | 116 initWithRootViewController:base_view_controller]; |
| 116 | 117 |
| 117 ShippingOptionSelectionCoordinator* coordinator = | 118 ShippingOptionSelectionCoordinator* coordinator = |
| 118 [[[ShippingOptionSelectionCoordinator alloc] | 119 [[ShippingOptionSelectionCoordinator alloc] |
| 119 initWithBaseViewController:base_view_controller] autorelease]; | 120 initWithBaseViewController:base_view_controller]; |
| 120 [coordinator setPaymentRequest:payment_request.get()]; | 121 [coordinator setPaymentRequest:payment_request.get()]; |
| 121 | 122 |
| 122 // Mock the coordinator delegate. | 123 // Mock the coordinator delegate. |
| 123 id delegate = [OCMockObject | 124 id delegate = [OCMockObject |
| 124 mockForProtocol:@protocol(ShippingOptionSelectionCoordinatorDelegate)]; | 125 mockForProtocol:@protocol(ShippingOptionSelectionCoordinatorDelegate)]; |
| 125 [[delegate expect] shippingOptionSelectionCoordinatorDidReturn:coordinator]; | 126 [[delegate expect] shippingOptionSelectionCoordinatorDidReturn:coordinator]; |
| 126 [coordinator setDelegate:delegate]; | 127 [coordinator setDelegate:delegate]; |
| 127 | 128 |
| 128 EXPECT_EQ(1u, navigation_controller.viewControllers.count); | 129 EXPECT_EQ(1u, navigation_controller.viewControllers.count); |
| 129 | 130 |
| 130 [coordinator start]; | 131 [coordinator start]; |
| 131 // Short delay to allow animation to complete. | 132 // Short delay to allow animation to complete. |
| 132 base::test::ios::SpinRunLoopWithMaxDelay(base::TimeDelta::FromSecondsD(1.0)); | 133 base::test::ios::SpinRunLoopWithMaxDelay(base::TimeDelta::FromSecondsD(1.0)); |
| 133 EXPECT_EQ(2u, navigation_controller.viewControllers.count); | 134 EXPECT_EQ(2u, navigation_controller.viewControllers.count); |
| 134 | 135 |
| 135 // Call the controller delegate method. | 136 // Call the controller delegate method. |
| 136 ShippingOptionSelectionViewController* view_controller = | 137 ShippingOptionSelectionViewController* view_controller = |
| 137 base::mac::ObjCCastStrict<ShippingOptionSelectionViewController>( | 138 base::mac::ObjCCastStrict<ShippingOptionSelectionViewController>( |
| 138 navigation_controller.visibleViewController); | 139 navigation_controller.visibleViewController); |
| 139 [coordinator shippingOptionSelectionViewControllerDidReturn:view_controller]; | 140 [coordinator shippingOptionSelectionViewControllerDidReturn:view_controller]; |
| 140 | 141 |
| 141 EXPECT_OCMOCK_VERIFY(delegate); | 142 EXPECT_OCMOCK_VERIFY(delegate); |
| 142 } | 143 } |
| OLD | NEW |