robliao | 2ff5332 | 2016-09-23 19:28:24 | [diff] [blame] | 1 | # Field Trial Testing Configuration |
| 2 | |
isherman | a509c185 | 2017-03-23 21:11:35 | [diff] [blame] | 3 | This directory contains the `fieldtrial_testing_config.json` configuration file, |
| 4 | which is used to ensure test coverage of active field trials. |
robliao | 2ff5332 | 2016-09-23 19:28:24 | [diff] [blame] | 5 | |
isherman | a509c185 | 2017-03-23 21:11:35 | [diff] [blame] | 6 | For each study, the first available experiment after platform filtering is used |
| 7 | as the default experiment for Chromium builds. This experiment is also used for |
John Abd-El-Malek | 6cd762c | 2021-06-15 18:59:37 | [diff] [blame] | 8 | perf bots and various browser tests in the waterfall (e.g. browser_tests, |
| 9 | components_browsertests, content_browsertests, extensions_browsertests, interactive_ui_tests and |
| 10 | sync_integration_tests). It is not used by unit test targets. |
robliao | 2ff5332 | 2016-09-23 19:28:24 | [diff] [blame] | 11 | |
isherman | a509c185 | 2017-03-23 21:11:35 | [diff] [blame] | 12 | > Note: This configuration applies specifically to Chromium developer builds. |
Luc Nguyen | 1180c66 | 2022-02-08 20:38:59 | [diff] [blame] | 13 | > Chrome branded / official builds do not use these definitions by default. |
| 14 | > They can, however, be enabled with the `--enable-field-trial-config` switch. |
Luc Nguyen | 0e516644a | 2022-02-18 15:32:24 | [diff] [blame] | 15 | > For Chrome branded Android builds, due to binary size constraints, the |
| 16 | > configuration cannot be applied by this switch. |
robliao | 2ff5332 | 2016-09-23 19:28:24 | [diff] [blame] | 17 | |
Alexei Svitkine | 312686762 | 2020-12-02 23:03:02 | [diff] [blame] | 18 | > Note: Non-developer builds of Chromium (for example, non-Chrome browsers, |
| 19 | > or Chromium builds provided by Linux distros) should disable the testing |
Luc Nguyen | 1180c66 | 2022-02-08 20:38:59 | [diff] [blame] | 20 | > config by either (1) specifying the GN flag `disable_fieldtrial_testing_config=true`, |
| 21 | > (2) specifying the `--disable-field-trial-config` switch, (3) specifying field |
| 22 | > trials using the `--force-fieldtrials` switch, or (4) specifying a custom |
| 23 | > variations server URL using the `--variations-server-url` switch. In order to |
| 24 | > apply the testing configuration as well as specify additional field trials |
| 25 | > (using `--force-fieldtrials`), the `--enable-field-trial-config` switch can be |
| 26 | > used. |
| 27 | |
| 28 | > Note: An experiment in the testing configuration file that enables/disables a |
| 29 | > feature that is explicitly overridden (e.g. using the `--enable-features` or |
| 30 | > `--disable-features` switches) will be skipped. |
Alexei Svitkine | 312686762 | 2020-12-02 23:03:02 | [diff] [blame] | 31 | |
robliao | 2ff5332 | 2016-09-23 19:28:24 | [diff] [blame] | 32 | ## Config File Format |
| 33 | |
| 34 | ```json |
| 35 | { |
| 36 | "StudyName": [ |
| 37 | { |
| 38 | "platforms": [Array of Strings of Valid Platforms for These Experiments], |
| 39 | "experiments": [ |
| 40 | { |
| 41 | "//0": "Comment Line 0. Lines 0-9 are supported.", |
| 42 | "name": "ExperimentName", |
| 43 | "params": {Dictionary of Params}, |
| 44 | "enable_features": [Array of Strings of Features], |
| 45 | "disable_features": [Array of Strings of Features] |
| 46 | }, |
| 47 | ... |
| 48 | ] |
| 49 | }, |
| 50 | ... |
| 51 | ], |
| 52 | ... |
| 53 | } |
| 54 | ``` |
| 55 | |
| 56 | The config file is a dictionary at the top level mapping a study name to an |
Carlos Knippschild | e12741b | 2019-12-12 01:26:23 | [diff] [blame] | 57 | array of *study configurations*. The study name in the configuration file |
| 58 | **must** match the FieldTrial name used in the Chromium client code. |
isherman | a509c185 | 2017-03-23 21:11:35 | [diff] [blame] | 59 | |
| 60 | > Note: Many newer studies do not use study names in the client code at all, and |
| 61 | > rely on the [Feature List API][FeatureListAPI] instead. Nonetheless, if a |
Carlos Knippschild | e12741b | 2019-12-12 01:26:23 | [diff] [blame] | 62 | > study has a server-side configuration, the study `name` specified here |
| 63 | > must still match the name specified in the server-side configuration; this is |
Joe Mason | 8c711c20 | 2021-07-14 20:04:14 | [diff] [blame] | 64 | > used to implement consistency checks on the server. |
robliao | 2ff5332 | 2016-09-23 19:28:24 | [diff] [blame] | 65 | |
| 66 | ### Study Configurations |
| 67 | |
isherman | a509c185 | 2017-03-23 21:11:35 | [diff] [blame] | 68 | Each *study configuration* is a dictionary containing `platforms` and |
robliao | 2ff5332 | 2016-09-23 19:28:24 | [diff] [blame] | 69 | `experiments`. |
| 70 | |
isherman | a509c185 | 2017-03-23 21:11:35 | [diff] [blame] | 71 | `platforms` is an array of strings, indicating the targetted platforms. The |
thefrog | 95a334fc | 2022-06-28 16:00:28 | [diff] [blame^] | 72 | strings may be `android`, `android_weblayer`, `android_webview`, `chromeos`, |
| 73 | `chromeos_lacros`, `ios`, `linux`, `mac`, or `windows`. |
robliao | 2ff5332 | 2016-09-23 19:28:24 | [diff] [blame] | 74 | |
| 75 | `experiments` is an array containing the *experiments*. |
| 76 | |
isherman | a509c185 | 2017-03-23 21:11:35 | [diff] [blame] | 77 | The converter uses the `platforms` array to determine which experiment to use |
| 78 | for the study. The first experiment matching the active platform will be used. |
| 79 | |
| 80 | > Note: While `experiments` is defined as an array, currently only the first |
| 81 | > entry is used*\**. We would love to be able to test all possible study |
| 82 | > configurations, but don't currently have the buildbot resources to do so. |
| 83 | > Hence, the current best-practice is to identify which experiment group is the |
| 84 | > most likely candidate for ultimate launch, and to test that configuration. If |
| 85 | > there is a server-side configuration for this study, it's typically |
| 86 | > appropriate to copy/paste one of the experiment definitions into this file. |
| 87 | > |
| 88 | > *\** |
| 89 | > <small> |
| 90 | > Technically, there is one exception: If there's a forcing_flag group |
| 91 | > specified in the config, that group will be used if there's a corresponding |
| 92 | > forcing_flag specified on the command line. You, dear reader, should |
| 93 | > probably not use this fancy mechanism unless you're <em>quite</em> sure you |
| 94 | > know what you're doing =) |
| 95 | > </small> |
robliao | 2ff5332 | 2016-09-23 19:28:24 | [diff] [blame] | 96 | |
| 97 | ### Experiments (Groups) |
| 98 | Each *experiment* is a dictionary that must contain the `name` key, identifying |
Ilya Sherman | 8422599 | 2020-02-28 00:39:21 | [diff] [blame] | 99 | the experiment group name. |
isherman | a509c185 | 2017-03-23 21:11:35 | [diff] [blame] | 100 | |
Ilya Sherman | 8422599 | 2020-02-28 00:39:21 | [diff] [blame] | 101 | > Note: Studies should typically use the [Feature List API][FeatureListAPI]. For |
| 102 | > such studies, the experiment `name` specified in the testing config is still |
| 103 | > required (for legacy reasons), but it is ignored. However, the lists of |
| 104 | > `enable_features`, `disable_features`, and `params` **must** match the server |
| 105 | > config. This is enforced via server-side Tricorder checks. |
| 106 | > |
| 107 | > For old-school studies that do check the actual experiment group name in the |
| 108 | > client code, the `name` **must** exactly match the client code and the server |
| 109 | > config. |
robliao | 2ff5332 | 2016-09-23 19:28:24 | [diff] [blame] | 110 | |
Jonathan Backer | 60ac0ec | 2020-06-17 15:40:53 | [diff] [blame] | 111 | The remaining keys -- `enable_features`, `disable_features`, `min_os_version`, |
| 112 | and `params` -- are optional. |
robliao | 2ff5332 | 2016-09-23 19:28:24 | [diff] [blame] | 113 | |
robliao | 2ff5332 | 2016-09-23 19:28:24 | [diff] [blame] | 114 | `enable_features` and `disable_features` indicate which features should be |
isherman | a509c185 | 2017-03-23 21:11:35 | [diff] [blame] | 115 | enabled and disabled, respectively, through the |
| 116 | [Feature List API][FeatureListAPI]. |
| 117 | |
Jonathan Backer | 60ac0ec | 2020-06-17 15:40:53 | [diff] [blame] | 118 | `min_os_version` indicates a minimum OS version level (e.g. "10.0.0") to apply |
| 119 | the experiment. This string is decoded as a `base::Version`. The same version is |
| 120 | applied to all platforms. If you need different versions for different |
| 121 | platforms, you will need to use different studies. |
| 122 | |
Ilya Sherman | 8422599 | 2020-02-28 00:39:21 | [diff] [blame] | 123 | `params` is a dictionary mapping parameter name to parameter value. |
| 124 | |
isherman | a509c185 | 2017-03-23 21:11:35 | [diff] [blame] | 125 | > Reminder: The variations framework does not actually fetch any field trial |
| 126 | > definitions from the server for Chromium builds, so any feature enabling or |
| 127 | > disabling must be configured here. |
| 128 | |
| 129 | [FeatureListAPI]: https://cs.chromium.org/chromium/src/base/feature_list.h |
robliao | 2ff5332 | 2016-09-23 19:28:24 | [diff] [blame] | 130 | |
| 131 | #### Comments |
| 132 | |
| 133 | Each experiment may have up to 10 lines of comments. The comment key must be of |
| 134 | the form `//N` where `N` is between 0 and 9. |
| 135 | |
| 136 | ```json |
| 137 | { |
| 138 | "AStudyWithExperimentComment": [ |
| 139 | { |
Paul Miller | ad77b789 | 2018-07-11 20:07:43 | [diff] [blame] | 140 | "platforms": ["chromeos", "linux", "mac", "windows"], |
robliao | 2ff5332 | 2016-09-23 19:28:24 | [diff] [blame] | 141 | "experiments": [ |
| 142 | { |
| 143 | "//0": "This is the first comment line.", |
| 144 | "//1": "This is the second comment line.", |
| 145 | "name": "DesktopExperiment" |
| 146 | } |
| 147 | ] |
| 148 | } |
| 149 | ] |
| 150 | } |
| 151 | ``` |
| 152 | |
| 153 | ### Specifying Different Experiments for Different Platforms |
| 154 | Simply specify two different study configurations in the study: |
| 155 | |
| 156 | ```json |
| 157 | { |
| 158 | "DifferentExperimentsPerPlatform": [ |
| 159 | { |
Paul Miller | ad77b789 | 2018-07-11 20:07:43 | [diff] [blame] | 160 | "platforms": ["chromeos", "linux", "mac", "windows"], |
robliao | 2ff5332 | 2016-09-23 19:28:24 | [diff] [blame] | 161 | "experiments": [{ "name": "DesktopExperiment" }] |
| 162 | }, |
| 163 | { |
| 164 | "platforms": ["android", "ios"], |
| 165 | "experiments": [{ "name": "MobileExperiment" }] |
| 166 | } |
| 167 | ] |
| 168 | } |
| 169 | ``` |
| 170 | |
| 171 | ## Presubmit |
| 172 | The presubmit tool will ensure that your changes follow the correct ordering and |
| 173 | format. |