blob: 4035f974165ddcf408e05cdbf76669abc1381cf0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
|
// Copyright (c) 2010 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.
#ifndef CHROME_BROWSER_SYNC_GLUE_SYNC_BACKEND_HOST_MOCK_H__
#define CHROME_BROWSER_SYNC_GLUE_SYNC_BACKEND_HOST_MOCK_H__
#pragma once
#include <set>
#include "chrome/browser/sync/glue/sync_backend_host.h"
#include "base/task.h"
#include "chrome/browser/sync/profile_sync_test_util.h"
#include "chrome/common/notification_type.h"
#include "testing/gmock/include/gmock/gmock.h"
namespace browser_sync {
ACTION(InvokeTask) {
arg1->Run();
delete arg1;
}
class SyncBackendHostMock : public SyncBackendHost {
public:
SyncBackendHostMock() {
// By default, the RequestPause and RequestResume methods will
// send the confirmation notification and return true.
ON_CALL(*this, RequestPause()).
WillByDefault(testing::DoAll(Notify(NotificationType::SYNC_PAUSED),
testing::Return(true)));
ON_CALL(*this, RequestResume()).
WillByDefault(testing::DoAll(Notify(NotificationType::SYNC_RESUMED),
testing::Return(true)));
// By default, invoke the ready callback.
ON_CALL(*this, ConfigureDataTypes(testing::_, testing::_)).
WillByDefault(InvokeTask());
}
MOCK_METHOD2(ConfigureDataTypes,
void(const std::set<syncable::ModelType>&, CancelableTask*));
MOCK_METHOD0(RequestPause, bool());
MOCK_METHOD0(RequestResume, bool());
MOCK_METHOD0(StartSyncingWithServer, void());
};
} // namespace browser_sync
#endif // CHROME_BROWSER_SYNC_GLUE_SYNC_BACKEND_HOST_MOCK_H__
|