| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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 #ifndef COMPONENTS_AUTOFILL_CONTENT_BROWSER_WALLET_MOCK_WALLET_CLIENT_H_ | 5 #ifndef COMPONENTS_AUTOFILL_CONTENT_BROWSER_WALLET_MOCK_WALLET_CLIENT_H_ |
| 6 #define COMPONENTS_AUTOFILL_CONTENT_BROWSER_WALLET_MOCK_WALLET_CLIENT_H_ | 6 #define COMPONENTS_AUTOFILL_CONTENT_BROWSER_WALLET_MOCK_WALLET_CLIENT_H_ |
| 7 | 7 |
| 8 #include "base/basictypes.h" | 8 #include "base/basictypes.h" |
| 9 #include "base/compiler_specific.h" | 9 #include "base/compiler_specific.h" |
| 10 #include "base/memory/scoped_ptr.h" | 10 #include "base/memory/scoped_ptr.h" |
| 11 #include "components/autofill/content/browser/wallet/instrument.h" | 11 #include "components/autofill/content/browser/wallet/instrument.h" |
| 12 #include "components/autofill/content/browser/wallet/wallet_address.h" | 12 #include "components/autofill/content/browser/wallet/wallet_address.h" |
| 13 #include "components/autofill/content/browser/wallet/wallet_client.h" | 13 #include "components/autofill/content/browser/wallet/wallet_client.h" |
| 14 #include "components/autofill/content/browser/wallet/wallet_items.h" |
| 14 #include "testing/gmock/include/gmock/gmock.h" | 15 #include "testing/gmock/include/gmock/gmock.h" |
| 15 | 16 |
| 16 namespace autofill { | 17 namespace autofill { |
| 17 namespace wallet { | 18 namespace wallet { |
| 18 | 19 |
| 19 // A mock version of WalletClient that never issues real requests, just records | 20 // A mock version of WalletClient that never issues real requests, just records |
| 20 // mock calls to each entry point. | 21 // mock calls to each entry point. |
| 21 class MockWalletClient : public WalletClient { | 22 class MockWalletClient : public WalletClient { |
| 22 public: | 23 public: |
| 23 MockWalletClient(net::URLRequestContextGetter* context, | 24 MockWalletClient(net::URLRequestContextGetter* context, |
| 24 WalletClientDelegate* delegate, | 25 WalletClientDelegate* delegate, |
| 25 const GURL& source_url); | 26 const GURL& source_url); |
| 26 virtual ~MockWalletClient(); | 27 virtual ~MockWalletClient(); |
| 27 | 28 |
| 28 MOCK_METHOD0(GetWalletItems, void()); | 29 MOCK_METHOD0(GetWalletItems, void()); |
| 29 | 30 |
| 30 MOCK_METHOD2(AcceptLegalDocuments, | 31 MOCK_METHOD2(AcceptLegalDocuments, |
| 31 void(const std::vector<WalletItems::LegalDocument*>& documents, | 32 void(const std::vector<WalletItems::LegalDocument*>& documents, |
| 32 const std::string& google_transaction_id)); | 33 const std::string& google_transaction_id)); |
| 33 | 34 |
| 34 MOCK_METHOD2(AuthenticateInstrument, | 35 MOCK_METHOD2(AuthenticateInstrument, |
| 35 void(const std::string& instrument_id, | 36 void(const std::string& instrument_id, |
| 36 const std::string& card_verification_number)); | 37 const std::string& card_verification_number)); |
| 37 | 38 |
| 38 MOCK_METHOD1(GetFullWallet, | 39 MOCK_METHOD1(GetFullWallet, |
| 39 void(const WalletClient::FullWalletRequest& request)); | 40 void(const WalletClient::FullWalletRequest& request)); |
| 40 | 41 |
| 41 // Methods with scoped_ptrs can't be mocked but by using the implementation | 42 // Methods with scoped_ptrs can't be mocked but by using the implementation |
| 42 // below the same effect can be achieved. | 43 // below the same effect can be achieved. |
| 43 virtual void SaveToWallet(scoped_ptr<wallet::Instrument> instrument, | 44 virtual void SaveToWallet( |
| 44 scoped_ptr<wallet::Address> address) OVERRIDE; | 45 scoped_ptr<Instrument> instrument, |
| 46 scoped_ptr<Address> address, |
| 47 const WalletItems::MaskedInstrument* reference_instrument, |
| 48 const Address* reference_address) OVERRIDE; |
| 45 | 49 |
| 46 MOCK_METHOD2(SaveToWalletMock, | 50 MOCK_METHOD4(SaveToWalletMock, |
| 47 void(Instrument* instrument, Address* address)); | 51 void(Instrument* instrument, |
| 52 Address* address, |
| 53 const WalletItems::MaskedInstrument* reference_instrument, |
| 54 const Address* reference_address)); |
| 48 | 55 |
| 49 private: | 56 private: |
| 50 DISALLOW_COPY_AND_ASSIGN(MockWalletClient); | 57 DISALLOW_COPY_AND_ASSIGN(MockWalletClient); |
| 51 }; | 58 }; |
| 52 | 59 |
| 53 } // namespace wallet | 60 } // namespace wallet |
| 54 } // namespace autofill | 61 } // namespace autofill |
| 55 | 62 |
| 56 #endif // COMPONENTS_AUTOFILL_CONTENT_BROWSER_WALLET_MOCK_WALLET_CLIENT_H_ | 63 #endif // COMPONENTS_AUTOFILL_CONTENT_BROWSER_WALLET_MOCK_WALLET_CLIENT_H_ |
| OLD | NEW |