| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 // Mock ServerConnectionManager class for use in client unit tests. | 5 // Mock ServerConnectionManager class for use in client unit tests. |
| 6 | 6 |
| 7 #ifndef SYNC_TEST_ENGINE_MOCK_CONNECTION_MANAGER_H_ | 7 #ifndef SYNC_TEST_ENGINE_MOCK_CONNECTION_MANAGER_H_ |
| 8 #define SYNC_TEST_ENGINE_MOCK_CONNECTION_MANAGER_H_ | 8 #define SYNC_TEST_ENGINE_MOCK_CONNECTION_MANAGER_H_ |
| 9 #pragma once | 9 #pragma once |
| 10 | 10 |
| 11 #include <bitset> | 11 #include <bitset> |
| 12 #include <list> | 12 #include <list> |
| 13 #include <string> | 13 #include <string> |
| 14 #include <vector> | 14 #include <vector> |
| 15 | 15 |
| 16 #include "base/callback.h" | 16 #include "base/callback.h" |
| 17 #include "base/compiler_specific.h" | 17 #include "base/compiler_specific.h" |
| 18 #include "base/memory/scoped_vector.h" | 18 #include "base/memory/scoped_vector.h" |
| 19 #include "sync/engine/net/server_connection_manager.h" | 19 #include "sync/engine/net/server_connection_manager.h" |
| 20 #include "sync/internal_api/public/syncable/model_type.h" | 20 #include "sync/internal_api/public/syncable/model_type.h" |
| 21 #include "sync/internal_api/public/syncable/model_type_payload_map.h" | 21 #include "sync/internal_api/public/syncable/model_type_payload_map.h" |
| 22 #include "sync/protocol/sync.pb.h" | 22 #include "sync/protocol/sync.pb.h" |
| 23 | 23 |
| 24 class MockConnectionManager : public csync::ServerConnectionManager { | 24 class MockConnectionManager : public syncer::ServerConnectionManager { |
| 25 public: | 25 public: |
| 26 class MidCommitObserver { | 26 class MidCommitObserver { |
| 27 public: | 27 public: |
| 28 virtual void Observe() = 0; | 28 virtual void Observe() = 0; |
| 29 | 29 |
| 30 protected: | 30 protected: |
| 31 virtual ~MidCommitObserver() {} | 31 virtual ~MidCommitObserver() {} |
| 32 }; | 32 }; |
| 33 | 33 |
| 34 explicit MockConnectionManager(syncable::Directory*); | 34 explicit MockConnectionManager(syncable::Directory*); |
| 35 virtual ~MockConnectionManager(); | 35 virtual ~MockConnectionManager(); |
| 36 | 36 |
| 37 // Overridden ServerConnectionManager functions. | 37 // Overridden ServerConnectionManager functions. |
| 38 virtual bool PostBufferToPath( | 38 virtual bool PostBufferToPath( |
| 39 PostBufferParams*, | 39 PostBufferParams*, |
| 40 const std::string& path, | 40 const std::string& path, |
| 41 const std::string& auth_token, | 41 const std::string& auth_token, |
| 42 csync::ScopedServerStatusWatcher* watcher) OVERRIDE; | 42 syncer::ScopedServerStatusWatcher* watcher) OVERRIDE; |
| 43 | 43 |
| 44 // Control of commit response. | 44 // Control of commit response. |
| 45 // NOTE: Commit callback is invoked only once then reset. | 45 // NOTE: Commit callback is invoked only once then reset. |
| 46 void SetMidCommitCallback(const base::Closure& callback); | 46 void SetMidCommitCallback(const base::Closure& callback); |
| 47 void SetMidCommitObserver(MidCommitObserver* observer); | 47 void SetMidCommitObserver(MidCommitObserver* observer); |
| 48 | 48 |
| 49 // Set this if you want commit to perform commit time rename. Will request | 49 // Set this if you want commit to perform commit time rename. Will request |
| 50 // that the client renames all commited entries, prepending this string. | 50 // that the client renames all commited entries, prepending this string. |
| 51 void SetCommitTimeRename(std::string prepend); | 51 void SetCommitTimeRename(std::string prepend); |
| 52 | 52 |
| (...skipping 289 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 342 int num_get_updates_requests_; | 342 int num_get_updates_requests_; |
| 343 | 343 |
| 344 std::string next_token_; | 344 std::string next_token_; |
| 345 | 345 |
| 346 sync_pb::ClientToServerMessage last_request_; | 346 sync_pb::ClientToServerMessage last_request_; |
| 347 | 347 |
| 348 DISALLOW_COPY_AND_ASSIGN(MockConnectionManager); | 348 DISALLOW_COPY_AND_ASSIGN(MockConnectionManager); |
| 349 }; | 349 }; |
| 350 | 350 |
| 351 #endif // SYNC_TEST_ENGINE_MOCK_CONNECTION_MANAGER_H_ | 351 #endif // SYNC_TEST_ENGINE_MOCK_CONNECTION_MANAGER_H_ |
| OLD | NEW |