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

Side by Side Diff: net/spdy/spdy_stream_test_util.h

Issue 667923003: Standardize usage of virtual/override/final in net/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 2 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
« no previous file with comments | « net/spdy/spdy_stream.cc ('k') | net/spdy/spdy_test_util_common.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 ~ClosingDelegate() override;
27 27
28 // SpdyStream::Delegate implementation. 28 // SpdyStream::Delegate implementation.
29 virtual void OnRequestHeadersSent() override; 29 void OnRequestHeadersSent() override;
30 virtual SpdyResponseHeadersStatus OnResponseHeadersUpdated( 30 SpdyResponseHeadersStatus OnResponseHeadersUpdated(
31 const SpdyHeaderBlock& response_headers) override; 31 const SpdyHeaderBlock& response_headers) override;
32 virtual void OnDataReceived(scoped_ptr<SpdyBuffer> buffer) override; 32 void OnDataReceived(scoped_ptr<SpdyBuffer> buffer) override;
33 virtual void OnDataSent() override; 33 void OnDataSent() override;
34 virtual void OnClose(int status) override; 34 void OnClose(int status) override;
35 35
36 // Returns whether or not the stream is closed. 36 // Returns whether or not the stream is closed.
37 bool StreamIsClosed() const { return !stream_.get(); } 37 bool StreamIsClosed() const { return !stream_.get(); }
38 38
39 private: 39 private:
40 base::WeakPtr<SpdyStream> stream_; 40 base::WeakPtr<SpdyStream> stream_;
41 }; 41 };
42 42
43 // Base class with shared functionality for test delegate 43 // Base class with shared functionality for test delegate
44 // implementations below. 44 // implementations below.
45 class StreamDelegateBase : public SpdyStream::Delegate { 45 class StreamDelegateBase : public SpdyStream::Delegate {
46 public: 46 public:
47 explicit StreamDelegateBase(const base::WeakPtr<SpdyStream>& stream); 47 explicit StreamDelegateBase(const base::WeakPtr<SpdyStream>& stream);
48 virtual ~StreamDelegateBase(); 48 ~StreamDelegateBase() override;
49 49
50 virtual void OnRequestHeadersSent() override; 50 void OnRequestHeadersSent() override;
51 virtual SpdyResponseHeadersStatus OnResponseHeadersUpdated( 51 SpdyResponseHeadersStatus OnResponseHeadersUpdated(
52 const SpdyHeaderBlock& response_headers) override; 52 const SpdyHeaderBlock& response_headers) override;
53 virtual void OnDataReceived(scoped_ptr<SpdyBuffer> buffer) override; 53 void OnDataReceived(scoped_ptr<SpdyBuffer> buffer) override;
54 virtual void OnDataSent() override; 54 void OnDataSent() override;
55 virtual void OnClose(int status) override; 55 void OnClose(int status) override;
56 56
57 // 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
58 // to OnClose(). 58 // to OnClose().
59 int WaitForClose(); 59 int WaitForClose();
60 60
61 // 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
62 // a string. 62 // a string.
63 std::string TakeReceivedData(); 63 std::string TakeReceivedData();
64 64
65 // Returns whether or not the stream is closed. 65 // Returns whether or not the stream is closed.
(...skipping 16 matching lines...) Expand all
82 bool send_headers_completed_; 82 bool send_headers_completed_;
83 SpdyHeaderBlock response_headers_; 83 SpdyHeaderBlock response_headers_;
84 SpdyReadQueue received_data_queue_; 84 SpdyReadQueue received_data_queue_;
85 }; 85 };
86 86
87 // Test delegate that does nothing. Used to capture data about the 87 // Test delegate that does nothing. Used to capture data about the
88 // stream, e.g. its id when it was open. 88 // stream, e.g. its id when it was open.
89 class StreamDelegateDoNothing : public StreamDelegateBase { 89 class StreamDelegateDoNothing : public StreamDelegateBase {
90 public: 90 public:
91 StreamDelegateDoNothing(const base::WeakPtr<SpdyStream>& stream); 91 StreamDelegateDoNothing(const base::WeakPtr<SpdyStream>& stream);
92 virtual ~StreamDelegateDoNothing(); 92 ~StreamDelegateDoNothing() override;
93 }; 93 };
94 94
95 // Test delegate that sends data immediately in OnResponseHeadersUpdated(). 95 // Test delegate that sends data immediately in OnResponseHeadersUpdated().
96 class StreamDelegateSendImmediate : public StreamDelegateBase { 96 class StreamDelegateSendImmediate : public StreamDelegateBase {
97 public: 97 public:
98 // |data| can be NULL. 98 // |data| can be NULL.
99 StreamDelegateSendImmediate(const base::WeakPtr<SpdyStream>& stream, 99 StreamDelegateSendImmediate(const base::WeakPtr<SpdyStream>& stream,
100 base::StringPiece data); 100 base::StringPiece data);
101 virtual ~StreamDelegateSendImmediate(); 101 ~StreamDelegateSendImmediate() override;
102 102
103 virtual SpdyResponseHeadersStatus OnResponseHeadersUpdated( 103 SpdyResponseHeadersStatus OnResponseHeadersUpdated(
104 const SpdyHeaderBlock& response_headers) override; 104 const SpdyHeaderBlock& response_headers) override;
105 105
106 private: 106 private:
107 base::StringPiece data_; 107 base::StringPiece data_;
108 }; 108 };
109 109
110 // Test delegate that sends body data. 110 // Test delegate that sends body data.
111 class StreamDelegateWithBody : public StreamDelegateBase { 111 class StreamDelegateWithBody : public StreamDelegateBase {
112 public: 112 public:
113 StreamDelegateWithBody(const base::WeakPtr<SpdyStream>& stream, 113 StreamDelegateWithBody(const base::WeakPtr<SpdyStream>& stream,
114 base::StringPiece data); 114 base::StringPiece data);
115 virtual ~StreamDelegateWithBody(); 115 ~StreamDelegateWithBody() override;
116 116
117 virtual void OnRequestHeadersSent() override; 117 void OnRequestHeadersSent() override;
118 118
119 private: 119 private:
120 scoped_refptr<StringIOBuffer> buf_; 120 scoped_refptr<StringIOBuffer> buf_;
121 }; 121 };
122 122
123 // Test delegate that closes stream in OnResponseHeadersUpdated(). 123 // Test delegate that closes stream in OnResponseHeadersUpdated().
124 class StreamDelegateCloseOnHeaders : public StreamDelegateBase { 124 class StreamDelegateCloseOnHeaders : public StreamDelegateBase {
125 public: 125 public:
126 StreamDelegateCloseOnHeaders(const base::WeakPtr<SpdyStream>& stream); 126 StreamDelegateCloseOnHeaders(const base::WeakPtr<SpdyStream>& stream);
127 virtual ~StreamDelegateCloseOnHeaders(); 127 ~StreamDelegateCloseOnHeaders() override;
128 128
129 virtual SpdyResponseHeadersStatus OnResponseHeadersUpdated( 129 SpdyResponseHeadersStatus OnResponseHeadersUpdated(
130 const SpdyHeaderBlock& response_headers) override; 130 const SpdyHeaderBlock& response_headers) override;
131 }; 131 };
132 132
133 } // namespace test 133 } // namespace test
134 134
135 } // namespace net 135 } // namespace net
136 136
137 #endif // NET_SPDY_SPDY_STREAM_TEST_UTIL_H_ 137 #endif // NET_SPDY_SPDY_STREAM_TEST_UTIL_H_
OLDNEW
« no previous file with comments | « net/spdy/spdy_stream.cc ('k') | net/spdy/spdy_test_util_common.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698