[email protected] | 3469ea2 | 2013-09-14 01:24:47 | [diff] [blame] | 1 | // Copyright 2013 The Chromium Authors. All rights reserved. |
[email protected] | 0fbd522 | 2010-06-21 20:54:09 | [diff] [blame] | 2 | // Use of this source code is governed by a BSD-style license that can be |
| 3 | // found in the LICENSE file. |
| 4 | |
[email protected] | 3469ea2 | 2013-09-14 01:24:47 | [diff] [blame] | 5 | #include "content/test/weburl_loader_mock.h" |
[email protected] | 0fbd522 | 2010-06-21 20:54:09 | [diff] [blame] | 6 | |
[email protected] | 1407b6e | 2010-08-27 21:39:48 | [diff] [blame] | 7 | #include "base/logging.h" |
[email protected] | 3469ea2 | 2013-09-14 01:24:47 | [diff] [blame] | 8 | #include "content/test/weburl_loader_mock_factory.h" |
[email protected] | c1088446 | 2013-05-30 00:22:09 | [diff] [blame] | 9 | #include "third_party/WebKit/public/platform/WebData.h" |
| 10 | #include "third_party/WebKit/public/platform/WebURLError.h" |
| 11 | #include "third_party/WebKit/public/platform/WebURLLoaderClient.h" |
[email protected] | 0fbd522 | 2010-06-21 20:54:09 | [diff] [blame] | 12 | |
| 13 | WebURLLoaderMock::WebURLLoaderMock(WebURLLoaderMockFactory* factory, |
| 14 | WebKit::WebURLLoader* default_loader) |
| 15 | : factory_(factory), |
| 16 | client_(NULL), |
| 17 | default_loader_(default_loader), |
[email protected] | 6a712e7c | 2011-12-17 05:26:11 | [diff] [blame] | 18 | using_default_loader_(false), |
| 19 | is_deferred_(false) { |
[email protected] | 0fbd522 | 2010-06-21 20:54:09 | [diff] [blame] | 20 | } |
| 21 | |
| 22 | WebURLLoaderMock::~WebURLLoaderMock() { |
| 23 | } |
| 24 | |
| 25 | void WebURLLoaderMock::ServeAsynchronousRequest( |
| 26 | const WebKit::WebURLResponse& response, |
| 27 | const WebKit::WebData& data, |
| 28 | const WebKit::WebURLError& error) { |
| 29 | DCHECK(!using_default_loader_); |
| 30 | if (!client_) |
| 31 | return; |
| 32 | |
| 33 | client_->didReceiveResponse(this, response); |
[email protected] | 55e82fc8e | 2012-08-03 21:45:29 | [diff] [blame] | 34 | |
| 35 | if (error.reason) { |
| 36 | client_->didFail(this, error); |
| 37 | return; |
| 38 | } |
[email protected] | 780e83b7 | 2011-04-07 13:28:04 | [diff] [blame] | 39 | client_->didReceiveData(this, data.data(), data.size(), data.size()); |
[email protected] | 82d1aa7 | 2010-10-01 18:37:16 | [diff] [blame] | 40 | client_->didFinishLoading(this, 0); |
[email protected] | 0fbd522 | 2010-06-21 20:54:09 | [diff] [blame] | 41 | } |
| 42 | |
[email protected] | 6a712e7c | 2011-12-17 05:26:11 | [diff] [blame] | 43 | WebKit::WebURLRequest WebURLLoaderMock::ServeRedirect( |
| 44 | const WebKit::WebURLResponse& redirectResponse) { |
| 45 | WebKit::WebURLRequest newRequest; |
| 46 | newRequest.initialize(); |
| 47 | GURL redirectURL(redirectResponse.httpHeaderField("Location")); |
| 48 | newRequest.setURL(redirectURL); |
| 49 | client_->willSendRequest(this, newRequest, redirectResponse); |
| 50 | return newRequest; |
| 51 | } |
| 52 | |
[email protected] | 0fbd522 | 2010-06-21 20:54:09 | [diff] [blame] | 53 | void WebURLLoaderMock::loadSynchronously(const WebKit::WebURLRequest& request, |
| 54 | WebKit::WebURLResponse& response, |
| 55 | WebKit::WebURLError& error, |
| 56 | WebKit::WebData& data) { |
| 57 | if (factory_->IsMockedURL(request.url())) { |
| 58 | factory_->LoadSynchronously(request, &response, &error, &data); |
| 59 | return; |
| 60 | } |
[email protected] | 2cf5cd7 | 2013-06-24 06:05:17 | [diff] [blame] | 61 | DCHECK(static_cast<const GURL&>(request.url()).SchemeIs("data")) |
| 62 | << "loadSynchronously shouldn't be falling back: " |
| 63 | << request.url().spec().data(); |
[email protected] | 0fbd522 | 2010-06-21 20:54:09 | [diff] [blame] | 64 | using_default_loader_ = true; |
| 65 | default_loader_->loadSynchronously(request, response, error, data); |
| 66 | } |
| 67 | |
| 68 | void WebURLLoaderMock::loadAsynchronously(const WebKit::WebURLRequest& request, |
| 69 | WebKit::WebURLLoaderClient* client) { |
| 70 | if (factory_->IsMockedURL(request.url())) { |
| 71 | client_ = client; |
| 72 | factory_->LoadAsynchronouly(request, this); |
| 73 | return; |
| 74 | } |
[email protected] | 2cf5cd7 | 2013-06-24 06:05:17 | [diff] [blame] | 75 | DCHECK(static_cast<const GURL&>(request.url()).SchemeIs("data")) |
| 76 | << "loadAsynchronously shouldn't be falling back: " |
| 77 | << request.url().spec().data(); |
[email protected] | 0fbd522 | 2010-06-21 20:54:09 | [diff] [blame] | 78 | using_default_loader_ = true; |
| 79 | default_loader_->loadAsynchronously(request, client); |
| 80 | } |
| 81 | |
| 82 | void WebURLLoaderMock::cancel() { |
| 83 | if (using_default_loader_) { |
| 84 | default_loader_->cancel(); |
| 85 | return; |
| 86 | } |
| 87 | client_ = NULL; |
| 88 | factory_->CancelLoad(this); |
| 89 | } |
| 90 | |
| 91 | void WebURLLoaderMock::setDefersLoading(bool deferred) { |
[email protected] | 6a712e7c | 2011-12-17 05:26:11 | [diff] [blame] | 92 | is_deferred_ = deferred; |
[email protected] | 0fbd522 | 2010-06-21 20:54:09 | [diff] [blame] | 93 | if (using_default_loader_) { |
| 94 | default_loader_->setDefersLoading(deferred); |
| 95 | return; |
| 96 | } |
| 97 | NOTIMPLEMENTED(); |
| 98 | } |