Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(453)

Unified Diff: net/base/network_quality_estimator_unittest.cc

Issue 1897903002: Record how frequently EEP provides valid estimates (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Removed whitespace (asvitkine's comment) Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « net/base/network_quality_estimator.cc ('k') | tools/metrics/histograms/histograms.xml » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/base/network_quality_estimator_unittest.cc
diff --git a/net/base/network_quality_estimator_unittest.cc b/net/base/network_quality_estimator_unittest.cc
index ba258f9d34f61adb06fa4e4ccd396decca7139c0..5a84f9b5fcbe99740c231aac3646a1c403e79704 100644
--- a/net/base/network_quality_estimator_unittest.cc
+++ b/net/base/network_quality_estimator_unittest.cc
@@ -956,6 +956,7 @@ class InvalidExternalEstimateProvider : public ExternalEstimateProvider {
// Tests if the RTT value from external estimate provider is discarded if the
// external estimate provider is invalid.
TEST(NetworkQualityEstimatorTest, InvalidExternalEstimateProvider) {
+ base::HistogramTester histogram_tester;
InvalidExternalEstimateProvider* invalid_external_estimate_provider =
new InvalidExternalEstimateProvider();
std::unique_ptr<ExternalEstimateProvider> external_estimate_provider(
@@ -969,6 +970,20 @@ TEST(NetworkQualityEstimatorTest, InvalidExternalEstimateProvider) {
EXPECT_EQ(1U, invalid_external_estimate_provider->get_rtt_count());
EXPECT_FALSE(estimator.GetURLRequestRTTEstimate(&rtt));
EXPECT_FALSE(estimator.GetDownlinkThroughputKbpsEstimate(&kbps));
+ histogram_tester.ExpectTotalCount("NQE.ExternalEstimateProviderStatus", 3);
+
+ histogram_tester.ExpectBucketCount(
+ "NQE.ExternalEstimateProviderStatus",
+ 1 /* EXTERNAL_ESTIMATE_PROVIDER_STATUS_AVAILABLE */, 1);
+ histogram_tester.ExpectBucketCount(
+ "NQE.ExternalEstimateProviderStatus",
+ 2 /* EXTERNAL_ESTIMATE_PROVIDER_STATUS_QUERIED */, 1);
+ histogram_tester.ExpectBucketCount(
+ "NQE.ExternalEstimateProviderStatus",
+ 3 /* EXTERNAL_ESTIMATE_PROVIDER_STATUS_QUERY_SUCCESSFUL */, 1);
+ histogram_tester.ExpectTotalCount("NQE.ExternalEstimateProvider.RTT", 0);
+ histogram_tester.ExpectTotalCount(
+ "NQE.ExternalEstimateProvider.DownlinkBandwidth", 0);
}
class TestExternalEstimateProvider : public ExternalEstimateProvider {
@@ -1053,6 +1068,7 @@ class TestExternalEstimateProvider : public ExternalEstimateProvider {
// Tests if the external estimate provider is called in the constructor and
// on network change notification.
TEST(NetworkQualityEstimatorTest, TestExternalEstimateProvider) {
+ base::HistogramTester histogram_tester;
TestExternalEstimateProvider* test_external_estimate_provider =
new TestExternalEstimateProvider(base::TimeDelta::FromMilliseconds(1),
100);
@@ -1067,6 +1083,32 @@ TEST(NetworkQualityEstimatorTest, TestExternalEstimateProvider) {
EXPECT_TRUE(estimator.GetURLRequestRTTEstimate(&rtt));
EXPECT_TRUE(estimator.GetDownlinkThroughputKbpsEstimate(&kbps));
+ histogram_tester.ExpectTotalCount("NQE.ExternalEstimateProviderStatus", 5);
+
+ histogram_tester.ExpectBucketCount(
+ "NQE.ExternalEstimateProviderStatus",
+ 1 /* EXTERNAL_ESTIMATE_PROVIDER_STATUS_AVAILABLE */, 1);
+ histogram_tester.ExpectBucketCount(
+ "NQE.ExternalEstimateProviderStatus",
+ 2 /* EXTERNAL_ESTIMATE_PROVIDER_STATUS_QUERIED */, 1);
+ histogram_tester.ExpectBucketCount(
+ "NQE.ExternalEstimateProviderStatus",
+ 3 /* EXTERNAL_ESTIMATE_PROVIDER_STATUS_QUERY_SUCCESSFUL */, 1);
+ histogram_tester.ExpectBucketCount(
+ "NQE.ExternalEstimateProviderStatus",
+ 5 /* EXTERNAL_ESTIMATE_PROVIDER_STATUS_RTT_AVAILABLE */, 1);
+ histogram_tester.ExpectBucketCount(
+ "NQE.ExternalEstimateProviderStatus",
+ 6 /* EXTERNAL_ESTIMATE_PROVIDER_STATUS_DOWNLINK_BANDWIDTH_AVAILABLE */,
+ 1);
+ histogram_tester.ExpectTotalCount("NQE.ExternalEstimateProvider.RTT", 1);
+ histogram_tester.ExpectBucketCount("NQE.ExternalEstimateProvider.RTT", 1, 1);
+
+ histogram_tester.ExpectTotalCount(
+ "NQE.ExternalEstimateProvider.DownlinkBandwidth", 1);
+ histogram_tester.ExpectBucketCount(
+ "NQE.ExternalEstimateProvider.DownlinkBandwidth", 100, 1);
+
EXPECT_EQ(
1U, test_external_estimate_provider->get_time_since_last_update_count());
EXPECT_EQ(1U, test_external_estimate_provider->get_rtt_count());
« no previous file with comments | « net/base/network_quality_estimator.cc ('k') | tools/metrics/histograms/histograms.xml » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698