blob: 7b168b83056178a2619dbc069cc62d4be4a62219 [file] [log] [blame]
// Copyright 2018 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 "chrome/browser/metrics/chrome_android_metrics_provider.h"
#include "base/test/metrics/histogram_tester.h"
#include "components/prefs/testing_pref_service.h"
#include "testing/gtest/include/gtest/gtest.h"
class ChromeAndroidMetricsProviderTest : public testing::Test {
public:
ChromeAndroidMetricsProviderTest() : metrics_provider_(&pref_service_) {
ChromeAndroidMetricsProvider::RegisterPrefs(pref_service_.registry());
}
~ChromeAndroidMetricsProviderTest() override = default;
protected:
base::HistogramTester histogram_tester_;
TestingPrefServiceSimple pref_service_;
ChromeAndroidMetricsProvider metrics_provider_;
};
TEST_F(ChromeAndroidMetricsProviderTest, OnDidCreateMetricsLog_CustomTabs) {
metrics_provider_.OnDidCreateMetricsLog();
histogram_tester_.ExpectTotalCount("CustomTabs.Visible", 1);
histogram_tester_.ExpectTotalCount("Android.ChromeActivity.Type", 1);
}
TEST_F(ChromeAndroidMetricsProviderTest,
ProvideCurrentSessionData_MultiWindowMode) {
metrics_provider_.ProvideCurrentSessionData(nullptr /* uma_proto */);
histogram_tester_.ExpectTotalCount("Android.MultiWindowMode.Active", 1);
}
TEST_F(ChromeAndroidMetricsProviderTest,
ProvideCurrentSessionData_AppNotifications) {
metrics_provider_.ProvideCurrentSessionData(nullptr /* uma_proto */);
histogram_tester_.ExpectTotalCount("Android.AppNotificationStatus", 1);
}