Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(78)

Unified Diff: components/variations/variations_seed_processor_unittest.cc

Issue 71753004: Allow variation id with forcing flag for special setup & unit tests. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Address code review comments Created 7 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: components/variations/variations_seed_processor_unittest.cc
diff --git a/components/variations/variations_seed_processor_unittest.cc b/components/variations/variations_seed_processor_unittest.cc
index 7b86def9eb3566f808012193305866d4e1a15d7e..357846c1bf677f2acf79d3638e097c041b2c5e4e 100644
--- a/components/variations/variations_seed_processor_unittest.cc
+++ b/components/variations/variations_seed_processor_unittest.cc
@@ -29,6 +29,8 @@ const char kNonFlagGroupName[] = "non_flag_group";
const char kForcingFlag1[] = "flag_test1";
const char kForcingFlag2[] = "flag_test2";
+const VariationID kExperimentId = 123;
+
// Adds an experiment to |study| with the specified |name| and |probability|.
Study_Experiment* AddExperiment(const std::string& name, int probability,
Study* study) {
@@ -90,6 +92,50 @@ class VariationsSeedProcessorTest : public ::testing::Test {
DISALLOW_COPY_AND_ASSIGN(VariationsSeedProcessorTest);
};
+TEST_F(VariationsSeedProcessorTest,
+ AllowForceGroupAndVariationIdWithoutCommandLine) {
+ base::FieldTrialList field_trial_list(NULL);
+
+ Study study = CreateStudyWithFlagGroups(100, 0, 0);
+ study.mutable_experiment(1)->set_google_web_experiment_id(kExperimentId);
+ study.mutable_filter()->add_channel(Study_Channel_DEV);
+ study.mutable_filter()->add_channel(Study_Channel_CANARY);
+ study.mutable_filter()->add_platform(Study_Platform_PLATFORM_ANDROID);
+
+ VariationsSeedProcessor().CreateTrialFromStudy(
+ ProcessedStudy(&study, 100, false));
+
+ EXPECT_EQ(kNonFlagGroupName,
+ base::FieldTrialList::FindFullName(kFlagStudyName));
+
+ VariationID id = GetGoogleVariationID(GOOGLE_WEB_PROPERTIES, kFlagStudyName,
+ kFlagGroup1Name);
+ EXPECT_EQ(0, id);
+}
+
+TEST_F(VariationsSeedProcessorTest,
+ AllowForceGroupAndVariationIdWithCommandLine) {
+ CommandLine::ForCurrentProcess()->AppendSwitch(kForcingFlag1);
+
+ base::FieldTrialList field_trial_list(NULL);
+
+ Study study = CreateStudyWithFlagGroups(100, 0, 0);
+ study.mutable_experiment(1)->set_google_web_experiment_id(kExperimentId);
+ study.mutable_filter()->add_channel(Study_Channel_DEV);
+ study.mutable_filter()->add_channel(Study_Channel_CANARY);
+ study.mutable_filter()->add_platform(Study_Platform_PLATFORM_ANDROID);
+
+ VariationsSeedProcessor().CreateTrialFromStudy(
+ ProcessedStudy(&study, 100, false));
+
+ EXPECT_EQ(kFlagGroup1Name,
+ base::FieldTrialList::FindFullName(kFlagStudyName));
+
+ VariationID id = GetGoogleVariationID(GOOGLE_WEB_PROPERTIES, kFlagStudyName,
+ kFlagGroup1Name);
+ EXPECT_EQ(kExperimentId, id);
+}
+
TEST_F(VariationsSeedProcessorTest, CheckStudyChannel) {
VariationsSeedProcessor seed_processor;
@@ -424,6 +470,46 @@ TEST_F(VariationsSeedProcessorTest, FilterAndValidateStudies) {
EXPECT_EQ(kTrial3Name, processed_studies[1].study->name());
}
+TEST_F(VariationsSeedProcessorTest,
+ ForbidForceGroupWithVariationIdWithoutCommandLine) {
+ base::FieldTrialList field_trial_list(NULL);
+
+ Study study = CreateStudyWithFlagGroups(100, 0, 0);
+ study.mutable_experiment(1)->set_google_web_experiment_id(kExperimentId);
+ // Add windows platform makes forcing_flag and variation Id incompatible.
+ study.mutable_filter()->add_platform(Study_Platform_PLATFORM_WINDOWS);
+
+ VariationsSeedProcessor().CreateTrialFromStudy(
+ ProcessedStudy(&study, 100, false));
+
+ EXPECT_EQ(kNonFlagGroupName,
+ base::FieldTrialList::FindFullName(kFlagStudyName));
+ VariationID id = GetGoogleVariationID(GOOGLE_WEB_PROPERTIES, kFlagStudyName,
+ kFlagGroup1Name);
+ EXPECT_EQ(0, id);
+}
+
+TEST_F(VariationsSeedProcessorTest,
+ ForbidForceGroupWithVariationIdWithCommandLine) {
+ CommandLine::ForCurrentProcess()->AppendSwitch(kForcingFlag1);
+
+ base::FieldTrialList field_trial_list(NULL);
+
+ Study study = CreateStudyWithFlagGroups(100, 0, 0);
+ study.mutable_experiment(1)->set_google_web_experiment_id(kExperimentId);
+ // Add windows platform makes forcing_flag and variation Id incompatible.
+ study.mutable_filter()->add_platform(Study_Platform_PLATFORM_WINDOWS);
+
+ VariationsSeedProcessor().CreateTrialFromStudy(
+ ProcessedStudy(&study, 100, false));
+
+ EXPECT_EQ(kFlagGroup1Name,
+ base::FieldTrialList::FindFullName(kFlagStudyName));
+ VariationID id = GetGoogleVariationID(GOOGLE_WEB_PROPERTIES, kFlagStudyName,
+ kFlagGroup1Name);
+ EXPECT_EQ(0, id);
+}
+
// Test that the group for kForcingFlag1 is forced.
TEST_F(VariationsSeedProcessorTest, ForceGroupWithFlag1) {
CommandLine::ForCurrentProcess()->AppendSwitch(kForcingFlag1);
@@ -553,6 +639,34 @@ TEST_F(VariationsSeedProcessorTest,
}
}
+TEST_F(VariationsSeedProcessorTest, TestAllowVariationIdWithForcingFlag) {
+ Study study = CreateStudyWithFlagGroups(100, 0, 0);
+ bool allowBoth = VariationsSeedProcessor().
Alexei Svitkine (slow) 2013/11/14 22:34:33 Use C++ naming convention.
yao 2013/11/14 23:41:15 Done.
+ AllowVariationIdWithForcingFlag(study);
Alexei Svitkine (slow) 2013/11/14 22:34:33 This should be indented 2 more. Also, can you re-
yao 2013/11/14 23:41:15 Done.
+ EXPECT_FALSE(allowBoth);
Alexei Svitkine (slow) 2013/11/14 22:34:33 You can just inline this, without a variable. EXP
yao 2013/11/14 23:41:15 Done.
+
+ study.mutable_filter()->add_channel(Study_Channel_DEV);
+ allowBoth = VariationsSeedProcessor().
+ AllowVariationIdWithForcingFlag(study);
+ EXPECT_FALSE(allowBoth);
+
+ study.mutable_filter()->add_platform(Study_Platform_PLATFORM_ANDROID);
+ allowBoth = VariationsSeedProcessor().
+ AllowVariationIdWithForcingFlag(study);
+ EXPECT_TRUE(allowBoth);
+
+ study.mutable_filter()->add_channel(Study_Channel_CANARY);
+ study.mutable_filter()->add_platform(Study_Platform_PLATFORM_IOS);
+ allowBoth = VariationsSeedProcessor().
+ AllowVariationIdWithForcingFlag(study);
+ EXPECT_TRUE(allowBoth);
+
+ study.mutable_filter()->add_platform(Study_Platform_PLATFORM_WINDOWS);
+ allowBoth = VariationsSeedProcessor().
+ AllowVariationIdWithForcingFlag(study);
+ EXPECT_FALSE(allowBoth);
+}
+
TEST_F(VariationsSeedProcessorTest, ValidateStudy) {
VariationsSeedProcessor seed_processor;

Powered by Google App Engine
This is Rietveld 408576698