summaryrefslogtreecommitdiffstats
path: root/chrome/browser/google_apis/mock_drive_service.h
blob: 8b7b54935d08bbf4458d54b9f34e4e1bb52ef899 (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
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
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
// 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 drive_service_interface.h

#ifndef CHROME_BROWSER_GOOGLE_APIS_MOCK_DRIVE_SERVICE_H_
#define CHROME_BROWSER_GOOGLE_APIS_MOCK_DRIVE_SERVICE_H_

#include <string>

#include "base/memory/scoped_ptr.h"
#include "chrome/browser/google_apis/drive_service_interface.h"
#include "testing/gmock/include/gmock/gmock.h"

namespace base {
class FilePath;
}

namespace google_apis {

class MockDriveService : public DriveServiceInterface {
 public:
  MockDriveService();
  virtual ~MockDriveService();

  // DriveServiceInterface overrides.
  MOCK_METHOD1(Initialize, void(Profile* profile));
  MOCK_METHOD1(AddObserver, void(DriveServiceObserver* observer));
  MOCK_METHOD1(RemoveObserver,
      void(DriveServiceObserver* observer));
  MOCK_CONST_METHOD0(CanStartOperation, bool());
  MOCK_METHOD0(CancelAll, void(void));
  MOCK_METHOD1(CancelForFilePath, bool(const base::FilePath& file_path));
  MOCK_CONST_METHOD0(GetRootResourceId, std::string());
  MOCK_METHOD1(GetAllResourceList,
      void(const GetResourceListCallback& callback));
  MOCK_METHOD2(GetResourceListInDirectory,
      void(const std::string& directory_resource_id,
          const GetResourceListCallback& callback));
  MOCK_METHOD2(Search,
      void(const std::string& search_query,
          const GetResourceListCallback& callback));
  MOCK_METHOD3(SearchByTitle,
      void(const std::string& title,
          const std::string& directory_resource_id,
          const GetResourceListCallback& callback));
  MOCK_METHOD2(GetChangeList,
      void(int64 start_changestamp,
          const GetResourceListCallback& callback));
  MOCK_METHOD2(ContinueGetResourceList,
      void(const GURL& override_url,
          const GetResourceListCallback& callback));
  MOCK_METHOD2(GetResourceEntry,
      void(const std::string& resource_id,
          const GetResourceEntryCallback& callback));
  MOCK_METHOD1(GetAboutResource,
      void(const GetAboutResourceCallback& callback));
  MOCK_METHOD1(GetAppList, void(const GetAppListCallback& callback));
  MOCK_METHOD3(DeleteResource,
      void(const std::string& resource_id,
          const std::string& etag,
          const EntryActionCallback& callback));
  MOCK_METHOD3(CopyHostedDocument,
      void(const std::string& resource_id,
          const std::string& new_name,
          const GetResourceEntryCallback& callback));
  MOCK_METHOD3(RenameResource,
      void(const std::string& resource_id,
          const std::string& new_name,
          const EntryActionCallback& callback));
  MOCK_METHOD3(AddResourceToDirectory,
      void(const std::string& parent_resource_id,
          const std::string& resource_id,
          const EntryActionCallback& callback));
  MOCK_METHOD3(RemoveResourceFromDirectory,
      void(const std::string& parent_resource_id,
          const std::string& resource_id,
          const EntryActionCallback& callback));
  MOCK_METHOD3(AddNewDirectory,
      void(const std::string& parent_resource_id,
          const std::string& directory_name,
          const GetResourceEntryCallback& callback));
  MOCK_METHOD6(
      DownloadFile,
      void(const base::FilePath& virtual_path,
          const base::FilePath& local_cache_path,
          const GURL& download_url,
          const DownloadActionCallback& donwload_action_callback,
          const GetContentCallback& get_content_callback,
          const ProgressCallback& progress_callback));
  MOCK_METHOD6(InitiateUploadNewFile,
      void(const base::FilePath& drive_file_path,
          const std::string& content_type,
          int64 content_length,
          const std::string& parent_resource_id,
          const std::string& title,
          const InitiateUploadCallback& callback));
  MOCK_METHOD6(InitiateUploadExistingFile,
      void(const base::FilePath& drive_file_path,
          const std::string& content_type,
          int64 content_length,
          const std::string& resource_id,
          const std::string& etag,
          const InitiateUploadCallback& callback));
  MOCK_METHOD10(ResumeUpload,
      void(UploadMode upload_mode,
          const base::FilePath& drive_file_path,
          const GURL& upload_url,
          int64 start_position,
          int64 end_position,
          int64 content_length,
          const std::string& content_type,
          const base::FilePath& local_file_path,
          const UploadRangeCallback& callback,
          const ProgressCallback& progress_callback));
  MOCK_METHOD5(GetUploadStatus,
      void(UploadMode upload_mode,
          const base::FilePath& drive_file_path,
          const GURL& upload_url,
          int64 content_length,
          const UploadRangeCallback& callback));
  MOCK_METHOD3(AuthorizeApp,
      void(const std::string& resource_id,
          const std::string& app_id,
          const AuthorizeAppCallback& callback));
  MOCK_CONST_METHOD0(HasAccessToken, bool());
  MOCK_CONST_METHOD0(HasRefreshToken, bool());
  MOCK_METHOD0(ClearAccessToken, void());
  MOCK_METHOD0(ClearRefreshToken, void());

  void set_file_data(std::string* file_data) {
    file_data_.reset(file_data);
  }

 private:
  // Helper stub methods for functions which take callbacks, so that
  // the callbacks get called with testable results.

  // Will call |callback| with HTTP_SUCCESS and a empty ResourceList.
  void GetChangeListStub(int64 start_changestamp,
                         const GetResourceListCallback& callback);

  // Will call |callback| with HTTP_SUCCESS.
  void DeleteResourceStub(const std::string& resource_id,
                          const std::string& etag,
                          const EntryActionCallback& callback);

  // Will call |callback| with HTTP_SUCCESS and the current value of
  // |document_data_|.
  void CopyHostedDocumentStub(const std::string& resource_id,
                              const std::string& new_name,
                              const GetResourceEntryCallback& callback);

  // Will call |callback| with HTTP_SUCCESS.
  void RenameResourceStub(const std::string& resource_id,
                          const std::string& new_name,
                          const EntryActionCallback& callback);

  // Will call |callback| with HTTP_SUCCESS.
  void AddResourceToDirectoryStub(
      const std::string& parent_resource_id,
      const std::string& resource_id,
      const EntryActionCallback& callback);

  // Will call |callback| with HTTP_SUCCESS.
  void RemoveResourceFromDirectoryStub(
      const std::string& parent_resource_id,
      const std::string& resource_id,
      const EntryActionCallback& callback);

  // Will call |callback| with HTTP_SUCCESS and the current value of
  // |directory_data_|.
  void CreateDirectoryStub(const std::string& parent_resource_id,
                           const std::string& directory_name,
                           const GetResourceEntryCallback& callback);

  // Will call |callback| with HTTP_SUCCESS, the given URL, and the host+path
  // portion of the URL as the temporary file path. If |file_data_| is not null,
  // |file_data_| is written to the temporary file.
  void DownloadFileStub(
      const base::FilePath& virtual_path,
      const base::FilePath& local_tmp_path,
      const GURL& download_url,
      const DownloadActionCallback& download_action_callback,
      const GetContentCallback& get_content_callback,
      const ProgressCallback& progress_callback);

  // JSON data to be returned from CreateDirectory.
  scoped_ptr<base::Value> directory_data_;

  // JSON data to be returned from CopyHostedDocument.
  scoped_ptr<base::Value> document_data_;

  // File data to be written to the local temporary file when
  // DownloadFileStub is called.
  scoped_ptr<std::string> file_data_;
};

}  // namespace google_apis

#endif  // CHROME_BROWSER_GOOGLE_APIS_MOCK_DRIVE_SERVICE_H_