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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
|
// 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.
// This file contains mocks for classes in gdata.h
#ifndef CHROME_BROWSER_CHROMEOS_GDATA_GDATA_MOCK_H_
#define CHROME_BROWSER_CHROMEOS_GDATA_GDATA_MOCK_H_
#pragma once
#include <string>
#include "base/platform_file.h"
#include "base/memory/scoped_ptr.h"
#include "chrome/browser/chromeos/gdata/gdata.h"
#include "chrome/browser/chromeos/gdata/gdata_file_system.h"
#include "testing/gmock/include/gmock/gmock.h"
class FilePath;
namespace gdata {
class MockDocumentsService : public DocumentsServiceInterface {
public:
// DocumentsService is usually owned and created by GDataFileSystem.
MockDocumentsService();
virtual ~MockDocumentsService();
// DocumentServiceInterface overrides.
MOCK_METHOD1(Initialize, void(Profile* profile));
MOCK_CONST_METHOD0(operation_registry, GDataOperationRegistry*());
MOCK_METHOD0(CancelAll, void(void));
MOCK_METHOD1(Authenticate, void(const AuthStatusCallback& callback));
MOCK_METHOD2(GetDocuments, void(const GURL& feed_url,
const GetDataCallback& callback));
MOCK_METHOD1(GetAccountMetadata, void(const GetDataCallback& callback));
MOCK_METHOD2(DeleteDocument, void(const GURL& document_url,
const EntryActionCallback& callback));
MOCK_METHOD4(DownloadDocument, void(const FilePath& virtual_path,
const GURL& content_url,
DocumentExportFormat format,
const DownloadActionCallback& callback));
MOCK_METHOD3(CopyDocument, void(const GURL& document_url,
const FilePath::StringType& new_name,
const GetDataCallback& callback));
MOCK_METHOD3(RenameResource, void(const GURL& resource_url,
const FilePath::StringType& new_name,
const EntryActionCallback& callback));
MOCK_METHOD3(AddResourceToDirectory,
void(const GURL& parent_content_url,
const GURL& resource_url,
const EntryActionCallback& callback));
MOCK_METHOD4(RemoveResourceFromDirectory,
void(const GURL& parent_content_url,
const GURL& resource_url,
const std::string& resource_id,
const EntryActionCallback& callback));
MOCK_METHOD3(CreateDirectory,
void(const GURL& parent_content_url,
const FilePath::StringType& directory_name,
const GetDataCallback& callback));
MOCK_METHOD3(DownloadFile, void(const FilePath& virtual_path,
const GURL& content_url,
const DownloadActionCallback& callback));
MOCK_METHOD2(InitiateUpload,
void(const InitiateUploadParams& upload_file_info,
const InitiateUploadCallback& callback));
MOCK_METHOD2(ResumeUpload, void(const ResumeUploadParams& upload_file_info,
const ResumeUploadCallback& callback));
// Helper stub methods for functions which take callbacks, so that
// the callbacks get called with testable results.
// Will call |callback| with HTTP_SUCCESS and the token "test_auth_token"
// as the token.
void AuthenticateStub(const AuthStatusCallback& callback);
// Will call |callback| with HTTP_SUCCESS and a StringValue with the current
// value of |feed_data_|.
void GetDocumentsStub(const GURL& feed_url,
const GetDataCallback& callback);
// Will call |callback| with HTTP_SUCCESS and a StringValue with the current
// value of |account_metadata_|.
void GetAccountMetadataStub(const GetDataCallback& callback);
// Will call |callback| with HTTP_SUCCESS and the |document_url|.
void DeleteDocumentStub(const GURL& document_url,
const EntryActionCallback& callback);
// Will call |callback| with HTTP_SUCCESS, the given URL, and the host+path
// portion of the URL as the temporary file path.
void DownloadDocumentStub(const FilePath& virtual_path,
const GURL& content_url,
DocumentExportFormat format,
const DownloadActionCallback& callback);
// Will call |callback| with HTTP_SUCCESS and the current value of
// |document_data_|.
void CopyDocumentStub(const GURL& document_url,
const FilePath::StringType& new_name,
const GetDataCallback& callback);
// Will call |callback| with HTTP_SUCCESS and the |document_url|.
void RenameResourceStub(const GURL& document_url,
const FilePath::StringType& new_name,
const EntryActionCallback& callback);
// Will call |callback| with HTTP_SUCCESS and the |resource_url|.
void AddResourceToDirectoryStub(const GURL& parent_content_url,
const GURL& resource_url,
const EntryActionCallback& callback);
// Will call |callback| with HTTP_SUCCESS and the |resource_url|.
void RemoveResourceFromDirectoryStub(const GURL& parent_content_url,
const GURL& resource_url,
const std::string& resource_id,
const EntryActionCallback& callback);
// Will call |callback| with HTTP_SUCCESS and the current value of
// |directory_data_|.
void CreateDirectoryStub(const GURL& parent_content_url,
const FilePath::StringType& directory_name,
const GetDataCallback& callback);
// Will call |callback| with HTTP_SUCCESS, the given URL, and the host+path
// portion of the URL as the temporary file path.
void DownloadFileStub(const FilePath& virtual_path,
const GURL& content_url,
const DownloadActionCallback& callback);
void set_account_metadata(base::Value* account_metadata) {
feed_data_.reset(account_metadata);
}
void set_feed_data(base::Value* feed_data) {
feed_data_.reset(feed_data);
}
void set_directory_data(base::Value* directory_data) {
directory_data_.reset(directory_data);
}
private:
// Account meta data to be returned from GetAccountMetadata.
scoped_ptr<base::Value> account_metadata_;
// Feed data to be returned from GetDocuments.
scoped_ptr<base::Value> feed_data_;
// Feed data to be returned from CreateDirectory.
scoped_ptr<base::Value> directory_data_;
// Feed data to be returned from CopyDocument.
scoped_ptr<base::Value> document_data_;
};
} // namespace gdata
#endif // CHROME_BROWSER_CHROMEOS_GDATA_GDATA_MOCK_H_
|