blob: 32f61b0ba32f9065d16282ceedea911baa450705 (
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
|
// Copyright (c) 2012 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_ABSTRACT_PROFILE_SYNC_SERVICE_TEST_H_
#define CHROME_BROWSER_SYNC_ABSTRACT_PROFILE_SYNC_SERVICE_TEST_H_
#include <string>
#include "base/callback.h"
#include "base/compiler_specific.h"
#include "base/memory/scoped_ptr.h"
#include "base/message_loop.h"
#include "chrome/browser/signin/token_service.h"
#include "chrome/browser/sync/profile_sync_components_factory_mock.h"
#include "content/public/test/test_browser_thread.h"
#include "sync/internal_api/public/base/model_type.h"
#include "sync/internal_api/public/change_record.h"
#include "testing/gtest/include/gtest/gtest.h"
class ProfileSyncService;
class TestProfileSyncService;
namespace syncer {
class TestIdFactory;
} // namespace syncer
namespace syncer {
struct UserShare;
} // namespace syncer
class ProfileSyncServiceTestHelper {
public:
static const std::string GetTagForType(syncer::ModelType model_type);
static bool CreateRoot(syncer::ModelType model_type,
syncer::UserShare* service,
syncer::TestIdFactory* ids);
static syncer::ImmutableChangeRecordList MakeSingletonChangeRecordList(
int64 node_id, syncer::ChangeRecord::Action action);
// Deletions must provide an EntitySpecifics for the deleted data.
static syncer::ImmutableChangeRecordList
MakeSingletonDeletionChangeRecordList(
int64 node_id,
const sync_pb::EntitySpecifics& specifics);
};
class AbstractProfileSyncServiceTest : public testing::Test {
public:
AbstractProfileSyncServiceTest();
virtual ~AbstractProfileSyncServiceTest();
virtual void SetUp() OVERRIDE;
virtual void TearDown() OVERRIDE;
bool CreateRoot(syncer::ModelType model_type);
static ProfileKeyedService* BuildTokenService(Profile* profile);
protected:
MessageLoopForUI ui_loop_;
content::TestBrowserThread ui_thread_;
content::TestBrowserThread db_thread_;
content::TestBrowserThread file_thread_;
content::TestBrowserThread io_thread_;
TokenService* token_service_;
scoped_ptr<TestProfileSyncService> service_;
};
class CreateRootHelper {
public:
CreateRootHelper(AbstractProfileSyncServiceTest* test,
syncer::ModelType model_type);
virtual ~CreateRootHelper();
const base::Closure& callback() const;
bool success();
private:
void CreateRootCallback();
base::Closure callback_;
AbstractProfileSyncServiceTest* test_;
syncer::ModelType model_type_;
bool success_;
};
#endif // CHROME_BROWSER_SYNC_ABSTRACT_PROFILE_SYNC_SERVICE_TEST_H_
|