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
|
// Copyright 2014 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.
#include "chrome/browser/sync_file_system/drive_backend/fake_drive_uploader.h"
#include "base/bind.h"
#include "base/location.h"
#include "base/logging.h"
#include "base/message_loop/message_loop.h"
#include "base/thread_task_runner_handle.h"
#include "google_apis/drive/drive_api_parser.h"
#include "testing/gtest/include/gtest/gtest.h"
using drive::FakeDriveService;
using drive::UploadCompletionCallback;
using google_apis::CancelCallback;
using google_apis::FileResource;
using google_apis::FileResourceCallback;
using google_apis::GDataErrorCode;
using google_apis::ProgressCallback;
namespace sync_file_system {
namespace drive_backend {
namespace {
void DidAddFileOrDirectoryForMakingConflict(GDataErrorCode error,
scoped_ptr<FileResource> entry) {
ASSERT_EQ(google_apis::HTTP_CREATED, error);
ASSERT_TRUE(entry);
}
void DidAddFileForUploadNew(
const UploadCompletionCallback& callback,
GDataErrorCode error,
scoped_ptr<FileResource> entry) {
ASSERT_EQ(google_apis::HTTP_CREATED, error);
ASSERT_TRUE(entry);
base::ThreadTaskRunnerHandle::Get()->PostTask(
FROM_HERE,
base::Bind(callback,
google_apis::HTTP_SUCCESS,
GURL(),
base::Passed(&entry)));
}
void DidGetFileResourceForUploadExisting(
const UploadCompletionCallback& callback,
GDataErrorCode error,
scoped_ptr<FileResource> entry) {
base::ThreadTaskRunnerHandle::Get()->PostTask(
FROM_HERE,
base::Bind(callback,
error,
GURL(),
base::Passed(&entry)));
}
} // namespace
FakeDriveServiceWrapper::FakeDriveServiceWrapper()
: make_directory_conflict_(false) {}
FakeDriveServiceWrapper::~FakeDriveServiceWrapper() {}
CancelCallback FakeDriveServiceWrapper::AddNewDirectory(
const std::string& parent_resource_id,
const std::string& directory_name,
const AddNewDirectoryOptions& options,
const FileResourceCallback& callback) {
if (make_directory_conflict_) {
FakeDriveService::AddNewDirectory(
parent_resource_id,
directory_name,
options,
base::Bind(&DidAddFileOrDirectoryForMakingConflict));
}
return FakeDriveService::AddNewDirectory(
parent_resource_id, directory_name, options, callback);
}
FakeDriveUploader::FakeDriveUploader(
FakeDriveServiceWrapper* fake_drive_service)
: fake_drive_service_(fake_drive_service),
make_file_conflict_(false) {}
FakeDriveUploader::~FakeDriveUploader() {}
CancelCallback FakeDriveUploader::UploadNewFile(
const std::string& parent_resource_id,
const base::FilePath& local_file_path,
const std::string& title,
const std::string& content_type,
const UploadNewFileOptions& options,
const UploadCompletionCallback& callback,
const ProgressCallback& progress_callback) {
DCHECK(!callback.is_null());
const std::string kFileContent = "test content";
if (make_file_conflict_) {
fake_drive_service_->AddNewFile(
content_type,
kFileContent,
parent_resource_id,
title,
false, // shared_with_me
base::Bind(&DidAddFileOrDirectoryForMakingConflict));
}
fake_drive_service_->AddNewFile(
content_type,
kFileContent,
parent_resource_id,
title,
false, // shared_with_me
base::Bind(&DidAddFileForUploadNew, callback));
base::MessageLoop::current()->RunUntilIdle();
return CancelCallback();
}
CancelCallback FakeDriveUploader::UploadExistingFile(
const std::string& resource_id,
const base::FilePath& local_file_path,
const std::string& content_type,
const UploadExistingFileOptions& options,
const UploadCompletionCallback& callback,
const ProgressCallback& progress_callback) {
DCHECK(!callback.is_null());
return fake_drive_service_->GetFileResource(
resource_id,
base::Bind(&DidGetFileResourceForUploadExisting, callback));
}
CancelCallback FakeDriveUploader::ResumeUploadFile(
const GURL& upload_location,
const base::FilePath& local_file_path,
const std::string& content_type,
const UploadCompletionCallback& callback,
const ProgressCallback& progress_callback) {
// At the moment, sync file system doesn't support resuming of the uploading.
// So this method shouldn't be reached.
NOTREACHED();
return CancelCallback();
}
} // namespace drive_backend
} // namespace sync_file_system
|