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 #include <algorithm> | 5 #include <algorithm> |
6 #include <iostream> | 6 #include <iostream> |
7 #include <limits> | 7 #include <limits> |
8 | 8 |
9 #include "base/compiler_specific.h" | 9 #include "base/compiler_specific.h" |
10 #include "base/memory/scoped_ptr.h" | 10 #include "base/memory/scoped_ptr.h" |
(...skipping 5311 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
5322 EXPECT_EQ("protocolid", visitor.test_altsvc_ir_.protocol_id()); | 5322 EXPECT_EQ("protocolid", visitor.test_altsvc_ir_.protocol_id()); |
5323 EXPECT_EQ("hostname", visitor.test_altsvc_ir_.host()); | 5323 EXPECT_EQ("hostname", visitor.test_altsvc_ir_.host()); |
5324 } | 5324 } |
5325 | 5325 |
5326 // Tests handling of PRIORITY frames. | 5326 // Tests handling of PRIORITY frames. |
5327 TEST_P(SpdyFramerTest, ReadPriority) { | 5327 TEST_P(SpdyFramerTest, ReadPriority) { |
5328 if (spdy_version_ <= SPDY3) { | 5328 if (spdy_version_ <= SPDY3) { |
5329 return; | 5329 return; |
5330 } | 5330 } |
5331 SpdyFramer framer(spdy_version_); | 5331 SpdyFramer framer(spdy_version_); |
5332 SpdyPriorityIR priority(3, 1, 99, false); | 5332 SpdyPriorityIR priority(3, 1, 255, false); |
5333 scoped_ptr<SpdySerializedFrame> frame(framer.SerializePriority(priority)); | 5333 scoped_ptr<SpdySerializedFrame> frame(framer.SerializePriority(priority)); |
5334 testing::StrictMock<test::MockSpdyFramerVisitor> visitor; | 5334 testing::StrictMock<test::MockSpdyFramerVisitor> visitor; |
5335 framer.set_visitor(&visitor); | 5335 framer.set_visitor(&visitor); |
5336 EXPECT_CALL(visitor, OnPriority(3, 1, 99, false)); | 5336 EXPECT_CALL(visitor, OnPriority(3, 1, 255, false)); |
5337 framer.ProcessInput(frame->data(), frame->size()); | 5337 framer.ProcessInput(frame->data(), frame->size()); |
5338 | 5338 |
5339 EXPECT_EQ(SpdyFramer::SPDY_RESET, framer.state()); | 5339 EXPECT_EQ(SpdyFramer::SPDY_RESET, framer.state()); |
5340 EXPECT_EQ(SpdyFramer::SPDY_NO_ERROR, framer.error_code()) | 5340 EXPECT_EQ(SpdyFramer::SPDY_NO_ERROR, framer.error_code()) |
5341 << SpdyFramer::ErrorCodeToString(framer.error_code()); | 5341 << SpdyFramer::ErrorCodeToString(framer.error_code()); |
5342 // TODO(mlavan): once we actually maintain a priority tree, | 5342 // TODO(mlavan): once we actually maintain a priority tree, |
5343 // check that state is adjusted correctly. | 5343 // check that state is adjusted correctly. |
5344 } | 5344 } |
5345 | 5345 |
5346 // Tests handling of PRIORITY frame with incorrect size. | 5346 // Tests handling of PRIORITY frame with incorrect size. |
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
5391 EXPECT_EQ(4u, framer.MapWeightToPriority(109)); | 5391 EXPECT_EQ(4u, framer.MapWeightToPriority(109)); |
5392 EXPECT_EQ(4u, framer.MapWeightToPriority(74)); | 5392 EXPECT_EQ(4u, framer.MapWeightToPriority(74)); |
5393 EXPECT_EQ(5u, framer.MapWeightToPriority(73)); | 5393 EXPECT_EQ(5u, framer.MapWeightToPriority(73)); |
5394 EXPECT_EQ(5u, framer.MapWeightToPriority(37)); | 5394 EXPECT_EQ(5u, framer.MapWeightToPriority(37)); |
5395 EXPECT_EQ(6u, framer.MapWeightToPriority(36)); | 5395 EXPECT_EQ(6u, framer.MapWeightToPriority(36)); |
5396 EXPECT_EQ(6u, framer.MapWeightToPriority(1)); | 5396 EXPECT_EQ(6u, framer.MapWeightToPriority(1)); |
5397 EXPECT_EQ(7u, framer.MapWeightToPriority(0)); | 5397 EXPECT_EQ(7u, framer.MapWeightToPriority(0)); |
5398 } | 5398 } |
5399 | 5399 |
5400 } // namespace net | 5400 } // namespace net |
OLD | NEW |