Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(5976)

Unified Diff: chrome/browser/drive/drive_api_service_unittest.cc

Issue 1190203002: Move (most of) chrome/browser/drive into components/drive/service. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebasing... Created 5 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/browser/drive/drive_api_service.cc ('k') | chrome/browser/drive/drive_api_util.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/drive/drive_api_service_unittest.cc
diff --git a/chrome/browser/drive/drive_api_service_unittest.cc b/chrome/browser/drive/drive_api_service_unittest.cc
deleted file mode 100644
index 44f17cae1ba6f743897c24fe7fea0a0c7f5f7bbb..0000000000000000000000000000000000000000
--- a/chrome/browser/drive/drive_api_service_unittest.cc
+++ /dev/null
@@ -1,79 +0,0 @@
-// Copyright 2015 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 "base/message_loop/message_loop.h"
-#include "base/test/test_simple_task_runner.h"
-#include "chrome/browser/drive/drive_api_service.h"
-#include "google_apis/drive/dummy_auth_service.h"
-#include "google_apis/drive/request_sender.h"
-#include "google_apis/drive/test_util.h"
-#include "net/url_request/url_request_test_util.h"
-#include "testing/gtest/include/gtest/gtest.h"
-
-namespace drive {
-namespace {
-const char kTestUserAgent[] = "test-user-agent";
-}
-
-class TestAuthService : public google_apis::DummyAuthService {
- public:
- void StartAuthentication(
- const google_apis::AuthStatusCallback& callback) override {
- callback_ = callback;
- }
-
- bool HasAccessToken() const override { return false; }
-
- void SendHttpError() {
- ASSERT_FALSE(callback_.is_null());
- callback_.Run(google_apis::HTTP_UNAUTHORIZED, "");
- }
-
- private:
- google_apis::AuthStatusCallback callback_;
-};
-
-TEST(DriveAPIServiceTest, BatchRequestConfiguratorWithAuthFailure) {
- const GURL test_base_url("http://localhost/");
- google_apis::DriveApiUrlGenerator url_generator(test_base_url, test_base_url);
- scoped_refptr<base::TestSimpleTaskRunner> task_runner =
- new base::TestSimpleTaskRunner();
- scoped_refptr<net::TestURLRequestContextGetter> request_context_getter =
- new net::TestURLRequestContextGetter(task_runner.get());
- google_apis::RequestSender sender(new TestAuthService,
- request_context_getter.get(),
- task_runner.get(), kTestUserAgent);
- google_apis::drive::BatchUploadRequest* const request =
- new google_apis::drive::BatchUploadRequest(&sender, url_generator);
- sender.StartRequestWithAuthRetry(request);
- BatchRequestConfigurator configurator(
- request->GetWeakPtrAsBatchUploadRequest(), task_runner.get(),
- url_generator, google_apis::CancelCallback());
- static_cast<TestAuthService*>(sender.auth_service())->SendHttpError();
-
- {
- google_apis::DriveApiErrorCode error = google_apis::HTTP_SUCCESS;
- scoped_ptr<google_apis::FileResource> file_resource;
- configurator.MultipartUploadNewFile(
- "text/plain", 10, "", "title",
- base::FilePath(FILE_PATH_LITERAL("/file")), UploadNewFileOptions(),
- google_apis::test_util::CreateCopyResultCallback(&error,
- &file_resource),
- google_apis::ProgressCallback());
- EXPECT_EQ(google_apis::DRIVE_OTHER_ERROR, error);
- }
- {
- google_apis::DriveApiErrorCode error = google_apis::HTTP_SUCCESS;
- scoped_ptr<google_apis::FileResource> file_resource;
- configurator.MultipartUploadExistingFile(
- "text/plain", 10, "resource_id",
- base::FilePath(FILE_PATH_LITERAL("/file")), UploadExistingFileOptions(),
- google_apis::test_util::CreateCopyResultCallback(&error,
- &file_resource),
- google_apis::ProgressCallback());
- EXPECT_EQ(google_apis::DRIVE_OTHER_ERROR, error);
- }
-}
-
-} // namespace drive
« no previous file with comments | « chrome/browser/drive/drive_api_service.cc ('k') | chrome/browser/drive/drive_api_util.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698