pepper: add software vp9 encoder support to PPB_VideoEncoder
[chromium-blink-merge.git] / net / tools / quic / quic_server_test.cc
blobc73464a62da55f8de4d8fe212752598d43a1eb72
1 // Copyright 2013 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.
5 #include "net/tools/quic/quic_server.h"
7 #include "net/quic/crypto/quic_random.h"
8 #include "net/quic/quic_utils.h"
9 #include "net/quic/test_tools/mock_quic_dispatcher.h"
10 #include "net/tools/quic/quic_epoll_connection_helper.h"
11 #include "testing/gtest/include/gtest/gtest.h"
13 using ::testing::_;
14 using net::test::MockQuicDispatcher;
16 namespace net {
17 namespace tools {
18 namespace test {
20 namespace {
22 class QuicServerDispatchPacketTest : public ::testing::Test {
23 public:
24 QuicServerDispatchPacketTest()
25 : crypto_config_("blah", QuicRandom::GetInstance()),
26 dispatcher_(config_,
27 &crypto_config_,
28 new QuicDispatcher::DefaultPacketWriterFactory(),
29 new QuicEpollConnectionHelper(&eps_)) {
30 dispatcher_.InitializeWithWriter(new QuicDefaultPacketWriter(1234));
33 void DispatchPacket(const QuicEncryptedPacket& packet) {
34 IPEndPoint client_addr, server_addr;
35 dispatcher_.ProcessPacket(server_addr, client_addr, packet);
38 protected:
39 QuicConfig config_;
40 QuicCryptoServerConfig crypto_config_;
41 EpollServer eps_;
42 MockQuicDispatcher dispatcher_;
45 TEST_F(QuicServerDispatchPacketTest, DispatchPacket) {
46 unsigned char valid_packet[] = {
47 // public flags (8 byte connection_id)
48 0x3C,
49 // connection_id
50 0x10, 0x32, 0x54, 0x76,
51 0x98, 0xBA, 0xDC, 0xFE,
52 // packet sequence number
53 0xBC, 0x9A, 0x78, 0x56,
54 0x34, 0x12,
55 // private flags
56 0x00 };
57 QuicEncryptedPacket encrypted_valid_packet(QuicUtils::AsChars(valid_packet),
58 arraysize(valid_packet), false);
60 EXPECT_CALL(dispatcher_, ProcessPacket(_, _, _)).Times(1);
61 DispatchPacket(encrypted_valid_packet);
64 } // namespace
65 } // namespace test
66 } // namespace tools
67 } // namespace net