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
|
// Copyright 2024 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "chrome/browser/ash/power/suspend_perf_reporter.h"
#include <memory>
#include "base/metrics/histogram_macros.h"
#include "base/test/metrics/histogram_tester.h"
#include "base/test/task_environment.h"
#include "base/time/time.h"
#include "chromeos/dbus/power/fake_power_manager_client.h"
#include "testing/gtest/include/gtest/gtest.h"
namespace ash {
class SuspendPerfReporterTest : public testing::Test {
protected:
void SetUp() override {
chromeos::PowerManagerClient::InitializeFake();
reporter_ = std::make_unique<SuspendPerfReporter>(
chromeos::PowerManagerClient::Get());
}
void TearDown() override {
reporter_.reset();
chromeos::PowerManagerClient::Shutdown();
}
std::unique_ptr<SuspendPerfReporter> reporter_;
base::test::SingleThreadTaskEnvironment task_environment_{
base::test::TaskEnvironment::TimeSource::MOCK_TIME};
};
TEST_F(SuspendPerfReporterTest, EmptyMetrics) {
base::HistogramTester histogram_tester;
chromeos::FakePowerManagerClient::Get()->SendSuspendDone();
task_environment_.FastForwardBy(base::Minutes(1));
EXPECT_TRUE(
histogram_tester.GetAllSamples("Browser.MainThreadsCongestion").empty());
EXPECT_TRUE(
histogram_tester
.GetAllSamples("Browser.MainThreadsCongestion.1MinAfterResume")
.empty());
}
TEST_F(SuspendPerfReporterTest, IncreaseMetrics) {
base::HistogramTester histogram_tester;
UMA_HISTOGRAM_CUSTOM_COUNTS("Browser.MainThreadsCongestion", 10, 1, 300, 50);
UMA_HISTOGRAM_CUSTOM_COUNTS("Browser.MainThreadsCongestion", 100, 1, 300, 50);
// Metrics not changed during the 1 minute.
UMA_HISTOGRAM_PERCENTAGE(
"Graphics.Smoothness.PercentDroppedFrames3.AllAnimations", 10);
chromeos::FakePowerManagerClient::Get()->SendSuspendDone();
UMA_HISTOGRAM_CUSTOM_COUNTS("Browser.MainThreadsCongestion", 10, 1, 300, 50);
UMA_HISTOGRAM_CUSTOM_COUNTS("Browser.MainThreadsCongestion", 200, 1, 300, 50);
// A new metrics which is not registered before SuspendDone signal.
UMA_HISTOGRAM_CUSTOM_TIMES("Ash.EventLatency.KeyPressed.TotalLatency",
base::Milliseconds(100), base::Milliseconds(1),
base::Seconds(5), 100);
task_environment_.FastForwardBy(base::Minutes(1));
histogram_tester.ExpectBucketCount("Browser.MainThreadsCongestion", 10, 2);
histogram_tester.ExpectBucketCount(
"Browser.MainThreadsCongestion.1MinAfterResume", 10, 1);
histogram_tester.ExpectBucketCount("Browser.MainThreadsCongestion", 100, 1);
histogram_tester.ExpectBucketCount(
"Browser.MainThreadsCongestion.1MinAfterResume", 100, 0);
histogram_tester.ExpectBucketCount("Browser.MainThreadsCongestion", 200, 1);
histogram_tester.ExpectBucketCount(
"Browser.MainThreadsCongestion.1MinAfterResume", 10, 1);
histogram_tester.ExpectUniqueTimeSample(
"Ash.EventLatency.KeyPressed.TotalLatency", base::Milliseconds(100), 1);
histogram_tester.ExpectUniqueTimeSample(
"Ash.EventLatency.KeyPressed.TotalLatency.1MinAfterResume",
base::Milliseconds(100), 1);
histogram_tester.ExpectUniqueSample(
"Graphics.Smoothness.PercentDroppedFrames3.AllAnimations", 10, 1);
EXPECT_TRUE(histogram_tester
.GetAllSamples("Graphics.Smoothness.PercentDroppedFrames3."
"AllAnimations.1MinAfterResume")
.empty());
}
TEST_F(SuspendPerfReporterTest, AllMetrics) {
base::HistogramTester histogram_tester;
chromeos::FakePowerManagerClient::Get()->SendSuspendDone();
UMA_HISTOGRAM_CUSTOM_COUNTS("Browser.MainThreadsCongestion", 10, 1, 300, 50);
UMA_HISTOGRAM_CUSTOM_TIMES("Ash.EventLatency.MousePressed.TotalLatency",
base::Milliseconds(10), base::Milliseconds(1),
base::Seconds(5), 100);
UMA_HISTOGRAM_CUSTOM_TIMES("Ash.EventLatency.KeyPressed.TotalLatency",
base::Milliseconds(20), base::Milliseconds(1),
base::Seconds(5), 100);
UMA_HISTOGRAM_PERCENTAGE(
"Graphics.Smoothness.PercentDroppedFrames3.AllAnimations", 10);
UMA_HISTOGRAM_PERCENTAGE(
"Graphics.Smoothness.PercentDroppedFrames3.AllInteractions", 100);
UMA_HISTOGRAM_CUSTOM_COUNTS("MetricNotInList", 10, 1, 300, 50);
task_environment_.FastForwardBy(base::Minutes(1));
histogram_tester.ExpectUniqueSample(
"Browser.MainThreadsCongestion.1MinAfterResume", 10, 1);
histogram_tester.ExpectUniqueTimeSample(
"Ash.EventLatency.MousePressed.TotalLatency.1MinAfterResume",
base::Milliseconds(10), 1);
histogram_tester.ExpectUniqueTimeSample(
"Ash.EventLatency.KeyPressed.TotalLatency.1MinAfterResume",
base::Milliseconds(20), 1);
histogram_tester.ExpectUniqueSample(
"Graphics.Smoothness.PercentDroppedFrames3.AllAnimations.1MinAfterResume",
10, 1);
histogram_tester.ExpectUniqueSample(
"Graphics.Smoothness.PercentDroppedFrames3.AllInteractions."
"1MinAfterResume",
100, 1);
EXPECT_TRUE(histogram_tester.GetAllSamples("MetricNotInList.1MinAfterResume")
.empty());
}
TEST_F(SuspendPerfReporterTest, MultipleSuspend) {
base::HistogramTester histogram_tester;
UMA_HISTOGRAM_CUSTOM_COUNTS("Browser.MainThreadsCongestion", 10, 1, 300, 50);
// This will be replaced the next signal.
chromeos::FakePowerManagerClient::Get()->SendSuspendDone();
task_environment_.FastForwardBy(base::Seconds(30));
UMA_HISTOGRAM_CUSTOM_COUNTS("Browser.MainThreadsCongestion", 20, 1, 300, 50);
// This will be replaced the next signal again.
chromeos::FakePowerManagerClient::Get()->SendSuspendDone();
task_environment_.FastForwardBy(base::Seconds(30));
UMA_HISTOGRAM_CUSTOM_COUNTS("Browser.MainThreadsCongestion", 30, 1, 300, 50);
chromeos::FakePowerManagerClient::Get()->SendSuspendDone();
UMA_HISTOGRAM_CUSTOM_COUNTS("Browser.MainThreadsCongestion", 40, 1, 300, 50);
task_environment_.FastForwardBy(base::Minutes(1));
histogram_tester.ExpectUniqueSample(
"Browser.MainThreadsCongestion.1MinAfterResume", 40, 1);
}
} // namespace ash
|