| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 #ifndef NET_SPDY_SPDY_STREAM_TEST_UTIL_H_ | 5 #ifndef NET_SPDY_SPDY_STREAM_TEST_UTIL_H_ |
| 6 #define NET_SPDY_SPDY_STREAM_TEST_UTIL_H_ | 6 #define NET_SPDY_SPDY_STREAM_TEST_UTIL_H_ |
| 7 | 7 |
| 8 #include "base/compiler_specific.h" | 8 #include "base/compiler_specific.h" |
| 9 #include "base/memory/ref_counted.h" | 9 #include "base/memory/ref_counted.h" |
| 10 #include "base/memory/scoped_ptr.h" | 10 #include "base/memory/scoped_ptr.h" |
| 11 #include "base/strings/string_piece.h" | 11 #include "base/strings/string_piece.h" |
| 12 #include "net/base/io_buffer.h" | 12 #include "net/base/io_buffer.h" |
| 13 #include "net/base/test_completion_callback.h" | 13 #include "net/base/test_completion_callback.h" |
| 14 #include "net/spdy/spdy_read_queue.h" | 14 #include "net/spdy/spdy_read_queue.h" |
| 15 #include "net/spdy/spdy_stream.h" | 15 #include "net/spdy/spdy_stream.h" |
| 16 | 16 |
| 17 namespace net { | 17 namespace net { |
| 18 | 18 |
| 19 namespace test { | 19 namespace test { |
| 20 | 20 |
| 21 // Delegate that calls Close() on |stream_| on OnClose. Used by tests | 21 // Delegate that calls Close() on |stream_| on OnClose. Used by tests |
| 22 // to make sure that such an action is harmless. | 22 // to make sure that such an action is harmless. |
| 23 class ClosingDelegate : public SpdyStream::Delegate { | 23 class ClosingDelegate : public SpdyStream::Delegate { |
| 24 public: | 24 public: |
| 25 explicit ClosingDelegate(const base::WeakPtr<SpdyStream>& stream); | 25 explicit ClosingDelegate(const base::WeakPtr<SpdyStream>& stream); |
| 26 virtual ~ClosingDelegate(); | 26 virtual ~ClosingDelegate(); |
| 27 | 27 |
| 28 // SpdyStream::Delegate implementation. | 28 // SpdyStream::Delegate implementation. |
| 29 virtual void OnRequestHeadersSent() OVERRIDE; | 29 virtual void OnRequestHeadersSent() OVERRIDE; |
| 30 virtual int OnResponseHeadersReceived(const SpdyHeaderBlock& response, | 30 virtual int OnResponseHeadersUpdated( |
| 31 base::Time response_time, | 31 const SpdyHeaderBlock& response_headers) OVERRIDE; |
| 32 int status) OVERRIDE; | |
| 33 virtual int OnDataReceived(scoped_ptr<SpdyBuffer> buffer) OVERRIDE; | 32 virtual int OnDataReceived(scoped_ptr<SpdyBuffer> buffer) OVERRIDE; |
| 34 virtual void OnDataSent() OVERRIDE; | 33 virtual void OnDataSent() OVERRIDE; |
| 35 virtual void OnClose(int status) OVERRIDE; | 34 virtual void OnClose(int status) OVERRIDE; |
| 36 | 35 |
| 37 // Returns whether or not the stream is closed. | 36 // Returns whether or not the stream is closed. |
| 38 bool StreamIsClosed() const { return !stream_.get(); } | 37 bool StreamIsClosed() const { return !stream_.get(); } |
| 39 | 38 |
| 40 private: | 39 private: |
| 41 base::WeakPtr<SpdyStream> stream_; | 40 base::WeakPtr<SpdyStream> stream_; |
| 42 }; | 41 }; |
| 43 | 42 |
| 44 // Base class with shared functionality for test delegate | 43 // Base class with shared functionality for test delegate |
| 45 // implementations below. | 44 // implementations below. |
| 46 class StreamDelegateBase : public SpdyStream::Delegate { | 45 class StreamDelegateBase : public SpdyStream::Delegate { |
| 47 public: | 46 public: |
| 48 explicit StreamDelegateBase(const base::WeakPtr<SpdyStream>& stream); | 47 explicit StreamDelegateBase(const base::WeakPtr<SpdyStream>& stream); |
| 49 virtual ~StreamDelegateBase(); | 48 virtual ~StreamDelegateBase(); |
| 50 | 49 |
| 51 virtual void OnRequestHeadersSent() OVERRIDE; | 50 virtual void OnRequestHeadersSent() OVERRIDE; |
| 52 virtual int OnResponseHeadersReceived(const SpdyHeaderBlock& response, | 51 virtual int OnResponseHeadersUpdated( |
| 53 base::Time response_time, | 52 const SpdyHeaderBlock& response_headers) OVERRIDE; |
| 54 int status) OVERRIDE; | |
| 55 virtual int OnDataReceived(scoped_ptr<SpdyBuffer> buffer) OVERRIDE; | 53 virtual int OnDataReceived(scoped_ptr<SpdyBuffer> buffer) OVERRIDE; |
| 56 virtual void OnDataSent() OVERRIDE; | 54 virtual void OnDataSent() OVERRIDE; |
| 57 virtual void OnClose(int status) OVERRIDE; | 55 virtual void OnClose(int status) OVERRIDE; |
| 58 | 56 |
| 59 // Waits for the stream to be closed and returns the status passed | 57 // Waits for the stream to be closed and returns the status passed |
| 60 // to OnClose(). | 58 // to OnClose(). |
| 61 int WaitForClose(); | 59 int WaitForClose(); |
| 62 | 60 |
| 63 // Drains all data from the underlying read queue and returns it as | 61 // Drains all data from the underlying read queue and returns it as |
| 64 // a string. | 62 // a string. |
| (...skipping 22 matching lines...) Expand all Loading... |
| 87 }; | 85 }; |
| 88 | 86 |
| 89 // Test delegate that does nothing. Used to capture data about the | 87 // Test delegate that does nothing. Used to capture data about the |
| 90 // stream, e.g. its id when it was open. | 88 // stream, e.g. its id when it was open. |
| 91 class StreamDelegateDoNothing : public StreamDelegateBase { | 89 class StreamDelegateDoNothing : public StreamDelegateBase { |
| 92 public: | 90 public: |
| 93 StreamDelegateDoNothing(const base::WeakPtr<SpdyStream>& stream); | 91 StreamDelegateDoNothing(const base::WeakPtr<SpdyStream>& stream); |
| 94 virtual ~StreamDelegateDoNothing(); | 92 virtual ~StreamDelegateDoNothing(); |
| 95 }; | 93 }; |
| 96 | 94 |
| 97 // Test delegate that sends data immediately in OnResponseHeadersReceived(). | 95 // Test delegate that sends data immediately in OnResponseHeadersUpdated(). |
| 98 class StreamDelegateSendImmediate : public StreamDelegateBase { | 96 class StreamDelegateSendImmediate : public StreamDelegateBase { |
| 99 public: | 97 public: |
| 100 // |data| can be NULL. | 98 // |data| can be NULL. |
| 101 StreamDelegateSendImmediate(const base::WeakPtr<SpdyStream>& stream, | 99 StreamDelegateSendImmediate(const base::WeakPtr<SpdyStream>& stream, |
| 102 base::StringPiece data); | 100 base::StringPiece data); |
| 103 virtual ~StreamDelegateSendImmediate(); | 101 virtual ~StreamDelegateSendImmediate(); |
| 104 | 102 |
| 105 virtual int OnResponseHeadersReceived(const SpdyHeaderBlock& response, | 103 virtual int OnResponseHeadersUpdated( |
| 106 base::Time response_time, | 104 const SpdyHeaderBlock& response_headers) OVERRIDE; |
| 107 int status) OVERRIDE; | |
| 108 | 105 |
| 109 private: | 106 private: |
| 110 base::StringPiece data_; | 107 base::StringPiece data_; |
| 111 }; | 108 }; |
| 112 | 109 |
| 113 // Test delegate that sends body data. | 110 // Test delegate that sends body data. |
| 114 class StreamDelegateWithBody : public StreamDelegateBase { | 111 class StreamDelegateWithBody : public StreamDelegateBase { |
| 115 public: | 112 public: |
| 116 StreamDelegateWithBody(const base::WeakPtr<SpdyStream>& stream, | 113 StreamDelegateWithBody(const base::WeakPtr<SpdyStream>& stream, |
| 117 base::StringPiece data); | 114 base::StringPiece data); |
| 118 virtual ~StreamDelegateWithBody(); | 115 virtual ~StreamDelegateWithBody(); |
| 119 | 116 |
| 120 virtual void OnRequestHeadersSent() OVERRIDE; | 117 virtual void OnRequestHeadersSent() OVERRIDE; |
| 121 | 118 |
| 122 private: | 119 private: |
| 123 scoped_refptr<StringIOBuffer> buf_; | 120 scoped_refptr<StringIOBuffer> buf_; |
| 124 }; | 121 }; |
| 125 | 122 |
| 126 } // namespace test | 123 } // namespace test |
| 127 | 124 |
| 128 } // namespace net | 125 } // namespace net |
| 129 | 126 |
| 130 #endif // NET_SPDY_SPDY_STREAM_TEST_UTIL_H_ | 127 #endif // NET_SPDY_SPDY_STREAM_TEST_UTIL_H_ |
| OLD | NEW |