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

Side by Side Diff: media/blink/buffered_resource_loader_unittest.cc

Issue 495353003: Move WebMediaPlayerImpl and its dependencies to media/blink. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Exclude media/blink from Android GN builds for now like cc/blink does. Created 6 years, 3 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 unified diff | Download patch
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include <algorithm> 5 #include <algorithm>
6 #include <string> 6 #include <string>
7 7
8 #include "base/bind.h" 8 #include "base/bind.h"
9 #include "base/format_macros.h" 9 #include "base/format_macros.h"
10 #include "base/message_loop/message_loop.h" 10 #include "base/message_loop/message_loop.h"
11 #include "base/strings/stringprintf.h" 11 #include "base/strings/stringprintf.h"
12 #include "content/renderer/media/buffered_resource_loader.h"
13 #include "content/test/mock_webframeclient.h"
14 #include "content/test/mock_weburlloader.h"
15 #include "media/base/media_log.h" 12 #include "media/base/media_log.h"
16 #include "media/base/seekable_buffer.h" 13 #include "media/base/seekable_buffer.h"
14 #include "media/blink/buffered_resource_loader.h"
15 #include "media/blink/mock_webframeclient.h"
16 #include "media/blink/mock_weburlloader.h"
17 #include "net/base/net_errors.h" 17 #include "net/base/net_errors.h"
18 #include "net/http/http_request_headers.h" 18 #include "net/http/http_request_headers.h"
19 #include "net/http/http_util.h" 19 #include "net/http/http_util.h"
20 #include "third_party/WebKit/public/platform/WebString.h" 20 #include "third_party/WebKit/public/platform/WebString.h"
21 #include "third_party/WebKit/public/platform/WebURLError.h" 21 #include "third_party/WebKit/public/platform/WebURLError.h"
22 #include "third_party/WebKit/public/platform/WebURLRequest.h" 22 #include "third_party/WebKit/public/platform/WebURLRequest.h"
23 #include "third_party/WebKit/public/platform/WebURLResponse.h" 23 #include "third_party/WebKit/public/platform/WebURLResponse.h"
24 #include "third_party/WebKit/public/web/WebLocalFrame.h" 24 #include "third_party/WebKit/public/web/WebLocalFrame.h"
25 #include "third_party/WebKit/public/web/WebView.h" 25 #include "third_party/WebKit/public/web/WebView.h"
26 26
27 using ::testing::_; 27 using ::testing::_;
28 using ::testing::InSequence; 28 using ::testing::InSequence;
29 using ::testing::Return; 29 using ::testing::Return;
30 using ::testing::Truly; 30 using ::testing::Truly;
31 using ::testing::NiceMock; 31 using ::testing::NiceMock;
32 32
33 using blink::WebLocalFrame; 33 using blink::WebLocalFrame;
34 using blink::WebString; 34 using blink::WebString;
35 using blink::WebURLError; 35 using blink::WebURLError;
36 using blink::WebURLResponse; 36 using blink::WebURLResponse;
37 using blink::WebView; 37 using blink::WebView;
38 38
39 namespace content { 39 namespace media {
40 40
41 static const char* kHttpUrl = "http://test"; 41 static const char* kHttpUrl = "http://test";
42 static const char kHttpRedirectToSameDomainUrl1[] = "http://test/ing"; 42 static const char kHttpRedirectToSameDomainUrl1[] = "http://test/ing";
43 static const char kHttpRedirectToSameDomainUrl2[] = "http://test/ing2"; 43 static const char kHttpRedirectToSameDomainUrl2[] = "http://test/ing2";
44 static const char kHttpRedirectToDifferentDomainUrl1[] = "http://test2"; 44 static const char kHttpRedirectToDifferentDomainUrl1[] = "http://test2";
45 45
46 static const int kDataSize = 1024; 46 static const int kDataSize = 1024;
47 static const int kHttpOK = 200; 47 static const int kHttpOK = 200;
48 static const int kHttpPartialContent = 206; 48 static const int kHttpPartialContent = 206;
49 49
(...skipping 29 matching lines...) Expand all
79 79
80 void Initialize(const char* url, int first_position, int last_position) { 80 void Initialize(const char* url, int first_position, int last_position) {
81 gurl_ = GURL(url); 81 gurl_ = GURL(url);
82 first_position_ = first_position; 82 first_position_ = first_position;
83 last_position_ = last_position; 83 last_position_ = last_position;
84 84
85 loader_.reset(new BufferedResourceLoader( 85 loader_.reset(new BufferedResourceLoader(
86 gurl_, BufferedResourceLoader::kUnspecified, 86 gurl_, BufferedResourceLoader::kUnspecified,
87 first_position_, last_position_, 87 first_position_, last_position_,
88 BufferedResourceLoader::kCapacityDefer, 0, 0, 88 BufferedResourceLoader::kCapacityDefer, 0, 0,
89 new media::MediaLog())); 89 new media::MediaLog()));
scherkus (not reviewing) 2014/09/04 23:00:36 remove media::
acolwell GONE FROM CHROMIUM 2014/09/05 00:23:43 Done.
90 90
91 // |test_loader_| will be used when Start() is called. 91 // |test_loader_| will be used when Start() is called.
92 url_loader_ = new NiceMock<MockWebURLLoader>(); 92 url_loader_ = new NiceMock<MockWebURLLoader>();
93 loader_->test_loader_ = scoped_ptr<blink::WebURLLoader>(url_loader_); 93 loader_->test_loader_ = scoped_ptr<blink::WebURLLoader>(url_loader_);
94 } 94 }
95 95
96 void SetLoaderBuffer(int forward_capacity, int backward_capacity) { 96 void SetLoaderBuffer(int forward_capacity, int backward_capacity) {
97 loader_->buffer_.set_forward_capacity(forward_capacity); 97 loader_->buffer_.set_forward_capacity(forward_capacity);
98 loader_->buffer_.set_backward_capacity(backward_capacity); 98 loader_->buffer_.set_backward_capacity(backward_capacity);
99 loader_->buffer_.Clear(); 99 loader_->buffer_.Clear();
(...skipping 1021 matching lines...) Expand 10 before | Expand all | Expand 10 after
1121 ExpectContentRangeFailure("bytes -300/400"); 1121 ExpectContentRangeFailure("bytes -300/400");
1122 ExpectContentRangeFailure("bytes 20-10/400"); 1122 ExpectContentRangeFailure("bytes 20-10/400");
1123 1123
1124 ExpectContentRangeSuccess("bytes 0-499/500", 0, 499, 500); 1124 ExpectContentRangeSuccess("bytes 0-499/500", 0, 499, 500);
1125 ExpectContentRangeSuccess("bytes 0-0/500", 0, 0, 500); 1125 ExpectContentRangeSuccess("bytes 0-0/500", 0, 0, 500);
1126 ExpectContentRangeSuccess("bytes 10-11/50", 10, 11, 50); 1126 ExpectContentRangeSuccess("bytes 10-11/50", 10, 11, 50);
1127 ExpectContentRangeSuccess("bytes 10-11/*", 10, 11, 1127 ExpectContentRangeSuccess("bytes 10-11/*", 10, 11,
1128 kPositionNotSpecified); 1128 kPositionNotSpecified);
1129 } 1129 }
1130 1130
1131 } // namespace content 1131 } // namespace media
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698