// Copyright 2016 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "chrome/browser/ash/hats/hats_finch_helper.h"
#include <map>
#include <set>
#include <string>
#include "base/strings/string_number_conversions.h"
#include "base/test/scoped_feature_list.h"
#include "chrome/browser/ash/hats/hats_config.h"
#include "chrome/common/chrome_features.h"
#include "chrome/common/pref_names.h"
#include "chrome/test/base/testing_profile.h"
#include "components/prefs/pref_service.h"
#include "content/public/test/browser_task_environment.h"
#include "testing/gtest/include/gtest/gtest.h"
namespace ash {
namespace {
constexpr char kValidTriggerId[] = "1gksUIDXA0jBnuK8T6R0NfspWBvA";
} // namespace
class HatsFinchHelperTest : public testing::Test {
public:
HatsFinchHelperTest() {}
HatsFinchHelperTest(const HatsFinchHelperTest&) = delete;
HatsFinchHelperTest& operator=(const HatsFinchHelperTest&) = delete;
void SetFeatureParams(const base::FieldTrialParams& params) {
scoped_feature_list_.InitAndEnableFeatureWithParameters(
features::kHappinessTrackingSystem, params);
}
base::FieldTrialParams CreateParamMap(
std::string prob,
std::string cycle_length,
std::string start_date,
std::string reset_survey,
std::string reset,
std::string trigger_id,
std::string custom_client_data = std::string(),
std::string enabled_for_googlers = std::string()) {
base::FieldTrialParams params;
params[HatsFinchHelper::kProbabilityParam] = prob;
params[HatsFinchHelper::kSurveyCycleLengthParam] = cycle_length;
params[HatsFinchHelper::kSurveyStartDateMsParam] = start_date;
params[HatsFinchHelper::kResetSurveyCycleParam] = reset_survey;
params[HatsFinchHelper::kResetAllParam] = reset;
params[HatsFinchHelper::kTriggerIdParam] = trigger_id;
params[HatsFinchHelper::kCustomClientDataParam] = custom_client_data;
params[HatsFinchHelper::kEnabledForGooglersParam] = enabled_for_googlers;
return params;
}
private:
// Must outlive |profile_|.
content::BrowserTaskEnvironment task_environment_;
protected:
TestingProfile profile_;
private:
base::test::ScopedFeatureList scoped_feature_list_;
};
TEST_F(HatsFinchHelperTest, InitFinchSeed_ValidValues) {
base::FieldTrialParams params = CreateParamMap(
"1.0", "7", "1475613895337", "false", "false", kValidTriggerId);
SetFeatureParams(params);
HatsFinchHelper hats_finch_helper(&profile_, kHatsGeneralSurvey);
EXPECT_EQ(hats_finch_helper.probability_of_pick_, 1.0);
EXPECT_EQ(hats_finch_helper.survey_cycle_length_, 7);
EXPECT_EQ(hats_finch_helper.first_survey_start_date_,
base::Time().FromMillisecondsSinceUnixEpoch(1475613895337LL));
EXPECT_EQ(hats_finch_helper.trigger_id_, kValidTriggerId);
EXPECT_FALSE(hats_finch_helper.reset_survey_cycle_);
EXPECT_FALSE(hats_finch_helper.reset_hats_);
}
TEST_F(HatsFinchHelperTest, InitFinchSeed_Invalidalues) {
base::FieldTrialParams params =
CreateParamMap("-0.1", "-1", "-1000", "false", "false", "1A2B3C4D5");
SetFeatureParams(params);
base::Time current_time = base::Time::Now();
HatsFinchHelper hats_finch_helper(&profile_, kHatsGeneralSurvey);
EXPECT_EQ(hats_finch_helper.probability_of_pick_, 0.0);
EXPECT_EQ(hats_finch_helper.survey_cycle_length_, INT_MAX);
EXPECT_GE(hats_finch_helper.first_survey_start_date_
.InMillisecondsFSinceUnixEpoch(),
2 * current_time.InMillisecondsFSinceUnixEpoch());
}
TEST_F(HatsFinchHelperTest, TestComputeNextDate) {
base::FieldTrialParams params =
CreateParamMap("0",
"7", // 7 Days survey cycle length
"0", "false", "false", kValidTriggerId);
SetFeatureParams(params);
base::Time current_time = base::Time::Now();
HatsFinchHelper hats_finch_helper(&profile_, kHatsGeneralSurvey);
// Case 1
base::Time start_date = current_time - base::Days(10);
hats_finch_helper.first_survey_start_date_ = start_date;
base::Time expected_date =
start_date + base::Days(2 * hats_finch_helper.survey_cycle_length_);
EXPECT_EQ(
expected_date.InMillisecondsFSinceUnixEpoch(),
hats_finch_helper.ComputeNextEndDate().InMillisecondsFSinceUnixEpoch());
// Case 2
base::Time future_time = current_time + base::Days(10);
hats_finch_helper.first_survey_start_date_ = future_time;
expected_date =
future_time + base::Days(hats_finch_helper.survey_cycle_length_);
EXPECT_EQ(
expected_date.InMillisecondsFSinceUnixEpoch(),
hats_finch_helper.ComputeNextEndDate().InMillisecondsFSinceUnixEpoch());
}
TEST_F(HatsFinchHelperTest, ResetSurveyCycle) {
base::FieldTrialParams params = CreateParamMap(
"0.5", "7", "1475613895337", "true", "false", kValidTriggerId);
SetFeatureParams(params);
int64_t initial_timestamp = base::Time::Now().ToInternalValue();
PrefService* pref_service = profile_.GetPrefs();
pref_service->SetBoolean(prefs::kHatsDeviceIsSelected, true);
pref_service->SetInt64(prefs::kHatsSurveyCycleEndTimestamp,
initial_timestamp);
base::Time current_time = base::Time::Now();
HatsFinchHelper hats_finch_helper(&profile_, kHatsGeneralSurvey);
EXPECT_EQ(hats_finch_helper.probability_of_pick_, 0);
EXPECT_EQ(hats_finch_helper.survey_cycle_length_, INT_MAX);
EXPECT_GE(hats_finch_helper.first_survey_start_date_
.InMillisecondsFSinceUnixEpoch(),
2 * current_time.InMillisecondsFSinceUnixEpoch());
EXPECT_FALSE(pref_service->GetBoolean(prefs::kHatsDeviceIsSelected));
EXPECT_NE(pref_service->GetInt64(prefs::kHatsSurveyCycleEndTimestamp),
initial_timestamp);
}
TEST_F(HatsFinchHelperTest, ResetHats) {
base::FieldTrialParams params = CreateParamMap(
"0.5", "7", "1475613895337", "false", "true", kValidTriggerId);
SetFeatureParams(params);
int64_t initial_timestamp = base::Time::Now().ToInternalValue();
PrefService* pref_service = profile_.GetPrefs();
pref_service->SetBoolean(prefs::kHatsDeviceIsSelected, true);
pref_service->SetInt64(prefs::kHatsSurveyCycleEndTimestamp,
initial_timestamp);
pref_service->SetInt64(prefs::kHatsLastInteractionTimestamp,
initial_timestamp);
base::Time current_time = base::Time::Now();
HatsFinchHelper hats_finch_helper(&profile_, kHatsGeneralSurvey);
EXPECT_EQ(hats_finch_helper.probability_of_pick_, 0);
EXPECT_EQ(hats_finch_helper.survey_cycle_length_, INT_MAX);
EXPECT_GE(hats_finch_helper.first_survey_start_date_
.InMillisecondsFSinceUnixEpoch(),
2 * current_time.InMillisecondsFSinceUnixEpoch());
EXPECT_FALSE(pref_service->GetBoolean(prefs::kHatsDeviceIsSelected));
EXPECT_NE(pref_service->GetInt64(prefs::kHatsSurveyCycleEndTimestamp),
initial_timestamp);
EXPECT_NE(pref_service->GetInt64(prefs::kHatsLastInteractionTimestamp),
initial_timestamp);
}
TEST_F(HatsFinchHelperTest, NoCustomClientData) {
base::FieldTrialParams params = CreateParamMap(
"1.0", "7", "1475613895337", "false", "false", kValidTriggerId);
SetFeatureParams(params);
HatsFinchHelper hats_finch_helper(&profile_, kHatsGeneralSurvey);
EXPECT_EQ(hats_finch_helper.GetCustomClientDataAsString(kHatsGeneralSurvey),
std::string());
}
TEST_F(HatsFinchHelperTest, CustomClientData) {
base::FieldTrialParams params = CreateParamMap(
"1.0", "7", "1475613895337", "false", "false", kValidTriggerId, "12345");
SetFeatureParams(params);
HatsFinchHelper hats_finch_helper(&profile_, kHatsGeneralSurvey);
EXPECT_EQ(hats_finch_helper.GetCustomClientDataAsString(kHatsGeneralSurvey),
"12345");
}
TEST_F(HatsFinchHelperTest, NoEnabledForGooglersConfig) {
base::FieldTrialParams params = CreateParamMap(
"1.0", "7", "1475613895337", "false", "false", kValidTriggerId);
SetFeatureParams(params);
HatsFinchHelper hats_finch_helper(&profile_, kHatsGeneralSurvey);
EXPECT_EQ(hats_finch_helper.IsEnabledForGooglers(kHatsGeneralSurvey), false);
}
TEST_F(HatsFinchHelperTest, EnabledForGooglers) {
base::FieldTrialParams params =
CreateParamMap("1.0", "7", "1475613895337", "false", "false",
kValidTriggerId, "", "true");
SetFeatureParams(params);
HatsFinchHelper hats_finch_helper(&profile_, kHatsGeneralSurvey);
EXPECT_EQ(hats_finch_helper.IsEnabledForGooglers(kHatsGeneralSurvey), true);
}
} // namespace ash