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 144 145
|
// Copyright 2012 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifdef UNSAFE_BUFFERS_BUILD
// TODO(crbug.com/40285824): Remove this and convert code to safer constructs.
#pragma allow_unsafe_buffers
#endif
#include "components/spellcheck/browser/spellcheck_host_metrics.h"
#include <stddef.h>
#include <array>
#include <memory>
#include "base/metrics/histogram_samples.h"
#include "base/strings/utf_string_conversions.h"
#include "base/test/metrics/histogram_tester.h"
#include "base/test/task_environment.h"
#include "build/build_config.h"
#include "testing/gtest/include/gtest/gtest.h"
class SpellcheckHostMetricsTest : public testing::Test {
public:
SpellcheckHostMetricsTest() {
}
void SetUp() override {
metrics_ = std::make_unique<SpellCheckHostMetrics>();
}
SpellCheckHostMetrics* metrics() { return metrics_.get(); }
void RecordWordCountsForTesting() { metrics_->RecordWordCounts(); }
private:
base::test::SingleThreadTaskEnvironment task_environment_;
std::unique_ptr<SpellCheckHostMetrics> metrics_;
};
TEST_F(SpellcheckHostMetricsTest, RecordEnabledStats) {
const char kMetricName[] = "SpellCheck.Enabled2";
base::HistogramTester histogram_tester1;
metrics()->RecordEnabledStats(false);
histogram_tester1.ExpectBucketCount(kMetricName, 0, 1);
histogram_tester1.ExpectBucketCount(kMetricName, 1, 0);
base::HistogramTester histogram_tester2;
metrics()->RecordEnabledStats(true);
histogram_tester2.ExpectBucketCount(kMetricName, 0, 0);
histogram_tester2.ExpectBucketCount(kMetricName, 1, 1);
}
TEST_F(SpellcheckHostMetricsTest, RecordWordCountsDiscardsDuplicates) {
// This test ensures that RecordWordCounts only records metrics if they
// have changed from the last invocation.
const auto histogram_names = std::to_array<const char*>({
"SpellCheck.CheckedWords",
"SpellCheck.MisspelledWords",
"SpellCheck.ReplacedWords",
"SpellCheck.UniqueWords",
"SpellCheck.ShownSuggestions",
});
// Ensure all histograms exist.
metrics()->RecordCheckedWordStats(u"test", false);
RecordWordCountsForTesting();
// Create the tester, taking a snapshot of current histogram samples.
base::HistogramTester histogram_tester;
// Nothing changed, so this invocation should not affect any histograms.
RecordWordCountsForTesting();
// Get samples for all affected histograms.
for (size_t i = 0; i < std::size(histogram_names); ++i)
histogram_tester.ExpectTotalCount(histogram_names[i], 0);
}
TEST_F(SpellcheckHostMetricsTest, RecordSpellingServiceStats) {
const char kMetricName[] = "SpellCheck.SpellingService.Enabled2";
base::HistogramTester histogram_tester1;
metrics()->RecordSpellingServiceStats(false);
histogram_tester1.ExpectBucketCount(kMetricName, 0, 1);
histogram_tester1.ExpectBucketCount(kMetricName, 1, 0);
base::HistogramTester histogram_tester2;
metrics()->RecordSpellingServiceStats(true);
histogram_tester2.ExpectBucketCount(kMetricName, 0, 0);
histogram_tester2.ExpectBucketCount(kMetricName, 1, 1);
}
#if BUILDFLAG(IS_WIN)
TEST_F(SpellcheckHostMetricsTest, RecordAcceptLanguageStats) {
const char* const histogram_names[] = {
"Spellcheck.Windows.ChromeLocalesSupport2.Both",
"Spellcheck.Windows.ChromeLocalesSupport2.HunspellOnly",
"Spellcheck.Windows.ChromeLocalesSupport2.NativeOnly",
"Spellcheck.Windows.ChromeLocalesSupport2.NoSupport"};
const size_t expected_counts[] = {1, 2, 3, 4};
base::HistogramTester histogram_tester;
SpellCheckHostMetrics::RecordAcceptLanguageStats({
expected_counts[0],
expected_counts[1],
expected_counts[2],
expected_counts[3],
});
for (size_t i = 0; i < std::size(histogram_names); ++i) {
histogram_tester.ExpectTotalCount(histogram_names[i], 1);
histogram_tester.ExpectBucketCount(histogram_names[i],
static_cast<int>(expected_counts[i]), 1);
}
}
TEST_F(SpellcheckHostMetricsTest, RecordSpellcheckLanguageStats) {
const char* const histogram_names[] = {
"Spellcheck.Windows.SpellcheckLocalesSupport2.Both",
"Spellcheck.Windows.SpellcheckLocalesSupport2.HunspellOnly",
"Spellcheck.Windows.SpellcheckLocalesSupport2.NativeOnly"};
const size_t expected_counts[] = {1, 2, 3};
base::HistogramTester histogram_tester;
SpellCheckHostMetrics::RecordSpellcheckLanguageStats({
expected_counts[0],
expected_counts[1],
expected_counts[2],
0,
});
for (size_t i = 0; i < std::size(histogram_names); ++i) {
histogram_tester.ExpectTotalCount(histogram_names[i], 1);
histogram_tester.ExpectBucketCount(histogram_names[i],
static_cast<int>(expected_counts[i]), 1);
}
}
#endif // BUILDFLAG(IS_WIN)
|