blob: 436fbda7109cd6b8cb93dc502fde3c80b7b6388b [file] [log] [blame]
// Copyright 2021 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/metrics/clean_exit_beacon.h"
#include <memory>
#include <string>
#include "base/files/file_path.h"
#include "base/files/file_util.h"
#include "base/files/scoped_temp_dir.h"
#include "base/memory/scoped_refptr.h"
#include "base/metrics/field_trial.h"
#include "base/strings/string_number_conversions.h"
#include "base/strings/stringprintf.h"
#include "base/test/gtest_util.h"
#include "base/test/metrics/histogram_tester.h"
#include "base/test/mock_entropy_provider.h"
#include "base/test/task_environment.h"
#include "base/time/time.h"
#include "build/build_config.h"
#include "components/metrics/metrics_pref_names.h"
#include "components/prefs/pref_registry_simple.h"
#include "components/prefs/pref_service_factory.h"
#include "components/prefs/testing_pref_service.h"
#include "components/prefs/testing_pref_store.h"
#include "components/variations/pref_names.h"
#include "components/variations/service/variations_safe_mode_constants.h"
#include "components/variations/variations_test_utils.h"
#include "testing/gtest/include/gtest/gtest.h"
namespace metrics {
namespace {
using ::variations::SetUpExtendedSafeModeExperiment;
const wchar_t kDummyWindowsRegistryKey[] = L"";
// Creates and returns well-formed beacon file contents with the given values.
std::string CreateWellFormedBeaconFileContents(bool exited_cleanly,
int crash_streak) {
const std::string exited_cleanly_str = exited_cleanly ? "true" : "false";
return base::StringPrintf(
"{\n"
" \"user_experience_metrics.stability.exited_cleanly\": %s,\n"
" \"variations_crash_streak\": %s\n"
"}",
exited_cleanly_str.data(), base::NumberToString(crash_streak).data());
}
} // namespace
class TestCleanExitBeacon : public CleanExitBeacon {
public:
explicit TestCleanExitBeacon(
PrefService* local_state,
const base::FilePath& user_data_dir = base::FilePath())
: CleanExitBeacon(kDummyWindowsRegistryKey,
user_data_dir,
local_state,
version_info::Channel::UNKNOWN) {
Initialize();
}
~TestCleanExitBeacon() override = default;
};
class CleanExitBeaconTest : public ::testing::Test {
public:
void SetUp() override {
metrics::CleanExitBeacon::RegisterPrefs(prefs_.registry());
ASSERT_TRUE(user_data_dir_.CreateUniqueTempDir());
}
protected:
base::HistogramTester histogram_tester_;
TestingPrefServiceSimple prefs_;
base::ScopedTempDir user_data_dir_;
private:
base::test::TaskEnvironment task_environment_;
};
class BeaconFileTest : public testing::WithParamInterface<std::string>,
public CleanExitBeaconTest {};
struct BeaconTestParams {
const std::string test_name;
bool beacon_file_exists;
const std::string beacon_file_contents;
};
// Used for testing beacon files that are not well-formed, do not exist, etc.
class BadBeaconFileTest : public testing::WithParamInterface<BeaconTestParams>,
public CleanExitBeaconTest {};
// Verify that the crash streak metric is 0 when default pref values are used.
TEST_F(CleanExitBeaconTest, CrashStreakMetricWithDefaultPrefs) {
CleanExitBeacon::ResetStabilityExitedCleanlyForTesting(&prefs_);
TestCleanExitBeacon clean_exit_beacon(&prefs_);
histogram_tester_.ExpectUniqueSample("Variations.SafeMode.Streak.Crashes", 0,
1);
}
// Verify that the crash streak metric is 0 when prefs are explicitly set to
// their defaults.
TEST_F(CleanExitBeaconTest, CrashStreakMetricWithNoCrashes) {
// The default value for kStabilityExitedCleanly is true, but defaults can
// change, so we explicitly set it to true here. Similarly, we explicitly set
// kVariationsCrashStreak to 0.
CleanExitBeacon::SetStabilityExitedCleanlyForTesting(&prefs_, true);
prefs_.SetInteger(variations::prefs::kVariationsCrashStreak, 0);
TestCleanExitBeacon clean_exit_beacon(&prefs_);
histogram_tester_.ExpectUniqueSample("Variations.SafeMode.Streak.Crashes", 0,
1);
}
// Verify that the crash streak metric is correctly recorded when there is a
// non-zero crash streak.
TEST_F(CleanExitBeaconTest, CrashStreakMetricWithSomeCrashes) {
// The default value for kStabilityExitedCleanly is true, but defaults can
// change, so we explicitly set it to true here.
CleanExitBeacon::SetStabilityExitedCleanlyForTesting(&prefs_, true);
prefs_.SetInteger(variations::prefs::kVariationsCrashStreak, 1);
TestCleanExitBeacon clean_exit_beacon(&prefs_);
histogram_tester_.ExpectUniqueSample("Variations.SafeMode.Streak.Crashes", 1,
1);
}
// Verify that the crash streak is correctly incremented and recorded when the
// last Chrome session did not exit cleanly.
TEST_F(CleanExitBeaconTest, CrashIncrementsCrashStreak) {
CleanExitBeacon::SetStabilityExitedCleanlyForTesting(&prefs_, false);
prefs_.SetInteger(variations::prefs::kVariationsCrashStreak, 1);
TestCleanExitBeacon clean_exit_beacon(&prefs_);
EXPECT_EQ(prefs_.GetInteger(variations::prefs::kVariationsCrashStreak), 2);
histogram_tester_.ExpectUniqueSample("Variations.SafeMode.Streak.Crashes", 2,
1);
}
// Verify that the crash streak is correctly incremented and recorded when the
// last Chrome session did not exit cleanly and the default crash streak value
// is used.
TEST_F(CleanExitBeaconTest,
CrashIncrementsCrashStreakWithDefaultCrashStreakPref) {
CleanExitBeacon::SetStabilityExitedCleanlyForTesting(&prefs_, false);
TestCleanExitBeacon clean_exit_beacon(&prefs_);
EXPECT_EQ(prefs_.GetInteger(variations::prefs::kVariationsCrashStreak), 1);
histogram_tester_.ExpectUniqueSample("Variations.SafeMode.Streak.Crashes", 1,
1);
}
#if !defined(OS_ANDROID) && !defined(OS_IOS)
// TODO(crbug/1248239): Run these tests on Android once the Extended Variations
// Safe Mode experiment is enabled on Clank.
// TODO(crbug/1255305): When the experiment is re-enabled on iOS, re-enable
// these tests.
// Verify that (a) the client is excluded from the Extended Variations Safe Mode
// experiment and (b) no attempt is made to read the beacon file when no user
// data dir is provided.
TEST_F(CleanExitBeaconTest, InitWithoutUserDataDir) {
TestCleanExitBeacon beacon(&prefs_, base::FilePath());
EXPECT_FALSE(
base::FieldTrialList::IsTrialActive(variations::kExtendedSafeModeTrial));
histogram_tester_.ExpectTotalCount(
"Variations.ExtendedSafeMode.GotVariationsFileContents", 0);
}
// Verify that the beacon file is not read when the client is not in the
// SignalAndWriteViaFileUtil experiment group. It is possible for a client to
// have the file and to not be in the SignalAndWriteViaFileUtil group when the
// client was in the group in a previous session and then switched groups, e.g.
// via kResetVariationState.
TEST_F(CleanExitBeaconTest, FileIgnoredByControlGroup) {
// Deliberately set the prefs so that we can later verify that their values
// have not changed.
int expected_crash_streak = 0;
prefs_.SetInteger(variations::prefs::kVariationsCrashStreak,
expected_crash_streak);
CleanExitBeacon::SetStabilityExitedCleanlyForTesting(&prefs_, true);
// Prepare a well-formed beacon file, which we expect to be ignored. (If it
// were used, then the prefs' values would change.)
const base::FilePath user_data_dir_path = user_data_dir_.GetPath();
const base::FilePath temp_beacon_file_path =
user_data_dir_path.Append(variations::kVariationsFilename);
ASSERT_LT(0, base::WriteFile(temp_beacon_file_path,
CreateWellFormedBeaconFileContents(
/*exited_cleanly=*/false, /*crash_streak=*/2)
.data()));
const std::string group_name = variations::kControlGroup;
SetUpExtendedSafeModeExperiment(group_name);
ASSERT_EQ(group_name, base::FieldTrialList::FindFullName(
variations::kExtendedSafeModeTrial));
TestCleanExitBeacon beacon(&prefs_, user_data_dir_path);
EXPECT_TRUE(prefs_.GetBoolean(prefs::kStabilityExitedCleanly));
EXPECT_EQ(prefs_.GetInteger(variations::prefs::kVariationsCrashStreak),
expected_crash_streak);
histogram_tester_.ExpectTotalCount(
"Variations.ExtendedSafeMode.GotVariationsFileContents", 0);
}
INSTANTIATE_TEST_SUITE_P(
All,
BadBeaconFileTest,
::testing::Values(
BeaconTestParams{.test_name = "NoVariationsFile",
.beacon_file_exists = false,
.beacon_file_contents = ""},
BeaconTestParams{.test_name = "EmptyVariationsFile",
.beacon_file_exists = true,
.beacon_file_contents = ""},
BeaconTestParams{.test_name = "NotDictionary",
.beacon_file_exists = true,
.beacon_file_contents = "{abc123"},
BeaconTestParams{.test_name = "EmptyDictionary",
.beacon_file_exists = true,
.beacon_file_contents = "{}"},
BeaconTestParams{
.test_name = "MissingCrashStreak",
.beacon_file_exists = true,
.beacon_file_contents =
"{\"user_experience_metrics.stability.exited_cleanly\": true}"},
BeaconTestParams{
.test_name = "MissingBeacon",
.beacon_file_exists = true,
.beacon_file_contents = "{\"variations_crash_streak\": 1}"}),
[](const ::testing::TestParamInfo<BeaconTestParams>& params) {
return params.param.test_name;
});
// Verify that the inability to get the beacon file's contents for a plethora of
// reasons (a) doesn't crash and (b) correctly records the
// GotVariationsFileContents metric.
TEST_P(BadBeaconFileTest, InitWithUnusableBeaconFile) {
SetUpExtendedSafeModeExperiment(variations::kSignalAndWriteViaFileUtilGroup);
BeaconTestParams params = GetParam();
const base::FilePath user_data_dir_path = user_data_dir_.GetPath();
if (params.beacon_file_exists) {
const base::FilePath temp_beacon_file_path =
user_data_dir_path.Append(variations::kVariationsFilename);
ASSERT_LT(0, base::WriteFile(temp_beacon_file_path,
params.beacon_file_contents.data()));
}
TestCleanExitBeacon beacon(&prefs_, user_data_dir_path);
histogram_tester_.ExpectUniqueSample(
"Variations.ExtendedSafeMode.GotVariationsFileContents", false, 1);
}
// Verify that successfully reading the beacon file's contents results in
// correctly (a) setting the |did_previous_session_exit_cleanly_| field and (b)
// recording metrics when the last session exited cleanly.
TEST_F(CleanExitBeaconTest, InitWithBeaconFile) {
SetUpExtendedSafeModeExperiment(variations::kSignalAndWriteViaFileUtilGroup);
const base::FilePath user_data_dir_path = user_data_dir_.GetPath();
const base::FilePath temp_beacon_file_path =
user_data_dir_path.Append(variations::kVariationsFilename);
const int num_crashes = 2;
ASSERT_LT(0, base::WriteFile(
temp_beacon_file_path,
CreateWellFormedBeaconFileContents(
/*exited_cleanly=*/true, /*crash_streak=*/num_crashes)
.data()));
TestCleanExitBeacon clean_exit_beacon(&prefs_, user_data_dir_path);
histogram_tester_.ExpectUniqueSample(
"Variations.ExtendedSafeMode.GotVariationsFileContents", true, 1);
EXPECT_TRUE(clean_exit_beacon.exited_cleanly());
histogram_tester_.ExpectUniqueSample("Variations.SafeMode.Streak.Crashes",
num_crashes, 1);
}
// Verify that successfully reading the beacon file's contents results in
// correctly (a) setting the |did_previous_session_exit_cleanly_| field and (b)
// recording metrics when the last session did not exit cleanly.
TEST_F(CleanExitBeaconTest, InitWithCrashAndBeaconFile) {
SetUpExtendedSafeModeExperiment(variations::kSignalAndWriteViaFileUtilGroup);
const base::FilePath user_data_dir_path = user_data_dir_.GetPath();
const base::FilePath temp_beacon_file_path =
user_data_dir_path.Append(variations::kVariationsFilename);
const int last_session_num_crashes = 2;
ASSERT_LT(0, base::WriteFile(temp_beacon_file_path,
CreateWellFormedBeaconFileContents(
/*exited_cleanly=*/false,
/*crash_streak=*/last_session_num_crashes)
.data()));
const int updated_num_crashes = last_session_num_crashes + 1;
TestCleanExitBeacon clean_exit_beacon(&prefs_, user_data_dir_path);
histogram_tester_.ExpectUniqueSample(
"Variations.ExtendedSafeMode.GotVariationsFileContents", true, 1);
EXPECT_FALSE(clean_exit_beacon.exited_cleanly());
histogram_tester_.ExpectUniqueSample("Variations.SafeMode.Streak.Crashes",
updated_num_crashes, 1);
}
#endif // !defined(OS_ANDROID) && !defined(OS_IOS)
#if defined(OS_ANDROID) || defined(OS_IOS)
// TODO(crbug/1248239, crbug/1255305): Remove this test once the Extended
// Variations Safe Mode experiment is enabled on Clank and re-enabled iOS.
// Verify that the beacon file, if any, is ignored on Android and iOS.
TEST_F(CleanExitBeaconTest, BeaconFileIgnoredOnMobile) {
// Set up the beacon file such that the previous session did not exit cleanly
// and the running crash streak is 2. The file (and thus these values) are
// expected to be ignored.
const base::FilePath user_data_dir_path = user_data_dir_.GetPath();
const base::FilePath temp_beacon_file_path =
user_data_dir_path.Append(variations::kVariationsFilename);
const int last_session_num_crashes = 2;
ASSERT_LT(0, base::WriteFile(temp_beacon_file_path,
CreateWellFormedBeaconFileContents(
/*exited_cleanly=*/false,
/*crash_streak=*/last_session_num_crashes)
.data()));
// Set up the PrefService such that the previous session exited cleanly and
// the running crash streak is 0. The PrefService (and thus these values) are
// expected to be used.
CleanExitBeacon::SetStabilityExitedCleanlyForTesting(&prefs_, true);
const int expected_num_crashes = 0;
prefs_.SetInteger(variations::prefs::kVariationsCrashStreak,
expected_num_crashes);
TestCleanExitBeacon clean_exit_beacon(&prefs_, user_data_dir_path);
// Verify that (a) the GotVariationsFileContents metric was not emitted and
// (b) the PrefService was used (and not the beacon file).
histogram_tester_.ExpectTotalCount(
"Variations.ExtendedSafeMode.GotVariationsFileContents", 0);
EXPECT_TRUE(clean_exit_beacon.exited_cleanly());
histogram_tester_.ExpectUniqueSample("Variations.SafeMode.Streak.Crashes",
expected_num_crashes, 1);
}
#endif // defined(OS_ANDROID) || defined(OS_IOS)
// Verify that attempting to write synchronously DCHECKs for clients that do not
// belong to the SignalAndWriteViaFileUtil experiment group.
TEST_F(CleanExitBeaconTest, WriteBeaconValue_SynchronousWriteDcheck) {
SetUpExtendedSafeModeExperiment(variations::kControlGroup);
ASSERT_EQ(variations::kControlGroup, base::FieldTrialList::FindFullName(
variations::kExtendedSafeModeTrial));
TestCleanExitBeacon clean_exit_beacon(&prefs_, user_data_dir_.GetPath());
EXPECT_DCHECK_DEATH(
clean_exit_beacon.WriteBeaconValue(/*exited_cleanly=*/false,
/*write_synchronously=*/true));
histogram_tester_.ExpectTotalCount(
"Variations.ExtendedSafeMode.WritePrefsTime", 0);
}
} // namespace metrics