OLD | NEW |
(Empty) | |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #ifndef CONTENT_TEST_TEST_NAVIGATION_URL_LOADER_DELEGATE_H_ |
| 6 #define CONTENT_TEST_TEST_NAVIGATION_URL_LOADER_DELEGATE_H_ |
| 7 |
| 8 #include "base/macros.h" |
| 9 #include "base/memory/ref_counted.h" |
| 10 #include "base/memory/scoped_ptr.h" |
| 11 #include "base/time/time.h" |
| 12 #include "content/browser/loader/navigation_url_loader_delegate.h" |
| 13 #include "net/url_request/redirect_info.h" |
| 14 |
| 15 namespace base { |
| 16 class RunLoop; |
| 17 } |
| 18 |
| 19 namespace content { |
| 20 |
| 21 class StreamHandle; |
| 22 struct ResourceResponse; |
| 23 |
| 24 // PlzNavigate |
| 25 // Test implementation of NavigationURLLoaderDelegate to monitor navigation |
| 26 // progress in the network stack. |
| 27 class TestNavigationURLLoaderDelegate : public NavigationURLLoaderDelegate { |
| 28 public: |
| 29 TestNavigationURLLoaderDelegate(); |
| 30 ~TestNavigationURLLoaderDelegate() override; |
| 31 |
| 32 const net::RedirectInfo& redirect_info() const { return redirect_info_; } |
| 33 ResourceResponse* redirect_response() const { |
| 34 return redirect_response_.get(); |
| 35 } |
| 36 ResourceResponse* response() const { return response_.get(); } |
| 37 StreamHandle* body() const { return body_.get(); } |
| 38 int net_error() const { return net_error_; } |
| 39 int on_request_handled_counter() const { return on_request_handled_counter_; } |
| 40 |
| 41 // Waits for various navigation events. |
| 42 // Note: if the event already happened, the functions will hang. |
| 43 // TODO(clamy): Make the functions not hang if they are called after the |
| 44 // event happened. |
| 45 void WaitForRequestRedirected(); |
| 46 void WaitForResponseStarted(); |
| 47 void WaitForRequestFailed(); |
| 48 void WaitForRequestStarted(); |
| 49 |
| 50 void ReleaseBody(); |
| 51 |
| 52 // NavigationURLLoaderDelegate implementation. |
| 53 void OnRequestRedirected( |
| 54 const net::RedirectInfo& redirect_info, |
| 55 const scoped_refptr<ResourceResponse>& response) override; |
| 56 void OnResponseStarted(const scoped_refptr<ResourceResponse>& response, |
| 57 scoped_ptr<StreamHandle> body) override; |
| 58 void OnRequestFailed(bool in_cache, int net_error) override; |
| 59 void OnRequestStarted(base::TimeTicks timestamp) override; |
| 60 |
| 61 private: |
| 62 net::RedirectInfo redirect_info_; |
| 63 scoped_refptr<ResourceResponse> redirect_response_; |
| 64 scoped_refptr<ResourceResponse> response_; |
| 65 scoped_ptr<StreamHandle> body_; |
| 66 int net_error_; |
| 67 int on_request_handled_counter_; |
| 68 |
| 69 scoped_ptr<base::RunLoop> request_redirected_; |
| 70 scoped_ptr<base::RunLoop> response_started_; |
| 71 scoped_ptr<base::RunLoop> request_failed_; |
| 72 scoped_ptr<base::RunLoop> request_started_; |
| 73 |
| 74 DISALLOW_COPY_AND_ASSIGN(TestNavigationURLLoaderDelegate); |
| 75 }; |
| 76 |
| 77 } // namespace content |
| 78 |
| 79 #endif // CONTENT_TEST_TEST_NAVIGATION_URL_LOADER_DELEGATE_H |
OLD | NEW |