Chromium Code Reviews| Index: ios/chrome/browser/ui/payments/region_data_loader_unittest.mm |
| diff --git a/ios/chrome/browser/ui/payments/region_data_loader_unittest.mm b/ios/chrome/browser/ui/payments/region_data_loader_unittest.mm |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..477ff7582b1387fed7c3e0663ff0cbcf91515d1c |
| --- /dev/null |
| +++ b/ios/chrome/browser/ui/payments/region_data_loader_unittest.mm |
| @@ -0,0 +1,71 @@ |
| +// Copyright 2017 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. |
| + |
| +#import "ios/chrome/browser/ui/payments/region_data_loader.h" |
| + |
| +#include <string> |
| +#include <utility> |
| +#include <vector> |
| + |
| +#include "base/logging.h" |
| +#include "base/strings/sys_string_conversions.h" |
| +#include "components/autofill/core/browser/test_region_data_loader.h" |
| +#include "testing/gtest/include/gtest/gtest.h" |
| +#include "testing/platform_test.h" |
| +#include "third_party/ocmock/OCMock/OCMock.h" |
| +#include "third_party/ocmock/gtest_support.h" |
| + |
| +#if !defined(__has_feature) || !__has_feature(objc_arc) |
| +#error "This file requires ARC support." |
| +#endif |
| + |
| +namespace { |
| +const char kQuebec[] = "Quebec"; |
| +const char kOntario[] = "Ontario"; |
| +} // namespace |
| + |
| +class PaymentRequestRegionDataLoaderTest : public PlatformTest { |
| + protected: |
| + PaymentRequestRegionDataLoaderTest() {} |
|
please use gerrit instead
2017/05/22 14:04:20
~PaymentRequestRegionDataLoaderTest() override {}
Moe
2017/05/22 15:57:53
Done.
|
| + |
| + autofill::TestRegionDataLoader autofill_region_data_loader_; |
| +}; |
| + |
| +// Tests that the two regions returned by the source are correctly returned. |
| +TEST_F(PaymentRequestRegionDataLoaderTest, SourceSuccess) { |
| + // Mock the consumer. |
| + id consumer = |
| + [OCMockObject mockForProtocol:@protocol(RegionDataLoaderConsumer)]; |
| + [[consumer expect] regionDataLoaderDidSucceedWithRegions:@[ |
| + base::SysUTF8ToNSString(kQuebec), base::SysUTF8ToNSString(kOntario) |
| + ]]; |
| + |
| + RegionDataLoader region_data_loader(consumer); |
| + region_data_loader.LoadRegionData("some country", |
| + &autofill_region_data_loader_); |
| + |
| + std::vector<std::pair<std::string, std::string>> regions; |
| + regions.push_back(std::make_pair("QC", kQuebec)); |
| + regions.push_back(std::make_pair("ON", kOntario)); |
| + autofill_region_data_loader_.SendAsynchronousData(regions); |
| + |
| + EXPECT_OCMOCK_VERIFY(consumer); |
| +} |
| + |
| +// Tests that the source emptiness/failure is properly handled. |
| +TEST_F(PaymentRequestRegionDataLoaderTest, SourceFailure) { |
| + // Mock the consumer. |
| + id consumer = |
| + [OCMockObject mockForProtocol:@protocol(RegionDataLoaderConsumer)]; |
| + [[consumer expect] regionDataLoaderDidSucceedWithRegions:@[]]; |
| + |
| + RegionDataLoader region_data_loader(consumer); |
| + region_data_loader.LoadRegionData("some country", |
| + &autofill_region_data_loader_); |
| + |
| + autofill_region_data_loader_.SendAsynchronousData( |
| + std::vector<std::pair<std::string, std::string>>()); |
| + |
| + EXPECT_OCMOCK_VERIFY(consumer); |
| +} |