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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
|
// 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/socket_stream/socket_stream_metrics.h"
#include "base/basictypes.h"
#include "base/memory/scoped_ptr.h"
#include "base/metrics/histogram.h"
#include "base/metrics/histogram_samples.h"
#include "base/metrics/statistics_recorder.h"
#include "googleurl/src/gurl.h"
#include "testing/gtest/include/gtest/gtest.h"
#include "testing/platform_test.h"
using base::Histogram;
using base::HistogramSamples;
using base::StatisticsRecorder;
namespace net {
TEST(SocketStreamMetricsTest, ProtocolType) {
// First we'll preserve the original values. We need to do this
// as histograms can get affected by other tests. In particular,
// SocketStreamTest and WebSocketTest can affect the histograms.
scoped_ptr<HistogramSamples> original;
Histogram* histogram =
StatisticsRecorder::FindHistogram("Net.SocketStream.ProtocolType");
if (histogram) {
original = histogram->SnapshotSamples();
}
SocketStreamMetrics unknown(GURL("unknown://www.example.com/"));
SocketStreamMetrics ws1(GURL("ws://www.example.com/"));
SocketStreamMetrics ws2(GURL("ws://www.example.com/"));
SocketStreamMetrics wss1(GURL("wss://www.example.com/"));
SocketStreamMetrics wss2(GURL("wss://www.example.com/"));
SocketStreamMetrics wss3(GURL("wss://www.example.com/"));
histogram =
StatisticsRecorder::FindHistogram("Net.SocketStream.ProtocolType");
ASSERT_TRUE(histogram != NULL);
EXPECT_EQ(Histogram::kUmaTargetedHistogramFlag, histogram->flags());
scoped_ptr<HistogramSamples> samples(histogram->SnapshotSamples());
if (original.get()) {
samples->Subtract(*original); // Cancel the original values.
}
EXPECT_EQ(1, samples->GetCount(SocketStreamMetrics::PROTOCOL_UNKNOWN));
EXPECT_EQ(2, samples->GetCount(SocketStreamMetrics::PROTOCOL_WEBSOCKET));
EXPECT_EQ(3,
samples->GetCount(SocketStreamMetrics::PROTOCOL_WEBSOCKET_SECURE));
}
TEST(SocketStreamMetricsTest, ConnectionType) {
// First we'll preserve the original values.
scoped_ptr<HistogramSamples> original;
Histogram* histogram =
StatisticsRecorder::FindHistogram("Net.SocketStream.ConnectionType");
if (histogram) {
original = histogram->SnapshotSamples();
}
SocketStreamMetrics metrics(GURL("ws://www.example.com/"));
for (int i = 0; i < 1; ++i)
metrics.OnStartConnection();
for (int i = 0; i < 2; ++i)
metrics.OnCountConnectionType(SocketStreamMetrics::TUNNEL_CONNECTION);
for (int i = 0; i < 3; ++i)
metrics.OnCountConnectionType(SocketStreamMetrics::SOCKS_CONNECTION);
for (int i = 0; i < 4; ++i)
metrics.OnCountConnectionType(SocketStreamMetrics::SSL_CONNECTION);
histogram =
StatisticsRecorder::FindHistogram("Net.SocketStream.ConnectionType");
ASSERT_TRUE(histogram != NULL);
EXPECT_EQ(Histogram::kUmaTargetedHistogramFlag, histogram->flags());
scoped_ptr<HistogramSamples> samples(histogram->SnapshotSamples());
if (original.get()) {
samples->Subtract(*original); // Cancel the original values.
}
EXPECT_EQ(1, samples->GetCount(SocketStreamMetrics::ALL_CONNECTIONS));
EXPECT_EQ(2, samples->GetCount(SocketStreamMetrics::TUNNEL_CONNECTION));
EXPECT_EQ(3, samples->GetCount(SocketStreamMetrics::SOCKS_CONNECTION));
EXPECT_EQ(4, samples->GetCount(SocketStreamMetrics::SSL_CONNECTION));
}
TEST(SocketStreamMetricsTest, WireProtocolType) {
// First we'll preserve the original values.
scoped_ptr<HistogramSamples> original;
Histogram* histogram =
StatisticsRecorder::FindHistogram("Net.SocketStream.WireProtocolType");
if (histogram) {
original = histogram->SnapshotSamples();
}
SocketStreamMetrics metrics(GURL("ws://www.example.com/"));
for (int i = 0; i < 3; ++i)
metrics.OnCountWireProtocolType(
SocketStreamMetrics::WIRE_PROTOCOL_WEBSOCKET);
for (int i = 0; i < 7; ++i)
metrics.OnCountWireProtocolType(SocketStreamMetrics::WIRE_PROTOCOL_SPDY);
histogram =
StatisticsRecorder::FindHistogram("Net.SocketStream.WireProtocolType");
ASSERT_TRUE(histogram != NULL);
EXPECT_EQ(Histogram::kUmaTargetedHistogramFlag, histogram->flags());
scoped_ptr<HistogramSamples> samples(histogram->SnapshotSamples());
if (original.get()) {
samples->Subtract(*original); // Cancel the original values.
}
EXPECT_EQ(3, samples->GetCount(SocketStreamMetrics::WIRE_PROTOCOL_WEBSOCKET));
EXPECT_EQ(7, samples->GetCount(SocketStreamMetrics::WIRE_PROTOCOL_SPDY));
}
TEST(SocketStreamMetricsTest, OtherNumbers) {
// First we'll preserve the original values.
int64 original_received_bytes = 0;
int64 original_received_counts = 0;
int64 original_sent_bytes = 0;
int64 original_sent_counts = 0;
scoped_ptr<HistogramSamples> original;
Histogram* histogram =
StatisticsRecorder::FindHistogram("Net.SocketStream.ReceivedBytes");
if (histogram) {
original = histogram->SnapshotSamples();
original_received_bytes = original->sum();
}
histogram =
StatisticsRecorder::FindHistogram("Net.SocketStream.ReceivedCounts");
if (histogram) {
original = histogram->SnapshotSamples();
original_received_counts = original->sum();
}
histogram =
StatisticsRecorder::FindHistogram("Net.SocketStream.SentBytes");
if (histogram) {
original = histogram->SnapshotSamples();
original_sent_bytes = original->sum();
}
histogram =
StatisticsRecorder::FindHistogram("Net.SocketStream.SentCounts");
if (histogram) {
original = histogram->SnapshotSamples();
original_sent_counts = original->sum();
}
SocketStreamMetrics metrics(GURL("ws://www.example.com/"));
metrics.OnWaitConnection();
metrics.OnStartConnection();
metrics.OnConnected();
metrics.OnRead(1);
metrics.OnRead(10);
metrics.OnWrite(2);
metrics.OnWrite(20);
metrics.OnWrite(200);
metrics.OnClose();
scoped_ptr<HistogramSamples> samples;
// ConnectionLatency.
histogram =
StatisticsRecorder::FindHistogram("Net.SocketStream.ConnectionLatency");
ASSERT_TRUE(histogram != NULL);
EXPECT_EQ(Histogram::kUmaTargetedHistogramFlag, histogram->flags());
// We don't check the contents of the histogram as it's time sensitive.
// ConnectionEstablish.
histogram =
StatisticsRecorder::FindHistogram("Net.SocketStream.ConnectionEstablish");
ASSERT_TRUE(histogram != NULL);
EXPECT_EQ(Histogram::kUmaTargetedHistogramFlag, histogram->flags());
// We don't check the contents of the histogram as it's time sensitive.
// Duration.
histogram =
StatisticsRecorder::FindHistogram("Net.SocketStream.Duration");
ASSERT_TRUE(histogram != NULL);
EXPECT_EQ(Histogram::kUmaTargetedHistogramFlag, histogram->flags());
// We don't check the contents of the histogram as it's time sensitive.
// ReceivedBytes.
histogram =
StatisticsRecorder::FindHistogram("Net.SocketStream.ReceivedBytes");
ASSERT_TRUE(histogram != NULL);
EXPECT_EQ(Histogram::kUmaTargetedHistogramFlag, histogram->flags());
samples = histogram->SnapshotSamples();
EXPECT_EQ(11, samples->sum() - original_received_bytes); // 11 bytes read.
// ReceivedCounts.
histogram =
StatisticsRecorder::FindHistogram("Net.SocketStream.ReceivedCounts");
ASSERT_TRUE(histogram != NULL);
EXPECT_EQ(Histogram::kUmaTargetedHistogramFlag, histogram->flags());
samples = histogram->SnapshotSamples();
EXPECT_EQ(2, samples->sum() - original_received_counts); // 2 read requests.
// SentBytes.
histogram =
StatisticsRecorder::FindHistogram("Net.SocketStream.SentBytes");
ASSERT_TRUE(histogram != NULL);
EXPECT_EQ(Histogram::kUmaTargetedHistogramFlag, histogram->flags());
samples = histogram->SnapshotSamples();
EXPECT_EQ(222, samples->sum() - original_sent_bytes); // 222 bytes sent.
// SentCounts.
histogram =
StatisticsRecorder::FindHistogram("Net.SocketStream.SentCounts");
ASSERT_TRUE(histogram != NULL);
EXPECT_EQ(Histogram::kUmaTargetedHistogramFlag, histogram->flags());
samples = histogram->SnapshotSamples();
EXPECT_EQ(3, samples->sum() - original_sent_counts); // 3 write requests.
}
} // namespace net
|