Yunlian Jiang | 04dc5dc | 2013-04-23 15:05:05 -0700 | [diff] [blame] | 1 | #!/usr/bin/python |
| 2 | |
| 3 | # Copyright (c) 2013 The Chromium OS Authors. All rights reserved. |
| 4 | # Use of this source code is governed by a BSD-style license that can be |
| 5 | # found in the LICENSE file. |
| 6 | |
| 7 | import os |
| 8 | import time |
cmtice | e5a746f | 2013-11-25 14:57:10 -0500 | [diff] [blame] | 9 | import shlex |
Yunlian Jiang | 04dc5dc | 2013-04-23 15:05:05 -0700 | [diff] [blame] | 10 | |
| 11 | from utils import command_executer |
| 12 | |
Caroline Tice | 9277419 | 2013-09-10 16:29:18 -0700 | [diff] [blame] | 13 | TEST_THAT_PATH = '/usr/bin/test_that' |
| 14 | CHROME_MOUNT_DIR = '/tmp/chrome_root' |
| 15 | |
cmtice | e5a746f | 2013-11-25 14:57:10 -0500 | [diff] [blame] | 16 | def GetProfilerArgs (benchmark, profiler_args): |
| 17 | # Remove "--" from in front of profiler args. |
| 18 | args_list = shlex.split(profiler_args) |
| 19 | new_list = [] |
| 20 | for arg in args_list: |
| 21 | if arg[0:2] == '--': |
| 22 | arg = arg[2:] |
| 23 | new_list.append(arg) |
| 24 | args_list = new_list |
| 25 | |
| 26 | # Remove "perf_options=" from middle of profiler args. |
| 27 | new_list = [] |
| 28 | for arg in args_list: |
| 29 | idx = arg.find("perf_options=") |
| 30 | if idx != -1: |
| 31 | prefix = arg[0:idx] |
| 32 | suffix = arg[idx + len("perf_options=") + 1 : -1] |
| 33 | new_arg = prefix + "'" + suffix + "'" |
| 34 | new_list.append(new_arg) |
| 35 | else: |
| 36 | new_list.append(arg) |
| 37 | args_list = new_list |
| 38 | |
| 39 | return " ".join(args_list) |
Caroline Tice | 9277419 | 2013-09-10 16:29:18 -0700 | [diff] [blame] | 40 | |
Yunlian Jiang | 04dc5dc | 2013-04-23 15:05:05 -0700 | [diff] [blame] | 41 | |
| 42 | class SuiteRunner(object): |
| 43 | """ This defines the interface from crosperf to test script. |
| 44 | """ |
Caroline Tice | 9277419 | 2013-09-10 16:29:18 -0700 | [diff] [blame] | 45 | |
cmtice | 1390924 | 2014-03-11 13:38:07 -0700 | [diff] [blame^] | 46 | def __init__(self, logger_to_use=None, log_level="verbose"): |
Yunlian Jiang | 04dc5dc | 2013-04-23 15:05:05 -0700 | [diff] [blame] | 47 | self._logger = logger_to_use |
cmtice | 1390924 | 2014-03-11 13:38:07 -0700 | [diff] [blame^] | 48 | self.log_level = log_level |
| 49 | self._ce = command_executer.GetCommandExecuter(self._logger, |
| 50 | log_level=self.log_level) |
Yunlian Jiang | 04dc5dc | 2013-04-23 15:05:05 -0700 | [diff] [blame] | 51 | self._ct = command_executer.CommandTerminator() |
| 52 | |
cmtice | e5a746f | 2013-11-25 14:57:10 -0500 | [diff] [blame] | 53 | def Run(self, machine, label, benchmark, test_args, profiler_args): |
Luis Lozano | 53c88e9 | 2013-10-08 15:15:48 -0700 | [diff] [blame] | 54 | self.PinGovernorExecutionFrequencies(machine, label.chromeos_root) |
Yunlian Jiang | 04dc5dc | 2013-04-23 15:05:05 -0700 | [diff] [blame] | 55 | if benchmark.suite == "telemetry": |
| 56 | return self.Telemetry_Run(machine, label, benchmark) |
Caroline Tice | 9277419 | 2013-09-10 16:29:18 -0700 | [diff] [blame] | 57 | elif benchmark.suite == "telemetry_Crosperf": |
cmtice | e5a746f | 2013-11-25 14:57:10 -0500 | [diff] [blame] | 58 | return self.Telemetry_Crosperf_Run(machine, label, benchmark, |
| 59 | test_args, profiler_args) |
Caroline Tice | b47bff4 | 2013-08-19 15:59:02 -0700 | [diff] [blame] | 60 | elif benchmark.use_test_that: |
cmtice | e5a746f | 2013-11-25 14:57:10 -0500 | [diff] [blame] | 61 | return self.Test_That_Run(machine, label, benchmark, test_args, |
| 62 | profiler_args) |
Yunlian Jiang | 04dc5dc | 2013-04-23 15:05:05 -0700 | [diff] [blame] | 63 | else: |
cmtice | e5a746f | 2013-11-25 14:57:10 -0500 | [diff] [blame] | 64 | return self.Pyauto_Run(machine, label, benchmark, test_args, |
| 65 | profiler_args) |
Yunlian Jiang | 04dc5dc | 2013-04-23 15:05:05 -0700 | [diff] [blame] | 66 | |
Luis Lozano | 53c88e9 | 2013-10-08 15:15:48 -0700 | [diff] [blame] | 67 | def GetHighestStaticFrequency(self, machine_name, chromeos_root): |
| 68 | """ Gets the highest static frequency for the specified machine |
| 69 | """ |
Han Shen | fd0b178 | 2014-02-12 15:13:01 -0800 | [diff] [blame] | 70 | get_avail_freqs = ("cd /sys/devices/system/cpu/cpu0/cpufreq/; " |
| 71 | "if [[ -e scaling_available_frequencies ]]; then " |
| 72 | " cat scaling_available_frequencies; " |
| 73 | "else " |
| 74 | " cat scaling_max_freq ; " |
| 75 | "fi") |
Luis Lozano | 53c88e9 | 2013-10-08 15:15:48 -0700 | [diff] [blame] | 76 | ret, freqs_str, _ = self._ce.CrosRunCommand( |
| 77 | get_avail_freqs, return_output=True, machine=machine_name, |
| 78 | chromeos_root=chromeos_root) |
| 79 | self._logger.LogFatalIf(ret, "Could not get available frequencies " |
| 80 | "from machine: %s" % machine_name) |
| 81 | freqs = freqs_str.split() |
Han Shen | fd0b178 | 2014-02-12 15:13:01 -0800 | [diff] [blame] | 82 | ## When there is no scaling_available_frequencies file, |
| 83 | ## we have only 1 choice. |
| 84 | if len(freqs) == 1: |
| 85 | return freqs[0] |
Luis Lozano | 53c88e9 | 2013-10-08 15:15:48 -0700 | [diff] [blame] | 86 | # The dynamic frequency ends with a "1000". So, ignore it if found. |
| 87 | if freqs[0].endswith("1000"): |
| 88 | return freqs[1] |
| 89 | else: |
| 90 | return freqs[0] |
| 91 | |
| 92 | def PinGovernorExecutionFrequencies(self, machine_name, chromeos_root): |
| 93 | """ Set min and max frequencies to max static frequency |
| 94 | """ |
| 95 | highest_freq = self.GetHighestStaticFrequency(machine_name, chromeos_root) |
| 96 | BASH_FOR = "for f in {list}; do {body}; done" |
| 97 | CPUFREQ_DIRS = "/sys/devices/system/cpu/cpu*/cpufreq/" |
| 98 | change_max_freq = BASH_FOR.format(list=CPUFREQ_DIRS + "scaling_max_freq", |
| 99 | body="echo %s > $f" % highest_freq) |
| 100 | change_min_freq = BASH_FOR.format(list=CPUFREQ_DIRS + "scaling_min_freq", |
| 101 | body="echo %s > $f" % highest_freq) |
| 102 | change_perf_gov = BASH_FOR.format(list=CPUFREQ_DIRS + "scaling_governor", |
| 103 | body="echo performance > $f") |
cmtice | 1390924 | 2014-03-11 13:38:07 -0700 | [diff] [blame^] | 104 | if self.log_level == "average": |
| 105 | self._logger.LogOutput("Pinning governor execution frequencies for %s" |
| 106 | % machine_name) |
Luis Lozano | 53c88e9 | 2013-10-08 15:15:48 -0700 | [diff] [blame] | 107 | ret = self._ce.CrosRunCommand(" && ".join(("set -e ", |
| 108 | change_max_freq, |
| 109 | change_min_freq, |
| 110 | change_perf_gov)), |
| 111 | machine=machine_name, |
| 112 | chromeos_root=chromeos_root) |
| 113 | self._logger.LogFatalIf(ret, "Could not pin frequencies on machine: %s" |
| 114 | % machine_name) |
| 115 | |
Yunlian Jiang | 04dc5dc | 2013-04-23 15:05:05 -0700 | [diff] [blame] | 116 | def RebootMachine(self, machine_name, chromeos_root): |
Caroline Tice | 9277419 | 2013-09-10 16:29:18 -0700 | [diff] [blame] | 117 | command = "reboot && exit" |
Yunlian Jiang | 04dc5dc | 2013-04-23 15:05:05 -0700 | [diff] [blame] | 118 | self._ce.CrosRunCommand(command, machine=machine_name, |
| 119 | chromeos_root=chromeos_root) |
| 120 | time.sleep(60) |
Luis Lozano | 53c88e9 | 2013-10-08 15:15:48 -0700 | [diff] [blame] | 121 | # Whenever we reboot the machine, we need to restore the governor settings. |
| 122 | self.PinGovernorExecutionFrequencies(machine_name, chromeos_root) |
Yunlian Jiang | 04dc5dc | 2013-04-23 15:05:05 -0700 | [diff] [blame] | 123 | |
cmtice | e5a746f | 2013-11-25 14:57:10 -0500 | [diff] [blame] | 124 | def Pyauto_Run(self, machine, label, benchmark, test_args, profiler_args): |
Yunlian Jiang | 04dc5dc | 2013-04-23 15:05:05 -0700 | [diff] [blame] | 125 | """Run the run_remote_test.""" |
| 126 | options = "" |
| 127 | if label.board: |
| 128 | options += " --board=%s" % label.board |
| 129 | if test_args: |
| 130 | options += " %s" % test_args |
cmtice | e5a746f | 2013-11-25 14:57:10 -0500 | [diff] [blame] | 131 | if profiler_args: |
| 132 | options += " %s" % profiler_args |
Yunlian Jiang | 04dc5dc | 2013-04-23 15:05:05 -0700 | [diff] [blame] | 133 | command = "rm -rf /usr/local/autotest/results/*" |
| 134 | self._ce.CrosRunCommand(command, machine=machine, username="root", |
| 135 | chromeos_root=label.chromeos_root) |
| 136 | |
Luis Lozano | 53c88e9 | 2013-10-08 15:15:48 -0700 | [diff] [blame] | 137 | # We do this because PyAuto tests leave the machine in weird states. |
| 138 | # Rebooting between iterations has proven to help with this. |
Yunlian Jiang | 04dc5dc | 2013-04-23 15:05:05 -0700 | [diff] [blame] | 139 | self.RebootMachine(machine, label.chromeos_root) |
| 140 | |
Caroline Tice | f8b3a5a | 2013-09-25 10:45:57 -0700 | [diff] [blame] | 141 | command = ("./run_remote_tests.sh --use_emerged --remote=%s %s %s" % |
Yunlian Jiang | 04dc5dc | 2013-04-23 15:05:05 -0700 | [diff] [blame] | 142 | (machine, options, benchmark.test_name)) |
cmtice | 1390924 | 2014-03-11 13:38:07 -0700 | [diff] [blame^] | 143 | if self.log_level != "verbose": |
| 144 | self._logger.LogOutput("Running test.") |
| 145 | self._logger.LogOutput("CMD: %s" % command) |
Yunlian Jiang | 04dc5dc | 2013-04-23 15:05:05 -0700 | [diff] [blame] | 146 | return self._ce.ChrootRunCommand(label.chromeos_root, |
| 147 | command, |
| 148 | True, |
| 149 | self._ct) |
| 150 | |
cmtice | e5a746f | 2013-11-25 14:57:10 -0500 | [diff] [blame] | 151 | def Test_That_Run(self, machine, label, benchmark, test_args, profiler_args): |
Caroline Tice | b47bff4 | 2013-08-19 15:59:02 -0700 | [diff] [blame] | 152 | """Run the test_that test..""" |
| 153 | options = "" |
| 154 | if label.board: |
| 155 | options += " --board=%s" % label.board |
| 156 | if test_args: |
| 157 | options += " %s" % test_args |
cmtice | e5a746f | 2013-11-25 14:57:10 -0500 | [diff] [blame] | 158 | if profiler_args: |
| 159 | self._logger.LogError("test_that does not support profiler.") |
Caroline Tice | b47bff4 | 2013-08-19 15:59:02 -0700 | [diff] [blame] | 160 | command = "rm -rf /usr/local/autotest/results/*" |
| 161 | self._ce.CrosRunCommand(command, machine=machine, username="root", |
| 162 | chromeos_root=label.chromeos_root) |
| 163 | |
Luis Lozano | 53c88e9 | 2013-10-08 15:15:48 -0700 | [diff] [blame] | 164 | # We do this because PyAuto tests leave the machine in weird states. |
| 165 | # Rebooting between iterations has proven to help with this. |
Caroline Tice | b47bff4 | 2013-08-19 15:59:02 -0700 | [diff] [blame] | 166 | self.RebootMachine(machine, label.chromeos_root) |
| 167 | |
Caroline Tice | 9277419 | 2013-09-10 16:29:18 -0700 | [diff] [blame] | 168 | command = ("%s %s %s %s" % |
| 169 | (TEST_THAT_PATH, options, machine, benchmark.test_name)) |
cmtice | 1390924 | 2014-03-11 13:38:07 -0700 | [diff] [blame^] | 170 | if self.log_level != "verbose": |
| 171 | self._logger.LogOutput("Running test.") |
| 172 | self._logger.LogOutput("CMD: %s" % command) |
Caroline Tice | b47bff4 | 2013-08-19 15:59:02 -0700 | [diff] [blame] | 173 | return self._ce.ChrootRunCommand(label.chromeos_root, |
| 174 | command, |
| 175 | True, |
| 176 | self._ct) |
| 177 | |
Caroline Tice | 9277419 | 2013-09-10 16:29:18 -0700 | [diff] [blame] | 178 | |
cmtice | e5a746f | 2013-11-25 14:57:10 -0500 | [diff] [blame] | 179 | def Telemetry_Crosperf_Run (self, machine, label, benchmark, test_args, |
| 180 | profiler_args): |
Caroline Tice | 9277419 | 2013-09-10 16:29:18 -0700 | [diff] [blame] | 181 | if not os.path.isdir(label.chrome_src): |
| 182 | self._logger.LogFatal("Cannot find chrome src dir to" |
cmtice | 5f3ccbd | 2013-11-20 16:36:04 -0800 | [diff] [blame] | 183 | " run telemetry: %s" % label.chrome_src) |
Caroline Tice | 9277419 | 2013-09-10 16:29:18 -0700 | [diff] [blame] | 184 | |
cmtice | e5a746f | 2013-11-25 14:57:10 -0500 | [diff] [blame] | 185 | profiler_args = GetProfilerArgs (benchmark, profiler_args) |
Caroline Tice | 9277419 | 2013-09-10 16:29:18 -0700 | [diff] [blame] | 186 | chrome_root_options = "" |
| 187 | |
| 188 | # If chrome_src is outside the chroot, mount it when entering the |
| 189 | # chroot. |
| 190 | if label.chrome_src.find(label.chromeos_root) == -1: |
| 191 | chrome_root_options = (" --chrome_root={0} --chrome_root_mount={1} " |
| 192 | " FEATURES=\"-usersandbox\" " |
| 193 | "CHROME_ROOT={2}".format(label.chrome_src, |
| 194 | CHROME_MOUNT_DIR, |
| 195 | CHROME_MOUNT_DIR)) |
| 196 | |
cmtice | e5a746f | 2013-11-25 14:57:10 -0500 | [diff] [blame] | 197 | args_string = "" |
| 198 | if test_args: |
| 199 | # Strip double quotes off args (so we can wrap them in single |
| 200 | # quotes, to pass through to Telemetry). |
| 201 | if test_args[0] == '"' and test_args[-1] == '"': |
| 202 | test_args = test_args[1:-1] |
| 203 | args_string = "test_args='%s'" % test_args |
| 204 | cmd = ('{0} --board={1} --args="{2} test={3} ' |
Caroline Tice | 9277419 | 2013-09-10 16:29:18 -0700 | [diff] [blame] | 205 | '{4}" {5} telemetry_Crosperf'.format(TEST_THAT_PATH, |
| 206 | label.board, |
cmtice | e5a746f | 2013-11-25 14:57:10 -0500 | [diff] [blame] | 207 | args_string, |
Caroline Tice | 9277419 | 2013-09-10 16:29:18 -0700 | [diff] [blame] | 208 | benchmark.test_name, |
| 209 | profiler_args, |
| 210 | machine)) |
cmtice | 1390924 | 2014-03-11 13:38:07 -0700 | [diff] [blame^] | 211 | if self.log_level != "verbose": |
| 212 | self._logger.LogOutput("Running test.") |
| 213 | self._logger.LogOutput("CMD: %s" % cmd) |
Caroline Tice | 9277419 | 2013-09-10 16:29:18 -0700 | [diff] [blame] | 214 | return self._ce.ChrootRunCommand (label.chromeos_root, |
| 215 | cmd, |
| 216 | return_output=True, |
| 217 | command_terminator=self._ct, |
| 218 | cros_sdk_options=chrome_root_options) |
| 219 | |
| 220 | |
Yunlian Jiang | 04dc5dc | 2013-04-23 15:05:05 -0700 | [diff] [blame] | 221 | def Telemetry_Run(self, machine, label, benchmark): |
| 222 | if not os.path.isdir(label.chrome_src): |
Caroline Tice | 6aa8528 | 2013-08-06 16:02:04 -0700 | [diff] [blame] | 223 | self._logger.LogFatal("Cannot find chrome src dir to" |
| 224 | " run telemetry.") |
Yunlian Jiang | 04dc5dc | 2013-04-23 15:05:05 -0700 | [diff] [blame] | 225 | rsa_key = os.path.join(label.chromeos_root, |
| 226 | "src/scripts/mod_for_test_scripts/ssh_keys/testing_rsa") |
| 227 | |
| 228 | cmd = ("cd {0} && " |
Yunlian Jiang | fefa5c0 | 2013-07-02 15:47:02 -0700 | [diff] [blame] | 229 | "./tools/perf/run_measurement " |
Yunlian Jiang | 04dc5dc | 2013-04-23 15:05:05 -0700 | [diff] [blame] | 230 | "--browser=cros-chrome " |
| 231 | "--output-format=csv " |
| 232 | "--remote={1} " |
| 233 | "--identity {2} " |
| 234 | "{3} {4}".format(label.chrome_src, machine, |
| 235 | rsa_key, |
| 236 | benchmark.test_name, |
| 237 | benchmark.test_args)) |
cmtice | 1390924 | 2014-03-11 13:38:07 -0700 | [diff] [blame^] | 238 | if self.log_level != "verbose": |
| 239 | self._logger.LogOutput("Running test.") |
| 240 | self._logger.LogOutput("CMD: %s" % cmd) |
Yunlian Jiang | 04dc5dc | 2013-04-23 15:05:05 -0700 | [diff] [blame] | 241 | return self._ce.RunCommand(cmd, return_output=True, |
| 242 | print_to_console=False) |
| 243 | |
| 244 | def Terminate(self): |
| 245 | self._ct.Terminate() |
| 246 | |
| 247 | |
| 248 | class MockSuiteRunner(object): |
| 249 | def __init__(self): |
Caroline Tice | 9277419 | 2013-09-10 16:29:18 -0700 | [diff] [blame] | 250 | self._true = True |
Yunlian Jiang | 04dc5dc | 2013-04-23 15:05:05 -0700 | [diff] [blame] | 251 | |
Caroline Tice | 9277419 | 2013-09-10 16:29:18 -0700 | [diff] [blame] | 252 | def Run(self, *_args): |
| 253 | if self._true: |
| 254 | return ["", "", 0] |
| 255 | else: |
| 256 | return ["", "", 0] |