| Index: net/quic/quic_protocol_test.cc
|
| diff --git a/net/quic/quic_protocol_test.cc b/net/quic/quic_protocol_test.cc
|
| deleted file mode 100644
|
| index 646c099fe6267a58ac4efa9ee30783e3a0259d82..0000000000000000000000000000000000000000
|
| --- a/net/quic/quic_protocol_test.cc
|
| +++ /dev/null
|
| @@ -1,170 +0,0 @@
|
| -// Copyright (c) 2012 The Chromium Authors. All rights reserved.
|
| -// Use of this source code is governed by a BSD-style license that can be
|
| -// found in the LICENSE file.
|
| -
|
| -#include "net/quic/quic_protocol.h"
|
| -
|
| -#include "base/stl_util.h"
|
| -#include "testing/gtest/include/gtest/gtest.h"
|
| -
|
| -namespace net {
|
| -namespace test {
|
| -namespace {
|
| -
|
| -TEST(QuicProtocolTest, AdjustErrorForVersion) {
|
| - ASSERT_EQ(8, QUIC_STREAM_LAST_ERROR)
|
| - << "Any additions to QuicRstStreamErrorCode require an addition to "
|
| - << "AdjustErrorForVersion and this associated test.";
|
| -
|
| - // If we ever add different RST codes, we should have a test akin to the
|
| - // following.
|
| - // EXPECT_EQ(QUIC_RST_ACKNOWLEDGEMENT, AdjustErrorForVersion(
|
| - // QUIC_RST_ACKNOWLEDGEMENT,
|
| - // QUIC_VERSION_23));
|
| -}
|
| -
|
| -TEST(QuicProtocolTest, MakeQuicTag) {
|
| - QuicTag tag = MakeQuicTag('A', 'B', 'C', 'D');
|
| - char bytes[4];
|
| - memcpy(bytes, &tag, 4);
|
| - EXPECT_EQ('A', bytes[0]);
|
| - EXPECT_EQ('B', bytes[1]);
|
| - EXPECT_EQ('C', bytes[2]);
|
| - EXPECT_EQ('D', bytes[3]);
|
| -}
|
| -
|
| -TEST(QuicProtocolTest, IsAawaitingPacket) {
|
| - QuicAckFrame ack_frame;
|
| - ack_frame.largest_observed = 10u;
|
| - EXPECT_TRUE(IsAwaitingPacket(ack_frame, 11u));
|
| - EXPECT_FALSE(IsAwaitingPacket(ack_frame, 1u));
|
| -
|
| - ack_frame.missing_packets.insert(10);
|
| - EXPECT_TRUE(IsAwaitingPacket(ack_frame, 10u));
|
| -}
|
| -
|
| -TEST(QuicProtocolTest, InsertMissingPacketsBetween) {
|
| - QuicAckFrame ack_frame;
|
| - InsertMissingPacketsBetween(&ack_frame, 4u, 10u);
|
| - EXPECT_EQ(6u, ack_frame.missing_packets.size());
|
| -
|
| - QuicPacketSequenceNumber i = 4;
|
| - for (SequenceNumberSet::iterator it = ack_frame.missing_packets.begin();
|
| - it != ack_frame.missing_packets.end(); ++it, ++i) {
|
| - EXPECT_EQ(i, *it);
|
| - }
|
| -}
|
| -
|
| -TEST(QuicProtocolTest, QuicVersionToQuicTag) {
|
| - // If you add a new version to the QuicVersion enum you will need to add a new
|
| - // case to QuicVersionToQuicTag, otherwise this test will fail.
|
| -
|
| - // TODO(rtenneti): Enable checking of Log(ERROR) messages.
|
| -#if 0
|
| - // Any logs would indicate an unsupported version which we don't expect.
|
| - ScopedMockLog log(kDoNotCaptureLogsYet);
|
| - EXPECT_CALL(log, Log(_, _, _)).Times(0);
|
| - log.StartCapturingLogs();
|
| -#endif
|
| -
|
| - // Explicitly test a specific version.
|
| - EXPECT_EQ(MakeQuicTag('Q', '0', '2', '3'),
|
| - QuicVersionToQuicTag(QUIC_VERSION_23));
|
| -
|
| - // Loop over all supported versions and make sure that we never hit the
|
| - // default case (i.e. all supported versions should be successfully converted
|
| - // to valid QuicTags).
|
| - for (size_t i = 0; i < arraysize(kSupportedQuicVersions); ++i) {
|
| - QuicVersion version = kSupportedQuicVersions[i];
|
| - EXPECT_LT(0u, QuicVersionToQuicTag(version));
|
| - }
|
| -}
|
| -
|
| -TEST(QuicProtocolTest, QuicVersionToQuicTagUnsupported) {
|
| - // TODO(rtenneti): Enable checking of Log(ERROR) messages.
|
| -#if 0
|
| - // TODO(rjshade): Change to DFATAL once we actually support multiple versions,
|
| - // and QuicConnectionTest::SendVersionNegotiationPacket can be changed to use
|
| - // mis-matched versions rather than relying on QUIC_VERSION_UNSUPPORTED.
|
| - ScopedMockLog log(kDoNotCaptureLogsYet);
|
| - EXPECT_CALL(log, Log(ERROR, _, "Unsupported QuicVersion: 0")).Times(1);
|
| - log.StartCapturingLogs();
|
| -#endif
|
| -
|
| - EXPECT_EQ(0u, QuicVersionToQuicTag(QUIC_VERSION_UNSUPPORTED));
|
| -}
|
| -
|
| -TEST(QuicProtocolTest, QuicTagToQuicVersion) {
|
| - // If you add a new version to the QuicVersion enum you will need to add a new
|
| - // case to QuicTagToQuicVersion, otherwise this test will fail.
|
| -
|
| - // TODO(rtenneti): Enable checking of Log(ERROR) messages.
|
| -#if 0
|
| - // Any logs would indicate an unsupported version which we don't expect.
|
| - ScopedMockLog log(kDoNotCaptureLogsYet);
|
| - EXPECT_CALL(log, Log(_, _, _)).Times(0);
|
| - log.StartCapturingLogs();
|
| -#endif
|
| -
|
| - // Explicitly test specific versions.
|
| - EXPECT_EQ(QUIC_VERSION_23,
|
| - QuicTagToQuicVersion(MakeQuicTag('Q', '0', '2', '3')));
|
| -
|
| - for (size_t i = 0; i < arraysize(kSupportedQuicVersions); ++i) {
|
| - QuicVersion version = kSupportedQuicVersions[i];
|
| -
|
| - // Get the tag from the version (we can loop over QuicVersions easily).
|
| - QuicTag tag = QuicVersionToQuicTag(version);
|
| - EXPECT_LT(0u, tag);
|
| -
|
| - // Now try converting back.
|
| - QuicVersion tag_to_quic_version = QuicTagToQuicVersion(tag);
|
| - EXPECT_EQ(version, tag_to_quic_version);
|
| - EXPECT_NE(QUIC_VERSION_UNSUPPORTED, tag_to_quic_version);
|
| - }
|
| -}
|
| -
|
| -TEST(QuicProtocolTest, QuicTagToQuicVersionUnsupported) {
|
| - // TODO(rtenneti): Enable checking of Log(ERROR) messages.
|
| -#if 0
|
| - ScopedMockLog log(kDoNotCaptureLogsYet);
|
| -#ifndef NDEBUG
|
| - EXPECT_CALL(log, Log(INFO, _, "Unsupported QuicTag version: FAKE")).Times(1);
|
| -#endif
|
| - log.StartCapturingLogs();
|
| -#endif
|
| -
|
| - EXPECT_EQ(QUIC_VERSION_UNSUPPORTED,
|
| - QuicTagToQuicVersion(MakeQuicTag('F', 'A', 'K', 'E')));
|
| -}
|
| -
|
| -TEST(QuicProtocolTest, QuicVersionToString) {
|
| - EXPECT_EQ("QUIC_VERSION_23", QuicVersionToString(QUIC_VERSION_23));
|
| - EXPECT_EQ("QUIC_VERSION_UNSUPPORTED",
|
| - QuicVersionToString(QUIC_VERSION_UNSUPPORTED));
|
| -
|
| - QuicVersion single_version[] = {QUIC_VERSION_23};
|
| - QuicVersionVector versions_vector;
|
| - for (size_t i = 0; i < arraysize(single_version); ++i) {
|
| - versions_vector.push_back(single_version[i]);
|
| - }
|
| - EXPECT_EQ("QUIC_VERSION_23", QuicVersionVectorToString(versions_vector));
|
| -
|
| - QuicVersion multiple_versions[] = {QUIC_VERSION_UNSUPPORTED, QUIC_VERSION_23};
|
| - versions_vector.clear();
|
| - for (size_t i = 0; i < arraysize(multiple_versions); ++i) {
|
| - versions_vector.push_back(multiple_versions[i]);
|
| - }
|
| - EXPECT_EQ("QUIC_VERSION_UNSUPPORTED,QUIC_VERSION_23",
|
| - QuicVersionVectorToString(versions_vector));
|
| -
|
| - // Make sure that all supported versions are present in QuicVersionToString.
|
| - for (size_t i = 0; i < arraysize(kSupportedQuicVersions); ++i) {
|
| - QuicVersion version = kSupportedQuicVersions[i];
|
| - EXPECT_NE("QUIC_VERSION_UNSUPPORTED", QuicVersionToString(version));
|
| - }
|
| -}
|
| -
|
| -} // namespace
|
| -} // namespace test
|
| -} // namespace net
|
|
|