forked from chromium/chromium
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathnavigation_metrics_unittest.cc
77 lines (59 loc) · 2.85 KB
/
navigation_metrics_unittest.cc
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
// Copyright 2017 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 "components/navigation_metrics/navigation_metrics.h"
#include "base/test/metrics/histogram_tester.h"
#include "testing/gtest/include/gtest/gtest.h"
#include "url/gurl.h"
namespace {
const char* const kTestUrl = "http://www.example.com";
const char* const kMainFrameScheme = "Navigation.MainFrameScheme";
const char* const kMainFrameSchemeDifferentPage =
"Navigation.MainFrameSchemeDifferentPage";
const char* const kMainFrameSchemeOTR = "Navigation.MainFrameSchemeOTR";
const char* const kMainFrameSchemeDifferentPageOTR =
"Navigation.MainFrameSchemeDifferentPageOTR";
} // namespace
namespace navigation_metrics {
TEST(NavigationMetrics, MainFrameSchemeDifferentDocument) {
base::HistogramTester test;
RecordMainFrameNavigation(GURL(kTestUrl), false, false);
test.ExpectTotalCount(kMainFrameScheme, 1);
test.ExpectUniqueSample(kMainFrameScheme, 1 /* http */, 1);
test.ExpectTotalCount(kMainFrameSchemeDifferentPage, 1);
test.ExpectUniqueSample(kMainFrameSchemeDifferentPage, 1 /* http */, 1);
test.ExpectTotalCount(kMainFrameSchemeOTR, 0);
test.ExpectTotalCount(kMainFrameSchemeDifferentPageOTR, 0);
}
TEST(NavigationMetrics, MainFrameSchemeSameDocument) {
base::HistogramTester test;
RecordMainFrameNavigation(GURL(kTestUrl), true, false);
test.ExpectTotalCount(kMainFrameScheme, 1);
test.ExpectUniqueSample(kMainFrameScheme, 1 /* http */, 1);
test.ExpectTotalCount(kMainFrameSchemeDifferentPage, 0);
test.ExpectTotalCount(kMainFrameSchemeOTR, 0);
test.ExpectTotalCount(kMainFrameSchemeDifferentPageOTR, 0);
}
TEST(NavigationMetrics, MainFrameSchemeDifferentDocumentOTR) {
base::HistogramTester test;
RecordMainFrameNavigation(GURL(kTestUrl), false, true);
test.ExpectTotalCount(kMainFrameScheme, 1);
test.ExpectUniqueSample(kMainFrameScheme, 1 /* http */, 1);
test.ExpectTotalCount(kMainFrameSchemeDifferentPage, 1);
test.ExpectUniqueSample(kMainFrameSchemeDifferentPage, 1 /* http */, 1);
test.ExpectTotalCount(kMainFrameSchemeOTR, 1);
test.ExpectUniqueSample(kMainFrameSchemeOTR, 1 /* http */, 1);
test.ExpectTotalCount(kMainFrameSchemeDifferentPageOTR, 1);
test.ExpectUniqueSample(kMainFrameSchemeDifferentPageOTR, 1 /* http */, 1);
}
TEST(NavigationMetrics, MainFrameSchemeSameDocumentOTR) {
base::HistogramTester test;
RecordMainFrameNavigation(GURL(kTestUrl), true, true);
test.ExpectTotalCount(kMainFrameScheme, 1);
test.ExpectUniqueSample(kMainFrameScheme, 1 /* http */, 1);
test.ExpectTotalCount(kMainFrameSchemeDifferentPage, 0);
test.ExpectTotalCount(kMainFrameSchemeOTR, 1);
test.ExpectUniqueSample(kMainFrameSchemeOTR, 1 /* http */, 1);
test.ExpectTotalCount(kMainFrameSchemeDifferentPageOTR, 0);
}
} // namespace navigation_metrics