- add sources.
[platform/framework/web/crosswalk.git] / src / net / spdy / spdy_protocol_test.cc
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
3 // found in the LICENSE file.
4
5 #include "net/spdy/spdy_protocol.h"
6
7 #include <limits>
8
9 #include "base/basictypes.h"
10 #include "base/memory/scoped_ptr.h"
11 #include "net/spdy/spdy_bitmasks.h"
12 #include "net/spdy/spdy_framer.h"
13 #include "testing/gtest/include/gtest/gtest.h"
14
15 namespace {
16
17 enum SpdyProtocolTestTypes {
18   SPDY2 = 2,
19   SPDY3 = 3,
20 };
21
22 }  // namespace
23
24 namespace net {
25
26 class SpdyProtocolTest
27     : public ::testing::TestWithParam<SpdyProtocolTestTypes> {
28  protected:
29   virtual void SetUp() {
30     spdy_version_ = GetParam();
31   }
32
33   // Version of SPDY protocol to be used.
34   int spdy_version_;
35 };
36
37 // All tests are run with two different SPDY versions: SPDY/2 and SPDY/3.
38 INSTANTIATE_TEST_CASE_P(SpdyProtocolTests,
39                         SpdyProtocolTest,
40                         ::testing::Values(SPDY2, SPDY3));
41
42 // Test our protocol constants
43 TEST_P(SpdyProtocolTest, ProtocolConstants) {
44   EXPECT_EQ(1, SYN_STREAM);
45   EXPECT_EQ(2, SYN_REPLY);
46   EXPECT_EQ(3, RST_STREAM);
47   EXPECT_EQ(4, SETTINGS);
48   EXPECT_EQ(5, NOOP);
49   EXPECT_EQ(6, PING);
50   EXPECT_EQ(7, GOAWAY);
51   EXPECT_EQ(8, HEADERS);
52   EXPECT_EQ(9, WINDOW_UPDATE);
53   EXPECT_EQ(10, CREDENTIAL);
54   EXPECT_EQ(11, BLOCKED);
55   EXPECT_EQ(12, PUSH_PROMISE);
56   EXPECT_EQ(12, LAST_CONTROL_TYPE);
57   EXPECT_EQ(std::numeric_limits<int32>::max(), kSpdyMaximumWindowSize);
58 }
59
60 class SpdyProtocolDeathTest : public SpdyProtocolTest {};
61
62 // All tests are run with two different SPDY versions: SPDY/2 and SPDY/3.
63 INSTANTIATE_TEST_CASE_P(SpdyProtocolDeathTests,
64                         SpdyProtocolDeathTest,
65                         ::testing::Values(SPDY2, SPDY3));
66
67 #if GTEST_HAS_DEATH_TEST && !defined(NDEBUG)
68 TEST_P(SpdyProtocolDeathTest, TestSpdySettingsAndIdOutOfBounds) {
69   scoped_ptr<SettingsFlagsAndId> flags_and_id;
70
71   EXPECT_DEBUG_DEATH(
72       {
73         flags_and_id.reset(new SettingsFlagsAndId(1, ~0));
74       },
75       "SPDY setting ID too large.");
76   // Make sure that we get expected values in opt mode.
77   if (flags_and_id.get() != NULL) {
78     EXPECT_EQ(1, flags_and_id->flags());
79     EXPECT_EQ(static_cast<SpdyPingId>(0xffffff), flags_and_id->id());
80   }
81 }
82 #endif  // GTEST_HAS_DEATH_TEST && !defined(NDEBUG)
83
84 }  // namespace net