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 146 147 148 149 150 151
|
// Copyright (c) 2014 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 "components/browser_watcher/watcher_metrics_provider_win.h"
#include <stddef.h>
#include <stdint.h>
#include <cstdlib>
#include "base/process/process_handle.h"
#include "base/strings/string16.h"
#include "base/strings/stringprintf.h"
#include "base/test/histogram_tester.h"
#include "base/test/test_reg_util_win.h"
#include "base/test/test_simple_task_runner.h"
#include "base/win/registry.h"
#include "testing/gtest/include/gtest/gtest.h"
namespace browser_watcher {
namespace {
using GetExecutableDetailsCallback =
WatcherMetricsProviderWin::GetExecutableDetailsCallback;
const wchar_t kRegistryPath[] = L"Software\\WatcherMetricsProviderWinTest";
class WatcherMetricsProviderWinTest : public testing::Test {
public:
typedef testing::Test Super;
void SetUp() override {
Super::SetUp();
override_manager_.OverrideRegistry(HKEY_CURRENT_USER);
test_task_runner_ = new base::TestSimpleTaskRunner();
}
void AddProcessExitCode(bool use_own_pid, int exit_code) {
int pid = 0;
if (use_own_pid) {
pid = base::GetCurrentProcId();
} else {
// Make sure not to accidentally collide with own pid.
do {
pid = rand();
} while (pid == static_cast<int>(base::GetCurrentProcId()));
}
base::win::RegKey key(HKEY_CURRENT_USER, kRegistryPath, KEY_WRITE);
// Make up a unique key, starting with the given pid.
base::string16 key_name(base::StringPrintf(L"%d-%d", pid, rand()));
// Write the exit code to registry.
LONG result = key.WriteValue(key_name.c_str(), exit_code);
ASSERT_EQ(result, ERROR_SUCCESS);
}
size_t ExitCodeRegistryPathValueCount() {
base::win::RegKey key(HKEY_CURRENT_USER, kRegistryPath, KEY_READ);
return key.GetValueCount();
}
protected:
registry_util::RegistryOverrideManager override_manager_;
base::HistogramTester histogram_tester_;
scoped_refptr<base::TestSimpleTaskRunner> test_task_runner_;
};
} // namespace
TEST_F(WatcherMetricsProviderWinTest, RecordsStabilityHistogram) {
// Record multiple success exits.
for (size_t i = 0; i < 11; ++i)
AddProcessExitCode(false, 0);
// Record a single failure.
AddProcessExitCode(false, 100);
WatcherMetricsProviderWin provider(
kRegistryPath, base::FilePath(), base::FilePath(),
GetExecutableDetailsCallback(), test_task_runner_.get());
provider.ProvideStabilityMetrics(NULL);
histogram_tester_.ExpectBucketCount(
WatcherMetricsProviderWin::kBrowserExitCodeHistogramName, 0, 11);
histogram_tester_.ExpectBucketCount(
WatcherMetricsProviderWin::kBrowserExitCodeHistogramName, 100, 1);
histogram_tester_.ExpectTotalCount(
WatcherMetricsProviderWin::kBrowserExitCodeHistogramName, 12);
// Verify that the reported values are gone.
EXPECT_EQ(0u, ExitCodeRegistryPathValueCount());
}
TEST_F(WatcherMetricsProviderWinTest, DoesNotReportOwnProcessId) {
// Record multiple success exits.
for (size_t i = 0; i < 11; ++i)
AddProcessExitCode(i, 0);
// Record own process as STILL_ACTIVE.
AddProcessExitCode(true, STILL_ACTIVE);
WatcherMetricsProviderWin provider(
kRegistryPath, base::FilePath(), base::FilePath(),
GetExecutableDetailsCallback(), test_task_runner_.get());
provider.ProvideStabilityMetrics(NULL);
histogram_tester_.ExpectUniqueSample(
WatcherMetricsProviderWin::kBrowserExitCodeHistogramName, 0, 11);
// Verify that the reported values are gone.
EXPECT_EQ(1u, ExitCodeRegistryPathValueCount());
}
TEST_F(WatcherMetricsProviderWinTest, DeletesExitcodeKeyWhenNotReporting) {
// Test that the registry at kRegistryPath is deleted when reporting is
// disabled.
// Record multiple success exits.
for (size_t i = 0; i < 11; ++i)
AddProcessExitCode(false, 0);
// Record a single failure.
AddProcessExitCode(false, 100);
// Make like the user is opted out of reporting.
WatcherMetricsProviderWin provider(
kRegistryPath, base::FilePath(), base::FilePath(),
GetExecutableDetailsCallback(), test_task_runner_.get());
provider.OnRecordingDisabled();
base::win::RegKey key;
{
// The deletion should be scheduled to the test_task_runner, and not happen
// immediately.
ASSERT_EQ(ERROR_SUCCESS,
key.Open(HKEY_CURRENT_USER, kRegistryPath, KEY_READ));
}
// Flush the task(s).
test_task_runner_->RunPendingTasks();
// Make sure the subkey for the pseudo process has been deleted on reporting.
ASSERT_EQ(ERROR_FILE_NOT_FOUND,
key.Open(HKEY_CURRENT_USER, kRegistryPath, KEY_READ));
}
} // namespace browser_watcher
|