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

Side by Side Diff: net/tools/quic/end_to_end_test.cc

Issue 412543005: Parameterize the QUIC end-to-end tests to run with FEC both enabled and (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@fix_bug_in_QuicReceivedPacketManager_71390633
Patch Set: Created 6 years, 5 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 | « no previous file | no next file » | 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 #include <stddef.h> 5 #include <stddef.h>
6 #include <string> 6 #include <string>
7 #include <sys/epoll.h> 7 #include <sys/epoll.h>
8 #include <vector> 8 #include <vector>
9 9
10 #include "base/basictypes.h" 10 #include "base/basictypes.h"
(...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after
69 namespace { 69 namespace {
70 70
71 const char* kFooResponseBody = "Artichoke hearts make me happy."; 71 const char* kFooResponseBody = "Artichoke hearts make me happy.";
72 const char* kBarResponseBody = "Palm hearts are pretty delicious, also."; 72 const char* kBarResponseBody = "Palm hearts are pretty delicious, also.";
73 73
74 // Run all tests with the cross products of all versions. 74 // Run all tests with the cross products of all versions.
75 struct TestParams { 75 struct TestParams {
76 TestParams(const QuicVersionVector& client_supported_versions, 76 TestParams(const QuicVersionVector& client_supported_versions,
77 const QuicVersionVector& server_supported_versions, 77 const QuicVersionVector& server_supported_versions,
78 QuicVersion negotiated_version, 78 QuicVersion negotiated_version,
79 bool use_pacing) 79 bool use_pacing,
80 bool use_fec)
80 : client_supported_versions(client_supported_versions), 81 : client_supported_versions(client_supported_versions),
81 server_supported_versions(server_supported_versions), 82 server_supported_versions(server_supported_versions),
82 negotiated_version(negotiated_version), 83 negotiated_version(negotiated_version),
83 use_pacing(use_pacing) { 84 use_pacing(use_pacing),
85 use_fec(use_fec) {
84 } 86 }
85 87
86 friend ostream& operator<<(ostream& os, const TestParams& p) { 88 friend ostream& operator<<(ostream& os, const TestParams& p) {
87 os << "{ server_supported_versions: " 89 os << "{ server_supported_versions: "
88 << QuicVersionVectorToString(p.server_supported_versions); 90 << QuicVersionVectorToString(p.server_supported_versions);
89 os << " client_supported_versions: " 91 os << " client_supported_versions: "
90 << QuicVersionVectorToString(p.client_supported_versions); 92 << QuicVersionVectorToString(p.client_supported_versions);
91 os << " negotiated_version: " << QuicVersionToString(p.negotiated_version); 93 os << " negotiated_version: " << QuicVersionToString(p.negotiated_version);
92 os << " use_pacing: " << p.use_pacing << " }"; 94 os << " use_pacing: " << p.use_pacing;
95 os << " use_fec: " << p.use_fec << " }";
93 return os; 96 return os;
94 } 97 }
95 98
96 QuicVersionVector client_supported_versions; 99 QuicVersionVector client_supported_versions;
97 QuicVersionVector server_supported_versions; 100 QuicVersionVector server_supported_versions;
98 QuicVersion negotiated_version; 101 QuicVersion negotiated_version;
99 bool use_pacing; 102 bool use_pacing;
103 bool use_fec;
100 }; 104 };
101 105
102 // Constructs various test permutations. 106 // Constructs various test permutations.
103 vector<TestParams> GetTestParams() { 107 vector<TestParams> GetTestParams() {
104 vector<TestParams> params; 108 vector<TestParams> params;
105 QuicVersionVector all_supported_versions = QuicSupportedVersions(); 109 QuicVersionVector all_supported_versions = QuicSupportedVersions();
106 for (int use_pacing = 0; use_pacing < 2; ++use_pacing) { 110 for (int use_fec = 0; use_fec < 2; ++use_fec) {
107 // Add an entry for server and client supporting all versions. 111 for (int use_pacing = 0; use_pacing < 2; ++use_pacing) {
108 params.push_back(TestParams(all_supported_versions, 112 // Add an entry for server and client supporting all versions.
109 all_supported_versions, 113 params.push_back(TestParams(all_supported_versions,
110 all_supported_versions[0], 114 all_supported_versions,
111 use_pacing != 0)); 115 all_supported_versions[0],
116 use_pacing != 0,
117 use_fec != 0));
112 118
113 // Test client supporting all versions and server supporting 1 version. 119 // Test client supporting all versions and server supporting 1 version.
114 // Simulate an old server and exercise version downgrade in the client. 120 // Simulate an old server and exercise version downgrade in the client.
115 // Protocol negotiation should occur. Skip the i = 0 case because it is 121 // Protocol negotiation should occur. Skip the i = 0 case because it is
116 // essentially the same as the default case. 122 // essentially the same as the default case.
117 for (size_t i = 1; i < all_supported_versions.size(); ++i) { 123 for (size_t i = 1; i < all_supported_versions.size(); ++i) {
118 QuicVersionVector server_supported_versions; 124 QuicVersionVector server_supported_versions;
119 server_supported_versions.push_back(all_supported_versions[i]); 125 server_supported_versions.push_back(all_supported_versions[i]);
120 if (all_supported_versions[i] >= QUIC_VERSION_18) { 126 if (all_supported_versions[i] >= QUIC_VERSION_18) {
121 // Until flow control is globally rolled out and we remove 127 // Until flow control is globally rolled out and we remove
122 // QUIC_VERSION_16, the server MUST support at least one QUIC version 128 // QUIC_VERSION_16, the server MUST support at least one QUIC version
123 // that does not use flow control. 129 // that does not use flow control.
124 server_supported_versions.push_back(QUIC_VERSION_16); 130 server_supported_versions.push_back(QUIC_VERSION_16);
131 }
132 params.push_back(TestParams(all_supported_versions,
133 server_supported_versions,
134 server_supported_versions[0],
135 use_pacing != 0,
136 use_fec != 0));
125 } 137 }
126 params.push_back(TestParams(all_supported_versions,
127 server_supported_versions,
128 server_supported_versions[0],
129 use_pacing != 0));
130 } 138 }
131 } 139 }
132 return params; 140 return params;
133 } 141 }
134 142
135 class ServerDelegate : public PacketDroppingTestWriter::Delegate { 143 class ServerDelegate : public PacketDroppingTestWriter::Delegate {
136 public: 144 public:
137 explicit ServerDelegate(QuicDispatcher* dispatcher) 145 explicit ServerDelegate(QuicDispatcher* dispatcher)
138 : dispatcher_(dispatcher) {} 146 : dispatcher_(dispatcher) {}
139 virtual ~ServerDelegate() {} 147 virtual ~ServerDelegate() {}
(...skipping 21 matching lines...) Expand all
161 server_started_(false), 169 server_started_(false),
162 strike_register_no_startup_period_(false) { 170 strike_register_no_startup_period_(false) {
163 net::IPAddressNumber ip; 171 net::IPAddressNumber ip;
164 CHECK(net::ParseIPLiteralToNumber("127.0.0.1", &ip)); 172 CHECK(net::ParseIPLiteralToNumber("127.0.0.1", &ip));
165 server_address_ = IPEndPoint(ip, 0); 173 server_address_ = IPEndPoint(ip, 0);
166 174
167 client_supported_versions_ = GetParam().client_supported_versions; 175 client_supported_versions_ = GetParam().client_supported_versions;
168 server_supported_versions_ = GetParam().server_supported_versions; 176 server_supported_versions_ = GetParam().server_supported_versions;
169 negotiated_version_ = GetParam().negotiated_version; 177 negotiated_version_ = GetParam().negotiated_version;
170 FLAGS_enable_quic_pacing = GetParam().use_pacing; 178 FLAGS_enable_quic_pacing = GetParam().use_pacing;
179 FLAGS_enable_quic_fec = GetParam().use_fec;
171 180
172 if (negotiated_version_ >= QUIC_VERSION_19) { 181 if (negotiated_version_ >= QUIC_VERSION_19) {
173 FLAGS_enable_quic_connection_flow_control_2 = true; 182 FLAGS_enable_quic_connection_flow_control_2 = true;
174 } 183 }
175 VLOG(1) << "Using Configuration: " << GetParam(); 184 VLOG(1) << "Using Configuration: " << GetParam();
176 185
177 client_config_.SetDefaults(); 186 client_config_.SetDefaults();
178 server_config_.SetDefaults(); 187 server_config_.SetDefaults();
179 188
180 // Use different flow control windows for client/server. 189 // Use different flow control windows for client/server.
(...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after
250 } 259 }
251 260
252 void set_server_initial_session_flow_control_receive_window(uint32 window) { 261 void set_server_initial_session_flow_control_receive_window(uint32 window) {
253 CHECK(server_thread_.get() == NULL); 262 CHECK(server_thread_.get() == NULL);
254 DLOG(INFO) << "Setting server initial session flow control window: " 263 DLOG(INFO) << "Setting server initial session flow control window: "
255 << window; 264 << window;
256 server_config_.SetInitialSessionFlowControlWindowToSend(window); 265 server_config_.SetInitialSessionFlowControlWindowToSend(window);
257 } 266 }
258 267
259 bool Initialize() { 268 bool Initialize() {
269 if (GetParam().use_fec) {
270 // Set FEC config in client's connection options and in client session.
271 QuicTagVector copt;
272 copt.push_back(kFHDR);
273 client_config_.SetConnectionOptionsToSend(copt);
274 }
260 // Start the server first, because CreateQuicClient() attempts 275 // Start the server first, because CreateQuicClient() attempts
261 // to connect to the server. 276 // to connect to the server.
262 StartServer(); 277 StartServer();
263 client_.reset(CreateQuicClient(client_writer_)); 278 client_.reset(CreateQuicClient(client_writer_));
279 if (GetParam().use_fec) {
280 // Set FecPolicy to always protect data on all streams.
281 client_->SetFecPolicy(FEC_PROTECT_ALWAYS);
282 }
264 static EpollEvent event(EPOLLOUT, false); 283 static EpollEvent event(EPOLLOUT, false);
265 client_writer_->Initialize( 284 client_writer_->Initialize(
266 reinterpret_cast<QuicEpollConnectionHelper*>( 285 reinterpret_cast<QuicEpollConnectionHelper*>(
267 QuicConnectionPeer::GetHelper( 286 QuicConnectionPeer::GetHelper(
268 client_->client()->session()->connection())), 287 client_->client()->session()->connection())),
269 new ClientDelegate(client_->client())); 288 new ClientDelegate(client_->client()));
270 return client_->client()->connected(); 289 return client_->client()->connected();
271 } 290 }
272 291
273 virtual void SetUp() OVERRIDE { 292 virtual void SetUp() OVERRIDE {
(...skipping 387 matching lines...) Expand 10 before | Expand all | Expand 10 after
661 // Otherwise it may have queued frames which will trigger a 680 // Otherwise it may have queued frames which will trigger a
662 // DFATAL when they are serialized after the downgrade. 681 // DFATAL when they are serialized after the downgrade.
663 client_->client()->WaitForCryptoHandshakeConfirmed(); 682 client_->client()->WaitForCryptoHandshakeConfirmed();
664 } 683 }
665 ASSERT_TRUE(client_->client()->connected()); 684 ASSERT_TRUE(client_->client()->connected());
666 EXPECT_EQ(kFooResponseBody, client_->SendCustomSynchronousRequest(request)); 685 EXPECT_EQ(kFooResponseBody, client_->SendCustomSynchronousRequest(request));
667 EXPECT_EQ(2, client_->client()->session()->GetNumSentClientHellos()); 686 EXPECT_EQ(2, client_->client()->session()->GetNumSentClientHellos());
668 VerifyCleanConnection(false); 687 VerifyCleanConnection(false);
669 } 688 }
670 689
671 TEST_P(EndToEndTest, LargePostFec) { 690 TEST_P(EndToEndTest, CorrectlyConfiguredFec) {
672 ValueRestore<bool> old_flag(&FLAGS_enable_quic_fec, true);
673
674 // Connect without packet loss to avoid issues with losing handshake packets,
675 // and then up the packet loss rate (b/10126687).
676 ASSERT_TRUE(Initialize());
677
678 // Wait for the server SHLO before upping the packet loss.
679 client_->client()->WaitForCryptoHandshakeConfirmed();
680 SetPacketLossPercentage(30);
681
682 // Verify that FEC is enabled.
683 QuicPacketCreator* creator = QuicConnectionPeer::GetPacketCreator(
684 client_->client()->session()->connection());
685 EXPECT_TRUE(creator->IsFecEnabled());
686
687 // Set FecPolicy to always protect data on all streams.
688 client_->SetFecPolicy(FEC_PROTECT_ALWAYS);
689
690 string body;
691 GenerateBody(&body, 10240);
692
693 HTTPMessage request(HttpConstants::HTTP_1_1,
694 HttpConstants::POST, "/foo");
695 request.AddBody(body, true);
696 EXPECT_EQ(kFooResponseBody, client_->SendCustomSynchronousRequest(request));
697 VerifyCleanConnection(true);
698 }
699
700 TEST_P(EndToEndTest, ClientSpecifiedFecProtectionForHeaders) {
701 ValueRestore<bool> old_flag(&FLAGS_enable_quic_fec, true);
702
703 // Set FEC config in client's connection options and in client session.
704 QuicTagVector copt;
705 copt.push_back(kFHDR);
706 client_config_.SetConnectionOptionsToSend(copt);
707
708 // Connect without packet loss to avoid issues with losing handshake packets,
709 // and then up the packet loss rate (b/10126687).
710 ASSERT_TRUE(Initialize()); 691 ASSERT_TRUE(Initialize());
711 client_->client()->WaitForCryptoHandshakeConfirmed(); 692 client_->client()->WaitForCryptoHandshakeConfirmed();
712 server_thread_->WaitForCryptoHandshakeConfirmed(); 693 server_thread_->WaitForCryptoHandshakeConfirmed();
713 694
714 // Verify that FEC is enabled. 695 FecPolicy expected_policy =
715 QuicPacketCreator* creator = QuicConnectionPeer::GetPacketCreator( 696 GetParam().use_fec ? FEC_PROTECT_ALWAYS : FEC_PROTECT_OPTIONAL;
716 client_->client()->session()->connection());
717 EXPECT_TRUE(creator->IsFecEnabled());
718 697
719 // Verify that server headers stream is FEC protected. 698 // Verify that server's FEC configuration is correct.
720 server_thread_->Pause(); 699 server_thread_->Pause();
721 QuicDispatcher* dispatcher = 700 QuicDispatcher* dispatcher =
722 QuicServerPeer::GetDispatcher(server_thread_->server()); 701 QuicServerPeer::GetDispatcher(server_thread_->server());
723 ASSERT_EQ(1u, dispatcher->session_map().size()); 702 ASSERT_EQ(1u, dispatcher->session_map().size());
724 QuicSession* session = dispatcher->session_map().begin()->second; 703 QuicSession* session = dispatcher->session_map().begin()->second;
725 EXPECT_EQ(FEC_PROTECT_ALWAYS, 704 EXPECT_EQ(expected_policy,
726 QuicSessionPeer::GetHeadersStream(session)->fec_policy()); 705 QuicSessionPeer::GetHeadersStream(session)->fec_policy());
727 server_thread_->Resume(); 706 server_thread_->Resume();
728 707
729 // Verify that at the client, headers stream is protected and other data 708 // Verify that client's FEC configuration is correct.
730 // streams are optionally protected. 709 EXPECT_EQ(expected_policy,
731 EXPECT_EQ(FEC_PROTECT_ALWAYS, QuicSessionPeer::GetHeadersStream( 710 QuicSessionPeer::GetHeadersStream(
732 client_->client()->session())->fec_policy()); 711 client_->client()->session())->fec_policy());
733 EXPECT_EQ(FEC_PROTECT_OPTIONAL, client_->GetOrCreateStream()->fec_policy()); 712 EXPECT_EQ(expected_policy,
713 client_->GetOrCreateStream()->fec_policy());
734 } 714 }
735 715
736 // TODO(shess): This is flaky on ChromiumOS bots. 716 // TODO(shess): This is flaky on ChromiumOS bots.
737 // http://crbug.com/374871 717 // http://crbug.com/374871
738 TEST_P(EndToEndTest, DISABLED_LargePostSmallBandwidthLargeBuffer) { 718 TEST_P(EndToEndTest, DISABLED_LargePostSmallBandwidthLargeBuffer) {
739 ASSERT_TRUE(Initialize()); 719 ASSERT_TRUE(Initialize());
740 SetPacketSendDelay(QuicTime::Delta::FromMicroseconds(1)); 720 SetPacketSendDelay(QuicTime::Delta::FromMicroseconds(1));
741 // 256KB per second with a 256KB buffer from server to client. Wireless 721 // 256KB per second with a 256KB buffer from server to client. Wireless
742 // clients commonly have larger buffers, but our max CWND is 200. 722 // clients commonly have larger buffers, but our max CWND is 200.
743 server_writer_->set_max_bandwidth_and_buffer_size( 723 server_writer_->set_max_bandwidth_and_buffer_size(
(...skipping 580 matching lines...) Expand 10 before | Expand all | Expand 10 after
1324 session->flow_controller(); 1304 session->flow_controller();
1325 EXPECT_EQ(kSessionIFCW, QuicFlowControllerPeer::ReceiveWindowSize( 1305 EXPECT_EQ(kSessionIFCW, QuicFlowControllerPeer::ReceiveWindowSize(
1326 server_connection_flow_controller)); 1306 server_connection_flow_controller));
1327 server_thread_->Resume(); 1307 server_thread_->Resume();
1328 } 1308 }
1329 1309
1330 } // namespace 1310 } // namespace
1331 } // namespace test 1311 } // namespace test
1332 } // namespace tools 1312 } // namespace tools
1333 } // namespace net 1313 } // namespace net
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698