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
|
// 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 "chrome/browser/android/download/download_manager_service.h"
#include "base/android/jni_android.h"
#include "base/android/jni_string.h"
#include "base/bind.h"
#include "base/macros.h"
#include "base/message_loop/message_loop.h"
#include "content/public/browser/download_item.h"
#include "content/public/browser/download_manager.h"
#include "content/public/browser/download_url_parameters.h"
#include "content/public/test/mock_download_item.h"
#include "content/public/test/mock_download_manager.h"
#include "testing/gmock/include/gmock/gmock.h"
#include "testing/gtest/include/gtest/gtest.h"
#include "url/origin.h"
using ::testing::_;
namespace content {
class BrowserContext;
class ByteStreamReader;
class DownloadManagerDelegate;
struct DownloadCreateInfo;
}
class DownloadManagerServiceTest : public testing::Test {
public:
DownloadManagerServiceTest()
: service_(
new DownloadManagerService(base::android::AttachCurrentThread(),
nullptr,
&manager_)),
finished_(false),
success_(false) {
ON_CALL(manager_, GetDownload(_))
.WillByDefault(
::testing::Invoke(this, &DownloadManagerServiceTest::GetDownload));
}
void OnResumptionDone(bool success) {
finished_ = true;
success_ = success;
}
void StartDownload(int download_id) {
JNIEnv* env = base::android::AttachCurrentThread();
service_->set_resume_callback_for_testing(base::Bind(
&DownloadManagerServiceTest::OnResumptionDone, base::Unretained(this)));
service_->ResumeDownload(
env, nullptr, download_id,
base::android::ConvertUTF8ToJavaString(env, "test").obj());
while (!finished_)
message_loop_.RunUntilIdle();
}
void CreateDownloadItem(bool can_resume) {
download_.reset(new content::MockDownloadItem());
ON_CALL(*download_, CanResume())
.WillByDefault(::testing::Return(can_resume));
}
protected:
content::DownloadItem* GetDownload(uint32_t) { return download_.get(); }
base::MessageLoop message_loop_;
scoped_ptr<content::MockDownloadItem> download_;
content::MockDownloadManager manager_;
DownloadManagerService* service_;
bool finished_;
bool success_;
DISALLOW_COPY_AND_ASSIGN(DownloadManagerServiceTest);
};
// Test that resumption will fail if no download item is found before times out.
TEST_F(DownloadManagerServiceTest, ResumptionTimeOut) {
StartDownload(1);
EXPECT_FALSE(success_);
}
// Test that resumption succeeds if the download item is found and can be
// resumed.
TEST_F(DownloadManagerServiceTest, ResumptionWithResumableItem) {
CreateDownloadItem(true);
StartDownload(1);
EXPECT_TRUE(success_);
}
// Test that resumption fails if the target download item is not resumable.
TEST_F(DownloadManagerServiceTest, ResumptionWithNonResumableItem) {
CreateDownloadItem(false);
StartDownload(1);
EXPECT_FALSE(success_);
}
|