blob: 5566e491041c4b8eb4c9a32024c7fc2db93e53a9 [file] [log] [blame]
// Copyright 2020 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.
#import "ios/chrome/browser/metrics/ios_chrome_default_browser_metrics_provider.h"
#include "base/test/metrics/histogram_tester.h"
#import "ios/chrome/browser/ui/default_promo/default_browser_utils.h"
#include "testing/platform_test.h"
#if !defined(__has_feature) || !__has_feature(objc_arc)
#error "This file requires ARC support."
#endif
// Tests metrics that are recorded and uploaded by
// IOSChromeDefaultBrowserMetricsProvider.
class IOSChromeDefaultBrowserMetricsProviderTest : public PlatformTest {
protected:
base::HistogramTester histogram_tester_;
};
// Tests the implementation of ProvideCurrentSessionData
TEST_F(IOSChromeDefaultBrowserMetricsProviderTest, ProvideCurrentSessionData) {
[[NSUserDefaults standardUserDefaults]
removeObjectForKey:kLastHTTPURLOpenTime];
IOSChromeDefaultBrowserMetricsProvider provider;
provider.ProvideCurrentSessionData(nullptr /* uma_proto */);
histogram_tester_.ExpectBucketCount("IOS.IsDefaultBrowser", false, 1);
histogram_tester_.ExpectBucketCount("IOS.IsDefaultBrowser", true, 0);
[[NSUserDefaults standardUserDefaults] setObject:[NSDate date]
forKey:kLastHTTPURLOpenTime];
provider.ProvideCurrentSessionData(nullptr /* uma_proto */);
histogram_tester_.ExpectBucketCount("IOS.IsDefaultBrowser", true, 1);
histogram_tester_.ExpectBucketCount("IOS.IsDefaultBrowser", false, 1);
}