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

Unified Diff: content/browser/background_fetch/background_fetch_job_controller_unittest.cc

Issue 2708943002: Create the BackgroundFetchBatchManager and initiate a download. (Closed)
Patch Set: fixed nits Created 3 years, 10 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
Index: content/browser/background_fetch/background_fetch_job_controller_unittest.cc
diff --git a/content/browser/background_fetch/background_fetch_job_controller_unittest.cc b/content/browser/background_fetch/background_fetch_job_controller_unittest.cc
new file mode 100644
index 0000000000000000000000000000000000000000..ea602d2e24b98d1ebafc977480e84df29865ba65
--- /dev/null
+++ b/content/browser/background_fetch/background_fetch_job_controller_unittest.cc
@@ -0,0 +1,94 @@
+// Copyright 2017 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 "content/browser/background_fetch/background_fetch_job_controller.h"
+
+#include "base/bind_helpers.h"
+#include "base/callback_helpers.h"
+#include "base/memory/ptr_util.h"
+#include "base/run_loop.h"
+#include "content/browser/background_fetch/background_fetch_data_manager.h"
+#include "content/browser/background_fetch/background_fetch_job_info.h"
+#include "content/browser/background_fetch/background_fetch_request_info.h"
+#include "content/public/browser/browser_thread.h"
+#include "content/public/test/mock_download_manager.h"
+#include "content/public/test/test_browser_context.h"
+#include "content/public/test/test_browser_thread_bundle.h"
+#include "testing/gtest/include/gtest/gtest.h"
+
+namespace {
+
+const char kOrigin[] = "https://example.com/";
+const char kJobGuid[] = "TestRequestGuid";
+constexpr int64_t kServiceWorkerRegistrationId = 9001;
+const char kTestUrl[] = "http://www.example.com/example.html";
+const char kTag[] = "testTag";
+
+} // namespace
+
+namespace content {
+
+class BackgroundFetchJobControllerTest : public ::testing::Test {
+ public:
+ BackgroundFetchJobControllerTest()
+ : job_controller_(
+ &browser_context_,
+ BrowserContext::GetDefaultStoragePartition(&browser_context_)),
+ download_manager_(new MockDownloadManager()) {}
+ ~BackgroundFetchJobControllerTest() override = default;
+
+ void SetUp() override {
+ // The download_manager_ ownership is given to the BrowserContext, and the
+ // BrowserContext will take care of deallocating it.
+ BrowserContext::SetDownloadManagerForTesting(&browser_context_,
+ download_manager_);
+ }
+
+ void ProcessJob(const std::string& job_guid,
+ BackgroundFetchJobData* job_data) {
+ base::RunLoop run_loop;
+ BrowserThread::PostTask(
+ BrowserThread::IO, FROM_HERE,
+ base::Bind(&BackgroundFetchJobControllerTest::ProcessJobOnIO,
+ base::Unretained(this), job_guid, job_data,
+ run_loop.QuitClosure()));
+ run_loop.Run();
+ }
+
+ void ProcessJobOnIO(const std::string& job_guid,
+ BackgroundFetchJobData* job_data,
+ const base::Closure& closure) {
+ job_controller_.ProcessJob(job_guid, job_data);
+ BrowserThread::PostTask(BrowserThread::UI, FROM_HERE, closure);
+ }
+
+ BackgroundFetchJobController* job_controller() { return &job_controller_; }
+ MockDownloadManager* download_manager() { return download_manager_; }
+
+ private:
+ TestBrowserThreadBundle thread_bundle_;
+ TestBrowserContext browser_context_;
+ BackgroundFetchJobController job_controller_;
+ MockDownloadManager* download_manager_;
+};
+
+TEST_F(BackgroundFetchJobControllerTest, StartDownload) {
+ BackgroundFetchJobInfo job_info(kTag, url::Origin(GURL(kOrigin)),
+ kServiceWorkerRegistrationId);
+ BackgroundFetchRequestInfo request_info(GURL(kTestUrl), kJobGuid);
+ std::vector<BackgroundFetchRequestInfo> request_infos{request_info};
+
+ // Get a JobData to give to the JobController. The JobController then gets
+ // the BackgroundFetchRequestInfos from the JobData.
+ BackgroundFetchJobData job_data(request_infos);
+
+ EXPECT_CALL(*(download_manager()),
+ DownloadUrlMock(::testing::Pointee(::testing::Property(
+ &DownloadUrlParameters::url, GURL(kTestUrl)))))
+ .Times(1);
+
+ ProcessJob(kJobGuid, &job_data);
+}
+
+} // namespace content

Powered by Google App Engine
This is Rietveld 408576698