1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
|
// Copyright (c) 2011 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 "base/basictypes.h"
#include "base/message_loop.h"
#include "chrome/browser/net/network_stats.h"
#include "net/base/host_resolver.h"
#include "net/base/mock_host_resolver.h"
#include "net/base/test_completion_callback.h"
#include "net/test/test_server.h"
#include "testing/gtest/include/gtest/gtest.h"
#include "testing/platform_test.h"
namespace chrome_browser_net {
class NetworkStatsTest : public PlatformTest {
public:
NetworkStatsTest() {}
protected:
virtual void TearDown() {
// Flush the message loop to make application verifiers happy.
message_loop_.RunAllPending();
}
MessageLoopForIO message_loop_;
};
class NetworkStatsTestUDP : public NetworkStatsTest {
public:
NetworkStatsTestUDP()
: test_server_(net::TestServer::TYPE_UDP_ECHO,
FilePath(FILE_PATH_LITERAL("net/data"))) {
}
protected:
void RunUDPEchoTest(int bytes) {
TestOldCompletionCallback cb;
scoped_ptr<net::MockHostResolver> host_resolver(
new net::MockHostResolver());
UDPStatsClient* udp_stats_client = new UDPStatsClient();
EXPECT_TRUE(udp_stats_client->Start(host_resolver.get(),
test_server_.host_port_pair(),
bytes,
&cb));
int rv = cb.WaitForResult();
// Check there were no errors during connect/write/read to echo UDP server.
EXPECT_EQ(0, rv);
}
net::TestServer test_server_;
};
class NetworkStatsTestTCP : public NetworkStatsTest {
public:
NetworkStatsTestTCP()
: test_server_(net::TestServer::TYPE_TCP_ECHO,
FilePath(FILE_PATH_LITERAL("net/data"))) {
}
protected:
void RunTCPEchoTest(int bytes) {
TestOldCompletionCallback cb;
scoped_ptr<net::MockHostResolver> host_resolver(
new net::MockHostResolver());
TCPStatsClient* tcp_stats_client = new TCPStatsClient();
EXPECT_TRUE(tcp_stats_client->Start(host_resolver.get(),
test_server_.host_port_pair(),
bytes,
&cb));
int rv = cb.WaitForResult();
// Check there were no errors during connect/write/read to echo TCP server.
EXPECT_EQ(0, rv);
}
net::TestServer test_server_;
};
TEST_F(NetworkStatsTestUDP, UDPEcho_50B_Of_Data) {
ASSERT_TRUE(test_server_.Start());
RunUDPEchoTest(50);
}
TEST_F(NetworkStatsTestUDP, UDPEcho_1K_Of_Data) {
ASSERT_TRUE(test_server_.Start());
RunUDPEchoTest(1024);
}
TEST_F(NetworkStatsTestTCP, TCPEcho_50B_Of_Data) {
ASSERT_TRUE(test_server_.Start());
RunTCPEchoTest(50);
}
TEST_F(NetworkStatsTestTCP, TCPEcho_1K_Of_Data) {
ASSERT_TRUE(test_server_.Start());
RunTCPEchoTest(1024);
}
} // namespace chrome_browser_net
|