blob: 8e8cd4ec1a4d6cfad74ebb5bf083838c397f1b16 [file] [log] [blame]
Hung-Te Linf2f78f72012-02-08 19:27:11 +08001#!/usr/bin/python -u
Hung-Te Linf2f78f72012-02-08 19:27:11 +08002# -*- coding: utf-8 -*-
3#
Jon Salz37eccbd2012-05-25 16:06:52 +08004# Copyright (c) 2012 The Chromium OS Authors. All rights reserved.
Hung-Te Linf2f78f72012-02-08 19:27:11 +08005# Use of this source code is governed by a BSD-style license that can be
6# found in the LICENSE file.
7
8'''
9The main factory flow that runs the factory test and finalizes a device.
10'''
11
Jon Salze12c2b32013-06-25 16:24:34 +080012import glob
Jon Salz0405ab52012-03-16 15:26:52 +080013import logging
14import os
Jon Salz73e0fd02012-04-04 11:46:38 +080015import Queue
Jon Salze12c2b32013-06-25 16:24:34 +080016import shutil
Jon Salz77c151e2012-08-28 07:20:37 +080017import signal
Jon Salz0405ab52012-03-16 15:26:52 +080018import sys
Jon Salzeff94182013-06-19 15:06:28 +080019import syslog
Jon Salz0405ab52012-03-16 15:26:52 +080020import threading
21import time
22import traceback
Jon Salz258a40c2012-04-19 12:34:01 +080023import uuid
Jon Salzb10cf512012-08-09 17:29:21 +080024from xmlrpclib import Binary
Hung-Te Linf2f78f72012-02-08 19:27:11 +080025from collections import deque
26from optparse import OptionParser
Hung-Te Linf2f78f72012-02-08 19:27:11 +080027
Jon Salz0697cbf2012-07-04 15:14:04 +080028import factory_common # pylint: disable=W0611
jcliangcd688182012-08-20 21:01:26 +080029from cros.factory import event_log
30from cros.factory import system
Cheng-Yi Chiangd0406522013-04-01 15:40:18 +080031from cros.factory.event_log import EventLog, FloatDigit
Tom Wai-Hong Tamd33723e2013-04-10 21:14:37 +080032from cros.factory.event_log_watcher import EventLogWatcher
jcliangcd688182012-08-20 21:01:26 +080033from cros.factory.goofy import test_environment
34from cros.factory.goofy import time_sanitizer
Jon Salz83591782012-06-26 11:09:58 +080035from cros.factory.goofy import updater
jcliangcd688182012-08-20 21:01:26 +080036from cros.factory.goofy.goofy_rpc import GoofyRPC
37from cros.factory.goofy.invocation import TestInvocation
38from cros.factory.goofy.prespawner import Prespawner
Cheng-Yi Chiang344b10f2013-05-03 16:44:03 +080039from cros.factory.goofy.system_log_manager import SystemLogManager
jcliangcd688182012-08-20 21:01:26 +080040from cros.factory.goofy.web_socket_manager import WebSocketManager
Cheng-Yi Chiangd8186952013-04-04 23:41:14 +080041from cros.factory.system.board import Board, BoardException
jcliangcd688182012-08-20 21:01:26 +080042from cros.factory.system.charge_manager import ChargeManager
Cheng-Yi Chiangcdfa4182013-05-05 03:20:19 +080043from cros.factory.system.core_dump_manager import CoreDumpManager
Jon Salzce6a7f82013-06-10 18:22:54 +080044from cros.factory.system.cpufreq_manager import CpufreqManager
Jon Salzb92c5112012-09-21 15:40:11 +080045from cros.factory.system import disk_space
jcliangcd688182012-08-20 21:01:26 +080046from cros.factory.test import factory
47from cros.factory.test import state
Jon Salz51528e12012-07-02 18:54:45 +080048from cros.factory.test import shopfloor
Jon Salz83591782012-06-26 11:09:58 +080049from cros.factory.test import utils
50from cros.factory.test.event import Event
51from cros.factory.test.event import EventClient
52from cros.factory.test.event import EventServer
jcliangcd688182012-08-20 21:01:26 +080053from cros.factory.test.factory import TestState
Dean Liao592e4d52013-01-10 20:06:39 +080054from cros.factory.tools.key_filter import KeyFilter
Jon Salz2af235d2013-06-24 14:47:21 +080055from cros.factory.utils import file_utils
Jon Salz78c32392012-07-25 14:18:29 +080056from cros.factory.utils.process_utils import Spawn
Hung-Te Linf2f78f72012-02-08 19:27:11 +080057
58
Jon Salz2f757d42012-06-27 17:06:42 +080059CUSTOM_DIR = os.path.join(factory.FACTORY_PATH, 'custom')
Hung-Te Linf2f78f72012-02-08 19:27:11 +080060HWID_CFG_PATH = '/usr/local/share/chromeos-hwid/cfg'
Chun-ta Lin279e7e92013-02-19 17:40:39 +080061CACHES_DIR = os.path.join(factory.get_state_root(), "caches")
Hung-Te Linf2f78f72012-02-08 19:27:11 +080062
Jon Salz8796e362012-05-24 11:39:09 +080063# File that suppresses reboot if present (e.g., for development).
64NO_REBOOT_FILE = '/var/log/factory.noreboot'
65
Jon Salz5c344f62012-07-13 14:31:16 +080066# Value for tests_after_shutdown that forces auto-run (e.g., after
67# a factory update, when the available set of tests might change).
68FORCE_AUTO_RUN = 'force_auto_run'
69
cychiang21886742012-07-05 15:16:32 +080070RUN_QUEUE_TIMEOUT_SECS = 10
71
Justin Chuang83813982013-05-13 01:26:32 +080072# Sync disks when battery level is higher than this value.
73# Otherwise, power loss during disk sync operation may incur even worse outcome.
74MIN_BATTERY_LEVEL_FOR_DISK_SYNC = 1.0
75
Jon Salze12c2b32013-06-25 16:24:34 +080076MAX_CRASH_FILE_SIZE = 64*1024
77
Jon Salz758e6cc2012-04-03 15:47:07 +080078GOOFY_IN_CHROOT_WARNING = '\n' + ('*' * 70) + '''
79You are running Goofy inside the chroot. Autotests are not supported.
80
81To use Goofy in the chroot, first install an Xvnc server:
82
Jon Salz0697cbf2012-07-04 15:14:04 +080083 sudo apt-get install tightvncserver
Jon Salz758e6cc2012-04-03 15:47:07 +080084
85...and then start a VNC X server outside the chroot:
86
Jon Salz0697cbf2012-07-04 15:14:04 +080087 vncserver :10 &
88 vncviewer :10
Jon Salz758e6cc2012-04-03 15:47:07 +080089
90...and run Goofy as follows:
91
Jon Salz0697cbf2012-07-04 15:14:04 +080092 env --unset=XAUTHORITY DISPLAY=localhost:10 python goofy.py
Jon Salz758e6cc2012-04-03 15:47:07 +080093''' + ('*' * 70)
Jon Salz73e0fd02012-04-04 11:46:38 +080094suppress_chroot_warning = False
Hung-Te Linf2f78f72012-02-08 19:27:11 +080095
96def get_hwid_cfg():
Jon Salz0697cbf2012-07-04 15:14:04 +080097 '''
98 Returns the HWID config tag, or an empty string if none can be found.
99 '''
100 if 'CROS_HWID' in os.environ:
101 return os.environ['CROS_HWID']
102 if os.path.exists(HWID_CFG_PATH):
103 with open(HWID_CFG_PATH, 'rt') as hwid_cfg_handle:
104 return hwid_cfg_handle.read().strip()
105 return ''
Hung-Te Linf2f78f72012-02-08 19:27:11 +0800106
107
108def find_test_list():
Jon Salz0697cbf2012-07-04 15:14:04 +0800109 '''
110 Returns the path to the active test list, based on the HWID config tag.
Jon Salzfb615892013-02-01 18:04:35 +0800111
112 The algorithm is:
113
114 - Try $FACTORY/test_lists/active (the symlink reflecting the option chosen
115 in the UI).
116 - For each of $FACTORY/custom, $FACTORY/test_lists (and
117 autotest/site_tests/suite_Factory for backward compatibility):
118 - Try test_list_${hwid_cfg} (if hwid_cfg is set)
119 - Try test_list
120 - Try test_list.generic
Jon Salz0697cbf2012-07-04 15:14:04 +0800121 '''
Jon Salzfb615892013-02-01 18:04:35 +0800122 # If the 'active' symlink is present, that trumps everything else.
123 if os.path.lexists(factory.ACTIVE_TEST_LIST_SYMLINK):
124 return os.path.realpath(factory.ACTIVE_TEST_LIST_SYMLINK)
125
Jon Salz0697cbf2012-07-04 15:14:04 +0800126 hwid_cfg = get_hwid_cfg()
Hung-Te Linf2f78f72012-02-08 19:27:11 +0800127
Jon Salzfb615892013-02-01 18:04:35 +0800128 search_dirs = [CUSTOM_DIR, factory.TEST_LISTS_PATH]
Jon Salz4be56b02012-12-22 07:30:46 +0800129 if not utils.in_chroot():
130 # Also look in suite_Factory. For backward compatibility only;
131 # new boards should just put the test list in the "test_lists"
132 # directory.
133 search_dirs.insert(0, os.path.join(
134 os.path.dirname(factory.FACTORY_PATH),
135 'autotest', 'site_tests', 'suite_Factory'))
Jon Salz2f757d42012-06-27 17:06:42 +0800136
Jon Salzfb615892013-02-01 18:04:35 +0800137
138 search_files = []
Jon Salz0697cbf2012-07-04 15:14:04 +0800139 if hwid_cfg:
Jon Salzfb615892013-02-01 18:04:35 +0800140 search_files += [hwid_cfg]
141 search_files += ['test_list', 'test_list.generic']
Hung-Te Linf2f78f72012-02-08 19:27:11 +0800142
Jon Salz0697cbf2012-07-04 15:14:04 +0800143 for d in search_dirs:
144 for f in search_files:
145 test_list = os.path.join(d, f)
146 if os.path.exists(test_list):
147 return test_list
Hung-Te Linf2f78f72012-02-08 19:27:11 +0800148
Jon Salz0697cbf2012-07-04 15:14:04 +0800149 logging.warn('Cannot find test lists named any of %s in any of %s',
150 search_files, search_dirs)
151 return None
Jon Salz73e0fd02012-04-04 11:46:38 +0800152
Jon Salzfb615892013-02-01 18:04:35 +0800153
Jon Salz73e0fd02012-04-04 11:46:38 +0800154_inited_logging = False
Hung-Te Linf2f78f72012-02-08 19:27:11 +0800155
156class Goofy(object):
Jon Salz0697cbf2012-07-04 15:14:04 +0800157 '''
158 The main factory flow.
159
160 Note that all methods in this class must be invoked from the main
161 (event) thread. Other threads, such as callbacks and TestInvocation
162 methods, should instead post events on the run queue.
163
164 TODO: Unit tests. (chrome-os-partner:7409)
165
166 Properties:
167 uuid: A unique UUID for this invocation of Goofy.
168 state_instance: An instance of FactoryState.
169 state_server: The FactoryState XML/RPC server.
170 state_server_thread: A thread running state_server.
171 event_server: The EventServer socket server.
172 event_server_thread: A thread running event_server.
173 event_client: A client to the event server.
174 connection_manager: The connection_manager object.
Cheng-Yi Chiang835f2682013-05-06 22:15:48 +0800175 system_log_manager: The SystemLogManager object.
176 core_dump_manager: The CoreDumpManager object.
Jon Salz0697cbf2012-07-04 15:14:04 +0800177 ui_process: The factory ui process object.
178 run_queue: A queue of callbacks to invoke from the main thread.
179 invocations: A map from FactoryTest objects to the corresponding
180 TestInvocations objects representing active tests.
181 tests_to_run: A deque of tests that should be run when the current
182 test(s) complete.
183 options: Command-line options.
184 args: Command-line args.
185 test_list: The test list.
186 event_handlers: Map of Event.Type to the method used to handle that
187 event. If the method has an 'event' argument, the event is passed
188 to the handler.
189 exceptions: Exceptions encountered in invocation threads.
Jon Salz3c493bb2013-02-07 17:24:58 +0800190 last_log_disk_space_message: The last message we logged about disk space
191 (to avoid duplication).
Cheng-Yi Chiangcdfa4182013-05-05 03:20:19 +0800192 last_kick_sync_time: The last time to kick system_log_manager to sync
193 because of core dump files (to avoid kicking too soon then abort the
194 sync.)
Jon Salz416f9cc2013-05-10 18:32:50 +0800195 hooks: A Hooks object containing hooks for various Goofy actions.
Jon Salz0697cbf2012-07-04 15:14:04 +0800196 '''
197 def __init__(self):
198 self.uuid = str(uuid.uuid4())
199 self.state_instance = None
200 self.state_server = None
201 self.state_server_thread = None
Jon Salz16d10542012-07-23 12:18:45 +0800202 self.goofy_rpc = None
Jon Salz0697cbf2012-07-04 15:14:04 +0800203 self.event_server = None
204 self.event_server_thread = None
205 self.event_client = None
206 self.connection_manager = None
Vic Yang4953fc12012-07-26 16:19:53 +0800207 self.charge_manager = None
Jon Salz8fa8e832012-07-13 19:04:09 +0800208 self.time_sanitizer = None
209 self.time_synced = False
Jon Salz0697cbf2012-07-04 15:14:04 +0800210 self.log_watcher = None
Cheng-Yi Chiang344b10f2013-05-03 16:44:03 +0800211 self.system_log_manager = None
Cheng-Yi Chiang835f2682013-05-06 22:15:48 +0800212 self.core_dump_manager = None
Jon Salz0697cbf2012-07-04 15:14:04 +0800213 self.event_log = None
214 self.prespawner = None
215 self.ui_process = None
Jon Salzc79a9982012-08-30 04:42:01 +0800216 self.dummy_shopfloor = None
Jon Salz0697cbf2012-07-04 15:14:04 +0800217 self.run_queue = Queue.Queue()
218 self.invocations = {}
219 self.tests_to_run = deque()
220 self.visible_test = None
221 self.chrome = None
Jon Salz416f9cc2013-05-10 18:32:50 +0800222 self.hooks = None
Vic Yangd8990da2013-06-27 16:57:43 +0800223 self.cpu_usage_watcher = None
Jon Salz0697cbf2012-07-04 15:14:04 +0800224
225 self.options = None
226 self.args = None
227 self.test_list = None
228 self.on_ui_startup = []
229 self.env = None
Jon Salzb22d1172012-08-06 10:38:57 +0800230 self.last_idle = None
Jon Salz0697cbf2012-07-04 15:14:04 +0800231 self.last_shutdown_time = None
cychiang21886742012-07-05 15:16:32 +0800232 self.last_update_check = None
Jon Salz8fa8e832012-07-13 19:04:09 +0800233 self.last_sync_time = None
Jon Salzb92c5112012-09-21 15:40:11 +0800234 self.last_log_disk_space_time = None
Jon Salz3c493bb2013-02-07 17:24:58 +0800235 self.last_log_disk_space_message = None
Justin Chuang83813982013-05-13 01:26:32 +0800236 self.last_check_battery_time = None
237 self.last_check_battery_message = None
Cheng-Yi Chiangcdfa4182013-05-05 03:20:19 +0800238 self.last_kick_sync_time = None
Vic Yang311ddb82012-09-26 12:08:28 +0800239 self.exclusive_items = set()
Jon Salz0f996602012-10-03 15:26:48 +0800240 self.event_log = None
Dean Liao592e4d52013-01-10 20:06:39 +0800241 self.key_filter = None
Jon Salzce6a7f82013-06-10 18:22:54 +0800242 self.cpufreq_manager = None
Jon Salz0697cbf2012-07-04 15:14:04 +0800243
Jon Salz85a39882012-07-05 16:45:04 +0800244 def test_or_root(event, parent_or_group=True):
245 '''Returns the test affected by a particular event.
246
247 Args:
248 event: The event containing an optional 'path' attribute.
249 parent_on_group: If True, returns the top-level parent for a test (the
250 root node of the tests that need to be run together if the given test
251 path is to be run).
252 '''
Jon Salz0697cbf2012-07-04 15:14:04 +0800253 try:
254 path = event.path
255 except AttributeError:
256 path = None
257
258 if path:
Jon Salz85a39882012-07-05 16:45:04 +0800259 test = self.test_list.lookup_path(path)
260 if parent_or_group:
261 test = test.get_top_level_parent_or_group()
262 return test
Jon Salz0697cbf2012-07-04 15:14:04 +0800263 else:
264 return self.test_list
265
266 self.event_handlers = {
267 Event.Type.SWITCH_TEST: self.handle_switch_test,
268 Event.Type.SHOW_NEXT_ACTIVE_TEST:
269 lambda event: self.show_next_active_test(),
270 Event.Type.RESTART_TESTS:
271 lambda event: self.restart_tests(root=test_or_root(event)),
272 Event.Type.AUTO_RUN:
273 lambda event: self.auto_run(root=test_or_root(event)),
274 Event.Type.RE_RUN_FAILED:
275 lambda event: self.re_run_failed(root=test_or_root(event)),
276 Event.Type.RUN_TESTS_WITH_STATUS:
277 lambda event: self.run_tests_with_status(
278 event.status,
279 root=test_or_root(event)),
280 Event.Type.REVIEW:
281 lambda event: self.show_review_information(),
282 Event.Type.UPDATE_SYSTEM_INFO:
283 lambda event: self.update_system_info(),
Jon Salz0697cbf2012-07-04 15:14:04 +0800284 Event.Type.STOP:
Jon Salz85a39882012-07-05 16:45:04 +0800285 lambda event: self.stop(root=test_or_root(event, False),
Jon Salz6dc031d2013-06-19 13:06:23 +0800286 fail=getattr(event, 'fail', False),
287 reason=getattr(event, 'reason', None)),
Jon Salz36fbbb52012-07-05 13:45:06 +0800288 Event.Type.SET_VISIBLE_TEST:
289 lambda event: self.set_visible_test(
290 self.test_list.lookup_path(event.path)),
Jon Salz4712ac72013-02-07 17:12:05 +0800291 Event.Type.CLEAR_STATE:
292 lambda event: self.clear_state(self.test_list.lookup_path(event.path)),
Jon Salz0697cbf2012-07-04 15:14:04 +0800293 }
294
295 self.exceptions = []
296 self.web_socket_manager = None
297
298 def destroy(self):
299 if self.chrome:
300 self.chrome.kill()
301 self.chrome = None
Jon Salzc79a9982012-08-30 04:42:01 +0800302 if self.dummy_shopfloor:
303 self.dummy_shopfloor.kill()
304 self.dummy_shopfloor = None
Jon Salz0697cbf2012-07-04 15:14:04 +0800305 if self.ui_process:
306 utils.kill_process_tree(self.ui_process, 'ui')
307 self.ui_process = None
308 if self.web_socket_manager:
309 logging.info('Stopping web sockets')
310 self.web_socket_manager.close()
311 self.web_socket_manager = None
312 if self.state_server_thread:
313 logging.info('Stopping state server')
314 self.state_server.shutdown()
315 self.state_server_thread.join()
316 self.state_server.server_close()
317 self.state_server_thread = None
318 if self.state_instance:
319 self.state_instance.close()
320 if self.event_server_thread:
321 logging.info('Stopping event server')
322 self.event_server.shutdown() # pylint: disable=E1101
323 self.event_server_thread.join()
324 self.event_server.server_close()
325 self.event_server_thread = None
326 if self.log_watcher:
327 if self.log_watcher.IsThreadStarted():
328 self.log_watcher.StopWatchThread()
329 self.log_watcher = None
Cheng-Yi Chiang344b10f2013-05-03 16:44:03 +0800330 if self.system_log_manager:
331 if self.system_log_manager.IsThreadRunning():
332 self.system_log_manager.StopSyncThread()
333 self.system_log_manager = None
Jon Salz0697cbf2012-07-04 15:14:04 +0800334 if self.prespawner:
335 logging.info('Stopping prespawner')
336 self.prespawner.stop()
337 self.prespawner = None
338 if self.event_client:
339 logging.info('Closing event client')
340 self.event_client.close()
341 self.event_client = None
Jon Salzddf0d052013-06-18 12:52:44 +0800342 if self.cpufreq_manager:
343 self.cpufreq_manager.Stop()
Jon Salz0697cbf2012-07-04 15:14:04 +0800344 if self.event_log:
345 self.event_log.Close()
346 self.event_log = None
Dean Liao592e4d52013-01-10 20:06:39 +0800347 if self.key_filter:
348 self.key_filter.Stop()
Vic Yangd8990da2013-06-27 16:57:43 +0800349 if self.cpu_usage_watcher:
350 self.cpu_usage_watcher.terminate()
Dean Liao592e4d52013-01-10 20:06:39 +0800351
Jon Salz0697cbf2012-07-04 15:14:04 +0800352 self.check_exceptions()
353 logging.info('Done destroying Goofy')
354
355 def start_state_server(self):
Jon Salz2af235d2013-06-24 14:47:21 +0800356 # Before starting state server, remount stateful partitions with
357 # no commit flag. The default commit time (commit=600) makes corruption
358 # too likely.
359 file_utils.ResetCommitTime()
360
Jon Salz0697cbf2012-07-04 15:14:04 +0800361 self.state_instance, self.state_server = (
362 state.create_server(bind_address='0.0.0.0'))
Jon Salz16d10542012-07-23 12:18:45 +0800363 self.goofy_rpc = GoofyRPC(self)
364 self.goofy_rpc.RegisterMethods(self.state_instance)
Jon Salz0697cbf2012-07-04 15:14:04 +0800365 logging.info('Starting state server')
366 self.state_server_thread = threading.Thread(
367 target=self.state_server.serve_forever,
368 name='StateServer')
369 self.state_server_thread.start()
370
371 def start_event_server(self):
372 self.event_server = EventServer()
373 logging.info('Starting factory event server')
374 self.event_server_thread = threading.Thread(
375 target=self.event_server.serve_forever,
376 name='EventServer') # pylint: disable=E1101
377 self.event_server_thread.start()
378
379 self.event_client = EventClient(
380 callback=self.handle_event, event_loop=self.run_queue)
381
382 self.web_socket_manager = WebSocketManager(self.uuid)
383 self.state_server.add_handler("/event",
384 self.web_socket_manager.handle_web_socket)
385
386 def start_ui(self):
387 ui_proc_args = [
388 os.path.join(factory.FACTORY_PACKAGE_PATH, 'test', 'ui.py'),
389 self.options.test_list]
390 if self.options.verbose:
391 ui_proc_args.append('-v')
392 logging.info('Starting ui %s', ui_proc_args)
Jon Salz78c32392012-07-25 14:18:29 +0800393 self.ui_process = Spawn(ui_proc_args)
Jon Salz0697cbf2012-07-04 15:14:04 +0800394 logging.info('Waiting for UI to come up...')
395 self.event_client.wait(
396 lambda event: event.type == Event.Type.UI_READY)
397 logging.info('UI has started')
398
399 def set_visible_test(self, test):
400 if self.visible_test == test:
401 return
Jon Salz2f2d42c2012-07-30 12:30:34 +0800402 if test and not test.has_ui:
403 return
Jon Salz0697cbf2012-07-04 15:14:04 +0800404
405 if test:
406 test.update_state(visible=True)
407 if self.visible_test:
408 self.visible_test.update_state(visible=False)
409 self.visible_test = test
410
Jon Salzd4306c82012-11-30 15:16:36 +0800411 def _log_startup_messages(self):
412 '''Logs the tail of var/log/messages and mosys and EC console logs.'''
413 # TODO(jsalz): This is mostly a copy-and-paste of code in init_states,
414 # for factory-3004.B only. Consolidate and merge back to ToT.
415 if utils.in_chroot():
416 return
417
418 try:
419 var_log_messages = (
420 utils.var_log_messages_before_reboot())
421 logging.info(
422 'Tail of /var/log/messages before last reboot:\n'
423 '%s', ('\n'.join(
424 ' ' + x for x in var_log_messages)))
425 except: # pylint: disable=W0702
426 logging.exception('Unable to grok /var/log/messages')
427
428 try:
429 mosys_log = utils.Spawn(
430 ['mosys', 'eventlog', 'list'],
431 read_stdout=True, log_stderr_on_error=True).stdout_data
432 logging.info('System eventlog from mosys:\n%s\n', mosys_log)
433 except: # pylint: disable=W0702
434 logging.exception('Unable to read mosys eventlog')
435
436 try:
Vic Yang8341dde2013-01-29 16:48:52 +0800437 board = system.GetBoard()
438 ec_console_log = board.GetECConsoleLog()
Jon Salzd4306c82012-11-30 15:16:36 +0800439 logging.info('EC console log after reboot:\n%s\n', ec_console_log)
440 except: # pylint: disable=W0702
441 logging.exception('Error retrieving EC console log')
442
Jon Salz0697cbf2012-07-04 15:14:04 +0800443 def handle_shutdown_complete(self, test, test_state):
Hung-Te Linf2f78f72012-02-08 19:27:11 +0800444 '''
Jon Salz0697cbf2012-07-04 15:14:04 +0800445 Handles the case where a shutdown was detected during a shutdown step.
Hung-Te Linf2f78f72012-02-08 19:27:11 +0800446
Jon Salz0697cbf2012-07-04 15:14:04 +0800447 @param test: The ShutdownStep.
448 @param test_state: The test state.
Hung-Te Linf2f78f72012-02-08 19:27:11 +0800449 '''
Jon Salz0697cbf2012-07-04 15:14:04 +0800450 test_state = test.update_state(increment_shutdown_count=1)
451 logging.info('Detected shutdown (%d of %d)',
452 test_state.shutdown_count, test.iterations)
Hung-Te Linf2f78f72012-02-08 19:27:11 +0800453
Jon Salz0697cbf2012-07-04 15:14:04 +0800454 def log_and_update_state(status, error_msg, **kw):
455 self.event_log.Log('rebooted',
456 status=status, error_msg=error_msg, **kw)
Jon Salzd4306c82012-11-30 15:16:36 +0800457 logging.info('Rebooted: status=%s, %s', status,
458 (('error_msg=%s' % error_msg) if error_msg else None))
Jon Salz0697cbf2012-07-04 15:14:04 +0800459 test.update_state(status=status, error_msg=error_msg)
Hung-Te Linf2f78f72012-02-08 19:27:11 +0800460
Jon Salz0697cbf2012-07-04 15:14:04 +0800461 if not self.last_shutdown_time:
462 log_and_update_state(status=TestState.FAILED,
463 error_msg='Unable to read shutdown_time')
464 return
Jon Salz258a40c2012-04-19 12:34:01 +0800465
Jon Salz0697cbf2012-07-04 15:14:04 +0800466 now = time.time()
467 logging.info('%.03f s passed since reboot',
468 now - self.last_shutdown_time)
Jon Salz258a40c2012-04-19 12:34:01 +0800469
Jon Salz0697cbf2012-07-04 15:14:04 +0800470 if self.last_shutdown_time > now:
471 test.update_state(status=TestState.FAILED,
472 error_msg='Time moved backward during reboot')
473 elif (isinstance(test, factory.RebootStep) and
474 self.test_list.options.max_reboot_time_secs and
475 (now - self.last_shutdown_time >
476 self.test_list.options.max_reboot_time_secs)):
477 # A reboot took too long; fail. (We don't check this for
478 # HaltSteps, because the machine could be halted for a
479 # very long time, and even unplugged with battery backup,
480 # thus hosing the clock.)
481 log_and_update_state(
482 status=TestState.FAILED,
483 error_msg=('More than %d s elapsed during reboot '
484 '(%.03f s, from %s to %s)' % (
485 self.test_list.options.max_reboot_time_secs,
486 now - self.last_shutdown_time,
487 utils.TimeString(self.last_shutdown_time),
488 utils.TimeString(now))),
489 duration=(now-self.last_shutdown_time))
Jon Salzd4306c82012-11-30 15:16:36 +0800490 self._log_startup_messages()
Jon Salz0697cbf2012-07-04 15:14:04 +0800491 elif test_state.shutdown_count == test.iterations:
492 # Good!
493 log_and_update_state(status=TestState.PASSED,
494 duration=(now - self.last_shutdown_time),
495 error_msg='')
496 elif test_state.shutdown_count > test.iterations:
497 # Shut down too many times
498 log_and_update_state(status=TestState.FAILED,
499 error_msg='Too many shutdowns')
Jon Salzd4306c82012-11-30 15:16:36 +0800500 self._log_startup_messages()
Jon Salz0697cbf2012-07-04 15:14:04 +0800501 elif utils.are_shift_keys_depressed():
502 logging.info('Shift keys are depressed; cancelling restarts')
503 # Abort shutdown
504 log_and_update_state(
505 status=TestState.FAILED,
506 error_msg='Shutdown aborted with double shift keys')
Jon Salza6711d72012-07-18 14:33:03 +0800507 self.cancel_pending_tests()
Jon Salz0697cbf2012-07-04 15:14:04 +0800508 else:
509 def handler():
510 if self._prompt_cancel_shutdown(
511 test, test_state.shutdown_count + 1):
Jon Salza6711d72012-07-18 14:33:03 +0800512 factory.console.info('Shutdown aborted by operator')
Jon Salz0697cbf2012-07-04 15:14:04 +0800513 log_and_update_state(
514 status=TestState.FAILED,
515 error_msg='Shutdown aborted by operator')
Jon Salza6711d72012-07-18 14:33:03 +0800516 self.cancel_pending_tests()
Jon Salz0697cbf2012-07-04 15:14:04 +0800517 return
Jon Salz0405ab52012-03-16 15:26:52 +0800518
Jon Salz0697cbf2012-07-04 15:14:04 +0800519 # Time to shutdown again
520 log_and_update_state(
521 status=TestState.ACTIVE,
522 error_msg='',
523 iteration=test_state.shutdown_count)
Jon Salz73e0fd02012-04-04 11:46:38 +0800524
Jon Salz0697cbf2012-07-04 15:14:04 +0800525 self.event_log.Log('shutdown', operation='reboot')
526 self.state_instance.set_shared_data('shutdown_time',
527 time.time())
528 self.env.shutdown('reboot')
Hung-Te Linf2f78f72012-02-08 19:27:11 +0800529
Jon Salz0697cbf2012-07-04 15:14:04 +0800530 self.on_ui_startup.append(handler)
Hung-Te Linf2f78f72012-02-08 19:27:11 +0800531
Jon Salz0697cbf2012-07-04 15:14:04 +0800532 def _prompt_cancel_shutdown(self, test, iteration):
533 if self.options.ui != 'chrome':
534 return False
Hung-Te Linf2f78f72012-02-08 19:27:11 +0800535
Jon Salz0697cbf2012-07-04 15:14:04 +0800536 pending_shutdown_data = {
537 'delay_secs': test.delay_secs,
538 'time': time.time() + test.delay_secs,
539 'operation': test.operation,
540 'iteration': iteration,
541 'iterations': test.iterations,
542 }
Hung-Te Linf2f78f72012-02-08 19:27:11 +0800543
Jon Salz0697cbf2012-07-04 15:14:04 +0800544 # Create a new (threaded) event client since we
545 # don't want to use the event loop for this.
546 with EventClient() as event_client:
547 event_client.post_event(Event(Event.Type.PENDING_SHUTDOWN,
548 **pending_shutdown_data))
549 aborted = event_client.wait(
550 lambda event: event.type == Event.Type.CANCEL_SHUTDOWN,
551 timeout=test.delay_secs) is not None
552 if aborted:
553 event_client.post_event(Event(Event.Type.PENDING_SHUTDOWN))
554 return aborted
Jon Salz258a40c2012-04-19 12:34:01 +0800555
Jon Salz0697cbf2012-07-04 15:14:04 +0800556 def init_states(self):
557 '''
558 Initializes all states on startup.
559 '''
560 for test in self.test_list.get_all_tests():
561 # Make sure the state server knows about all the tests,
562 # defaulting to an untested state.
563 test.update_state(update_parent=False, visible=False)
Hung-Te Linf2f78f72012-02-08 19:27:11 +0800564
Jon Salz0697cbf2012-07-04 15:14:04 +0800565 var_log_messages = None
Vic Yanga9c32212012-08-16 20:07:54 +0800566 mosys_log = None
Vic Yange4c275d2012-08-28 01:50:20 +0800567 ec_console_log = None
Hung-Te Linf2f78f72012-02-08 19:27:11 +0800568
Jon Salz0697cbf2012-07-04 15:14:04 +0800569 # Any 'active' tests should be marked as failed now.
570 for test in self.test_list.walk():
Jon Salza6711d72012-07-18 14:33:03 +0800571 if not test.is_leaf():
572 # Don't bother with parents; they will be updated when their
573 # children are updated.
574 continue
575
Jon Salz0697cbf2012-07-04 15:14:04 +0800576 test_state = test.get_state()
577 if test_state.status != TestState.ACTIVE:
578 continue
579 if isinstance(test, factory.ShutdownStep):
580 # Shutdown while the test was active - that's good.
581 self.handle_shutdown_complete(test, test_state)
582 else:
583 # Unexpected shutdown. Grab /var/log/messages for context.
584 if var_log_messages is None:
585 try:
586 var_log_messages = (
587 utils.var_log_messages_before_reboot())
588 # Write it to the log, to make it easier to
589 # correlate with /var/log/messages.
590 logging.info(
591 'Unexpected shutdown. '
592 'Tail of /var/log/messages before last reboot:\n'
593 '%s', ('\n'.join(
594 ' ' + x for x in var_log_messages)))
595 except: # pylint: disable=W0702
596 logging.exception('Unable to grok /var/log/messages')
597 var_log_messages = []
Hung-Te Linf2f78f72012-02-08 19:27:11 +0800598
Jon Salz008f4ea2012-08-28 05:39:45 +0800599 if mosys_log is None and not utils.in_chroot():
600 try:
601 mosys_log = utils.Spawn(
602 ['mosys', 'eventlog', 'list'],
603 read_stdout=True, log_stderr_on_error=True).stdout_data
604 # Write it to the log also.
605 logging.info('System eventlog from mosys:\n%s\n', mosys_log)
606 except: # pylint: disable=W0702
607 logging.exception('Unable to read mosys eventlog')
Vic Yanga9c32212012-08-16 20:07:54 +0800608
Vic Yange4c275d2012-08-28 01:50:20 +0800609 if ec_console_log is None:
610 try:
Vic Yang8341dde2013-01-29 16:48:52 +0800611 board = system.GetBoard()
612 ec_console_log = board.GetECConsoleLog()
Vic Yange4c275d2012-08-28 01:50:20 +0800613 logging.info('EC console log after reboot:\n%s\n', ec_console_log)
Jon Salzfe1f6652012-09-07 05:40:14 +0800614 except: # pylint: disable=W0702
Vic Yange4c275d2012-08-28 01:50:20 +0800615 logging.exception('Error retrieving EC console log')
616
Jon Salz0697cbf2012-07-04 15:14:04 +0800617 error_msg = 'Unexpected shutdown while test was running'
618 self.event_log.Log('end_test',
619 path=test.path,
620 status=TestState.FAILED,
621 invocation=test.get_state().invocation,
622 error_msg=error_msg,
Vic Yanga9c32212012-08-16 20:07:54 +0800623 var_log_messages='\n'.join(var_log_messages),
624 mosys_log=mosys_log)
Jon Salz0697cbf2012-07-04 15:14:04 +0800625 test.update_state(
626 status=TestState.FAILED,
627 error_msg=error_msg)
Hung-Te Linf2f78f72012-02-08 19:27:11 +0800628
Jon Salz50efe942012-07-26 11:54:10 +0800629 if not test.never_fails:
630 # For "never_fails" tests (such as "Start"), don't cancel
631 # pending tests, since reboot is expected.
632 factory.console.info('Unexpected shutdown while test %s '
633 'running; cancelling any pending tests',
634 test.path)
635 self.state_instance.set_shared_data('tests_after_shutdown', [])
Jon Salz69806bb2012-07-20 18:05:02 +0800636
Jon Salz008f4ea2012-08-28 05:39:45 +0800637 self.update_skipped_tests()
638
639 def update_skipped_tests(self):
640 '''
641 Updates skipped states based on run_if.
642 '''
643 for t in self.test_list.walk():
644 if t.is_leaf() and t.run_if_table_name:
645 skip = False
646 try:
647 aux = shopfloor.get_selected_aux_data(t.run_if_table_name)
648 value = aux.get(t.run_if_col)
649 if value is not None:
650 skip = (not value) ^ t.run_if_not
651 except ValueError:
652 # Not available; assume it shouldn't be skipped
653 pass
654
655 test_state = t.get_state()
656 if ((not skip) and
657 (test_state.status == TestState.PASSED) and
658 (test_state.error_msg == TestState.SKIPPED_MSG)):
659 # It was marked as skipped before, but now we need to run it.
660 # Mark as untested.
661 t.update_state(skip=skip, status=TestState.UNTESTED, error_msg='')
662 else:
663 t.update_state(skip=skip)
664
Jon Salz0697cbf2012-07-04 15:14:04 +0800665 def show_next_active_test(self):
666 '''
667 Rotates to the next visible active test.
668 '''
669 self.reap_completed_tests()
670 active_tests = [
671 t for t in self.test_list.walk()
672 if t.is_leaf() and t.get_state().status == TestState.ACTIVE]
673 if not active_tests:
674 return
Jon Salz4f6c7172012-06-11 20:45:36 +0800675
Jon Salz0697cbf2012-07-04 15:14:04 +0800676 try:
677 next_test = active_tests[
678 (active_tests.index(self.visible_test) + 1) % len(active_tests)]
679 except ValueError: # visible_test not present in active_tests
680 next_test = active_tests[0]
Jon Salz4f6c7172012-06-11 20:45:36 +0800681
Jon Salz0697cbf2012-07-04 15:14:04 +0800682 self.set_visible_test(next_test)
Jon Salz4f6c7172012-06-11 20:45:36 +0800683
Jon Salz0697cbf2012-07-04 15:14:04 +0800684 def handle_event(self, event):
685 '''
686 Handles an event from the event server.
687 '''
688 handler = self.event_handlers.get(event.type)
689 if handler:
690 handler(event)
691 else:
692 # We don't register handlers for all event types - just ignore
693 # this event.
694 logging.debug('Unbound event type %s', event.type)
Jon Salz4f6c7172012-06-11 20:45:36 +0800695
Vic Yangaabf9fd2013-04-09 18:56:13 +0800696 def check_critical_factory_note(self):
697 '''
698 Returns True if the last factory note is critical.
699 '''
700 notes = self.state_instance.get_shared_data('factory_note', True)
701 return notes and notes[-1]['level'] == 'CRITICAL'
702
Jon Salz0697cbf2012-07-04 15:14:04 +0800703 def run_next_test(self):
704 '''
705 Runs the next eligible test (or tests) in self.tests_to_run.
706 '''
707 self.reap_completed_tests()
Vic Yangaabf9fd2013-04-09 18:56:13 +0800708 if self.tests_to_run and self.check_critical_factory_note():
709 self.tests_to_run.clear()
710 return
Jon Salz0697cbf2012-07-04 15:14:04 +0800711 while self.tests_to_run:
712 logging.debug('Tests to run: %s',
713 [x.path for x in self.tests_to_run])
Jon Salz94eb56f2012-06-12 18:01:12 +0800714
Jon Salz0697cbf2012-07-04 15:14:04 +0800715 test = self.tests_to_run[0]
Jon Salz94eb56f2012-06-12 18:01:12 +0800716
Jon Salz0697cbf2012-07-04 15:14:04 +0800717 if test in self.invocations:
718 logging.info('Next test %s is already running', test.path)
719 self.tests_to_run.popleft()
720 return
Jon Salz94eb56f2012-06-12 18:01:12 +0800721
Jon Salza1412922012-07-23 16:04:17 +0800722 for requirement in test.require_run:
723 for i in requirement.test.walk():
724 if i.get_state().status == TestState.ACTIVE:
Jon Salz304a75d2012-07-06 11:14:15 +0800725 logging.info('Waiting for active test %s to complete '
Jon Salza1412922012-07-23 16:04:17 +0800726 'before running %s', i.path, test.path)
Jon Salz304a75d2012-07-06 11:14:15 +0800727 return
728
Jon Salz0697cbf2012-07-04 15:14:04 +0800729 if self.invocations and not (test.backgroundable and all(
730 [x.backgroundable for x in self.invocations])):
731 logging.debug('Waiting for non-backgroundable tests to '
732 'complete before running %s', test.path)
733 return
Jon Salz94eb56f2012-06-12 18:01:12 +0800734
Jon Salz3e6f5202012-10-15 15:08:29 +0800735 if test.get_state().skip:
736 factory.console.info('Skipping test %s', test.path)
737 test.update_state(status=TestState.PASSED,
738 error_msg=TestState.SKIPPED_MSG)
739 self.tests_to_run.popleft()
740 continue
741
Jon Salz0697cbf2012-07-04 15:14:04 +0800742 self.tests_to_run.popleft()
Jon Salz94eb56f2012-06-12 18:01:12 +0800743
Jon Salz304a75d2012-07-06 11:14:15 +0800744 untested = set()
Jon Salza1412922012-07-23 16:04:17 +0800745 for requirement in test.require_run:
746 for i in requirement.test.walk():
747 if i == test:
Jon Salz304a75d2012-07-06 11:14:15 +0800748 # We've hit this test itself; stop checking
749 break
Jon Salza1412922012-07-23 16:04:17 +0800750 if ((i.get_state().status == TestState.UNTESTED) or
751 (requirement.passed and i.get_state().status !=
752 TestState.PASSED)):
Jon Salz304a75d2012-07-06 11:14:15 +0800753 # Found an untested test; move on to the next
754 # element in require_run.
Jon Salza1412922012-07-23 16:04:17 +0800755 untested.add(i)
Jon Salz304a75d2012-07-06 11:14:15 +0800756 break
757
758 if untested:
759 untested_paths = ', '.join(sorted([x.path for x in untested]))
760 if self.state_instance.get_shared_data('engineering_mode',
761 optional=True):
762 # In engineering mode, we'll let it go.
763 factory.console.warn('In engineering mode; running '
764 '%s even though required tests '
765 '[%s] have not completed',
766 test.path, untested_paths)
767 else:
768 # Not in engineering mode; mark it failed.
769 error_msg = ('Required tests [%s] have not been run yet'
770 % untested_paths)
771 factory.console.error('Not running %s: %s',
772 test.path, error_msg)
773 test.update_state(status=TestState.FAILED,
774 error_msg=error_msg)
775 continue
776
Jon Salz0697cbf2012-07-04 15:14:04 +0800777 if isinstance(test, factory.ShutdownStep):
778 if os.path.exists(NO_REBOOT_FILE):
779 test.update_state(
780 status=TestState.FAILED, increment_count=1,
781 error_msg=('Skipped shutdown since %s is present' %
Jon Salz304a75d2012-07-06 11:14:15 +0800782 NO_REBOOT_FILE))
Jon Salz0697cbf2012-07-04 15:14:04 +0800783 continue
Hung-Te Linf2f78f72012-02-08 19:27:11 +0800784
Jon Salz0697cbf2012-07-04 15:14:04 +0800785 test.update_state(status=TestState.ACTIVE, increment_count=1,
786 error_msg='', shutdown_count=0)
787 if self._prompt_cancel_shutdown(test, 1):
788 self.event_log.Log('reboot_cancelled')
789 test.update_state(
790 status=TestState.FAILED, increment_count=1,
791 error_msg='Shutdown aborted by operator',
792 shutdown_count=0)
chungyiafe8f772012-08-15 19:36:29 +0800793 continue
Jon Salz2f757d42012-06-27 17:06:42 +0800794
Jon Salz0697cbf2012-07-04 15:14:04 +0800795 # Save pending test list in the state server
Jon Salzdbf398f2012-06-14 17:30:01 +0800796 self.state_instance.set_shared_data(
Jon Salz0697cbf2012-07-04 15:14:04 +0800797 'tests_after_shutdown',
798 [t.path for t in self.tests_to_run])
799 # Save shutdown time
800 self.state_instance.set_shared_data('shutdown_time',
801 time.time())
Hung-Te Linf2f78f72012-02-08 19:27:11 +0800802
Jon Salz0697cbf2012-07-04 15:14:04 +0800803 with self.env.lock:
804 self.event_log.Log('shutdown', operation=test.operation)
805 shutdown_result = self.env.shutdown(test.operation)
806 if shutdown_result:
807 # That's all, folks!
808 self.run_queue.put(None)
809 return
810 else:
811 # Just pass (e.g., in the chroot).
812 test.update_state(status=TestState.PASSED)
813 self.state_instance.set_shared_data(
814 'tests_after_shutdown', None)
815 # Send event with no fields to indicate that there is no
816 # longer a pending shutdown.
817 self.event_client.post_event(Event(
818 Event.Type.PENDING_SHUTDOWN))
819 continue
Jon Salz258a40c2012-04-19 12:34:01 +0800820
Cheng-Yi Chiangce05c002013-04-04 02:13:17 +0800821 self._run_test(test, test.iterations, test.retries)
Jon Salz1acc8742012-07-17 17:45:55 +0800822
Cheng-Yi Chiangce05c002013-04-04 02:13:17 +0800823 def _run_test(self, test, iterations_left=None, retries_left=None):
Jon Salz1acc8742012-07-17 17:45:55 +0800824 invoc = TestInvocation(self, test, on_completion=self.run_next_test)
825 new_state = test.update_state(
826 status=TestState.ACTIVE, increment_count=1, error_msg='',
Jon Salzbd42ce12012-09-18 08:03:59 +0800827 invocation=invoc.uuid, iterations_left=iterations_left,
Cheng-Yi Chiangce05c002013-04-04 02:13:17 +0800828 retries_left=retries_left,
Jon Salzbd42ce12012-09-18 08:03:59 +0800829 visible=(self.visible_test == test))
Jon Salz1acc8742012-07-17 17:45:55 +0800830 invoc.count = new_state.count
831
832 self.invocations[test] = invoc
833 if self.visible_test is None and test.has_ui:
834 self.set_visible_test(test)
Vic Yang311ddb82012-09-26 12:08:28 +0800835 self.check_exclusive()
Jon Salz1acc8742012-07-17 17:45:55 +0800836 invoc.start()
Jon Salz5f2a0672012-05-22 17:14:06 +0800837
Vic Yang311ddb82012-09-26 12:08:28 +0800838 def check_exclusive(self):
Jon Salzce6a7f82013-06-10 18:22:54 +0800839 # alias since this is really long
840 EXCL_OPT = factory.FactoryTest.EXCLUSIVE_OPTIONS
841
Vic Yang311ddb82012-09-26 12:08:28 +0800842 current_exclusive_items = set([
Jon Salzce6a7f82013-06-10 18:22:54 +0800843 item for item in EXCL_OPT
Vic Yang311ddb82012-09-26 12:08:28 +0800844 if any([test.is_exclusive(item) for test in self.invocations])])
845
846 new_exclusive_items = current_exclusive_items - self.exclusive_items
Jon Salzce6a7f82013-06-10 18:22:54 +0800847 if EXCL_OPT.NETWORKING in new_exclusive_items:
Vic Yang311ddb82012-09-26 12:08:28 +0800848 logging.info('Disabling network')
849 self.connection_manager.DisableNetworking()
Jon Salzce6a7f82013-06-10 18:22:54 +0800850 if EXCL_OPT.CHARGER in new_exclusive_items:
Vic Yang311ddb82012-09-26 12:08:28 +0800851 logging.info('Stop controlling charger')
852
853 new_non_exclusive_items = self.exclusive_items - current_exclusive_items
Jon Salzce6a7f82013-06-10 18:22:54 +0800854 if EXCL_OPT.NETWORKING in new_non_exclusive_items:
Vic Yang311ddb82012-09-26 12:08:28 +0800855 logging.info('Re-enabling network')
856 self.connection_manager.EnableNetworking()
Jon Salzce6a7f82013-06-10 18:22:54 +0800857 if EXCL_OPT.CHARGER in new_non_exclusive_items:
Vic Yang311ddb82012-09-26 12:08:28 +0800858 logging.info('Start controlling charger')
859
Jon Salzce6a7f82013-06-10 18:22:54 +0800860 if self.cpufreq_manager:
861 enabled = EXCL_OPT.CPUFREQ not in current_exclusive_items
862 try:
863 self.cpufreq_manager.SetEnabled(enabled)
864 except: # pylint: disable=W0702
865 logging.exception('Unable to %s cpufreq services',
866 'enable' if enabled else 'disable')
867
Vic Yang311ddb82012-09-26 12:08:28 +0800868 # Only adjust charge state if not excluded
Jon Salzce6a7f82013-06-10 18:22:54 +0800869 if (EXCL_OPT.CHARGER not in current_exclusive_items and
870 not utils.in_chroot()):
Cheng-Yi Chiangd8186952013-04-04 23:41:14 +0800871 if self.charge_manager:
872 self.charge_manager.AdjustChargeState()
873 else:
874 try:
875 system.GetBoard().SetChargeState(Board.ChargeState.CHARGE)
876 except BoardException:
877 logging.exception('Unable to set charge state on this board')
Vic Yang311ddb82012-09-26 12:08:28 +0800878
879 self.exclusive_items = current_exclusive_items
Jon Salz5da61e62012-05-31 13:06:22 +0800880
cychiang21886742012-07-05 15:16:32 +0800881 def check_for_updates(self):
882 '''
883 Schedules an asynchronous check for updates if necessary.
884 '''
885 if not self.test_list.options.update_period_secs:
886 # Not enabled.
887 return
888
889 now = time.time()
890 if self.last_update_check and (
891 now - self.last_update_check <
892 self.test_list.options.update_period_secs):
893 # Not yet time for another check.
894 return
895
896 self.last_update_check = now
897
898 def handle_check_for_update(reached_shopfloor, md5sum, needs_update):
899 if reached_shopfloor:
900 new_update_md5sum = md5sum if needs_update else None
901 if system.SystemInfo.update_md5sum != new_update_md5sum:
902 logging.info('Received new update MD5SUM: %s', new_update_md5sum)
903 system.SystemInfo.update_md5sum = new_update_md5sum
904 self.run_queue.put(self.update_system_info)
905
906 updater.CheckForUpdateAsync(
907 handle_check_for_update,
908 self.test_list.options.shopfloor_timeout_secs)
909
Jon Salza6711d72012-07-18 14:33:03 +0800910 def cancel_pending_tests(self):
911 '''Cancels any tests in the run queue.'''
912 self.run_tests([])
913
Jon Salz0697cbf2012-07-04 15:14:04 +0800914 def run_tests(self, subtrees, untested_only=False):
915 '''
916 Runs tests under subtree.
Jon Salz258a40c2012-04-19 12:34:01 +0800917
Jon Salz0697cbf2012-07-04 15:14:04 +0800918 The tests are run in order unless one fails (then stops).
919 Backgroundable tests are run simultaneously; when a foreground test is
920 encountered, we wait for all active tests to finish before continuing.
Jon Salzb1b39092012-05-03 02:05:09 +0800921
Jon Salz0697cbf2012-07-04 15:14:04 +0800922 @param subtrees: Node or nodes containing tests to run (may either be
923 a single test or a list). Duplicates will be ignored.
924 '''
925 if type(subtrees) != list:
926 subtrees = [subtrees]
Jon Salz258a40c2012-04-19 12:34:01 +0800927
Jon Salz0697cbf2012-07-04 15:14:04 +0800928 # Nodes we've seen so far, to avoid duplicates.
929 seen = set()
Jon Salz94eb56f2012-06-12 18:01:12 +0800930
Jon Salz0697cbf2012-07-04 15:14:04 +0800931 self.tests_to_run = deque()
932 for subtree in subtrees:
933 for test in subtree.walk():
934 if test in seen:
935 continue
936 seen.add(test)
Hung-Te Linf2f78f72012-02-08 19:27:11 +0800937
Jon Salz0697cbf2012-07-04 15:14:04 +0800938 if not test.is_leaf():
939 continue
940 if (untested_only and
941 test.get_state().status != TestState.UNTESTED):
942 continue
943 self.tests_to_run.append(test)
944 self.run_next_test()
Hung-Te Linf2f78f72012-02-08 19:27:11 +0800945
Jon Salz0697cbf2012-07-04 15:14:04 +0800946 def reap_completed_tests(self):
947 '''
948 Removes completed tests from the set of active tests.
949
950 Also updates the visible test if it was reaped.
951 '''
Cheng-Yi Chiang5ac22ca2013-04-12 17:45:26 +0800952 test_completed = False
Jon Salz0697cbf2012-07-04 15:14:04 +0800953 for t, v in dict(self.invocations).iteritems():
954 if v.is_completed():
Cheng-Yi Chiang5ac22ca2013-04-12 17:45:26 +0800955 test_completed = True
Jon Salz1acc8742012-07-17 17:45:55 +0800956 new_state = t.update_state(**v.update_state_on_completion)
Jon Salz0697cbf2012-07-04 15:14:04 +0800957 del self.invocations[t]
958
Chun-Ta Lin54e17e42012-09-06 22:05:13 +0800959 # Stop on failure if flag is true.
960 if (self.test_list.options.stop_on_failure and
961 new_state.status == TestState.FAILED):
962 # Clean all the tests to cause goofy to stop.
963 self.tests_to_run = []
964 factory.console.info("Stop on failure triggered. Empty the queue.")
965
Jon Salz1acc8742012-07-17 17:45:55 +0800966 if new_state.iterations_left and new_state.status == TestState.PASSED:
967 # Play it again, Sam!
968 self._run_test(t)
Cheng-Yi Chiangce05c002013-04-04 02:13:17 +0800969 # new_state.retries_left is obtained after update.
970 # For retries_left == 0, test can still be run for the last time.
971 elif (new_state.retries_left >= 0 and
972 new_state.status == TestState.FAILED):
973 # Still have to retry, Sam!
974 self._run_test(t)
Jon Salz1acc8742012-07-17 17:45:55 +0800975
Cheng-Yi Chiang5ac22ca2013-04-12 17:45:26 +0800976 if test_completed:
Vic Yangf01c59f2013-04-19 17:37:56 +0800977 self.log_watcher.KickWatchThread()
Cheng-Yi Chiang5ac22ca2013-04-12 17:45:26 +0800978
Jon Salz0697cbf2012-07-04 15:14:04 +0800979 if (self.visible_test is None or
Jon Salz85a39882012-07-05 16:45:04 +0800980 self.visible_test not in self.invocations):
Jon Salz0697cbf2012-07-04 15:14:04 +0800981 self.set_visible_test(None)
982 # Make the first running test, if any, the visible test
983 for t in self.test_list.walk():
984 if t in self.invocations:
985 self.set_visible_test(t)
986 break
987
Jon Salz6dc031d2013-06-19 13:06:23 +0800988 def kill_active_tests(self, abort, root=None, reason=None):
Jon Salz0697cbf2012-07-04 15:14:04 +0800989 '''
990 Kills and waits for all active tests.
991
Jon Salz85a39882012-07-05 16:45:04 +0800992 Args:
993 abort: True to change state of killed tests to FAILED, False for
Jon Salz0697cbf2012-07-04 15:14:04 +0800994 UNTESTED.
Jon Salz85a39882012-07-05 16:45:04 +0800995 root: If set, only kills tests with root as an ancestor.
Jon Salz0697cbf2012-07-04 15:14:04 +0800996 '''
997 self.reap_completed_tests()
998 for test, invoc in self.invocations.items():
Jon Salz85a39882012-07-05 16:45:04 +0800999 if root and not test.has_ancestor(root):
1000 continue
1001
Jon Salz0697cbf2012-07-04 15:14:04 +08001002 factory.console.info('Killing active test %s...' % test.path)
Jon Salz6dc031d2013-06-19 13:06:23 +08001003 invoc.abort_and_join(reason)
Jon Salz0697cbf2012-07-04 15:14:04 +08001004 factory.console.info('Killed %s' % test.path)
Jon Salz1acc8742012-07-17 17:45:55 +08001005 test.update_state(**invoc.update_state_on_completion)
Jon Salz0697cbf2012-07-04 15:14:04 +08001006 del self.invocations[test]
Jon Salz1acc8742012-07-17 17:45:55 +08001007
Jon Salz0697cbf2012-07-04 15:14:04 +08001008 if not abort:
1009 test.update_state(status=TestState.UNTESTED)
1010 self.reap_completed_tests()
1011
Jon Salz6dc031d2013-06-19 13:06:23 +08001012 def stop(self, root=None, fail=False, reason=None):
1013 self.kill_active_tests(fail, root, reason)
Jon Salz85a39882012-07-05 16:45:04 +08001014 # Remove any tests in the run queue under the root.
1015 self.tests_to_run = deque([x for x in self.tests_to_run
1016 if root and not x.has_ancestor(root)])
1017 self.run_next_test()
Jon Salz0697cbf2012-07-04 15:14:04 +08001018
Jon Salz4712ac72013-02-07 17:12:05 +08001019 def clear_state(self, root=None):
Jon Salz6dc031d2013-06-19 13:06:23 +08001020 self.stop(root, reason='Clearing test state')
Jon Salz4712ac72013-02-07 17:12:05 +08001021 for f in root.walk():
1022 if f.is_leaf():
1023 f.update_state(status=TestState.UNTESTED)
1024
Jon Salz6dc031d2013-06-19 13:06:23 +08001025 def abort_active_tests(self, reason=None):
1026 self.kill_active_tests(True, reason=reason)
Jon Salz0697cbf2012-07-04 15:14:04 +08001027
1028 def main(self):
Jon Salzeff94182013-06-19 15:06:28 +08001029 syslog.openlog('goofy')
1030
Jon Salz0697cbf2012-07-04 15:14:04 +08001031 try:
1032 self.init()
1033 self.event_log.Log('goofy_init',
1034 success=True)
1035 except:
1036 if self.event_log:
Hung-Te Linf2f78f72012-02-08 19:27:11 +08001037 try:
Jon Salz0697cbf2012-07-04 15:14:04 +08001038 self.event_log.Log('goofy_init',
1039 success=False,
1040 trace=traceback.format_exc())
1041 except: # pylint: disable=W0702
1042 pass
1043 raise
1044
Jon Salzeff94182013-06-19 15:06:28 +08001045 syslog.syslog('Goofy (factory test harness) starting')
Jon Salz0697cbf2012-07-04 15:14:04 +08001046 self.run()
1047
1048 def update_system_info(self):
1049 '''Updates system info.'''
1050 system_info = system.SystemInfo()
1051 self.state_instance.set_shared_data('system_info', system_info.__dict__)
1052 self.event_client.post_event(Event(Event.Type.SYSTEM_INFO,
1053 system_info=system_info.__dict__))
1054 logging.info('System info: %r', system_info.__dict__)
1055
Jon Salzeb42f0d2012-07-27 19:14:04 +08001056 def update_factory(self, auto_run_on_restart=False, post_update_hook=None):
1057 '''Commences updating factory software.
1058
1059 Args:
1060 auto_run_on_restart: Auto-run when the machine comes back up.
1061 post_update_hook: Code to call after update but immediately before
1062 restart.
1063
1064 Returns:
1065 Never if the update was successful (we just reboot).
1066 False if the update was unnecessary (no update available).
1067 '''
Jon Salz6dc031d2013-06-19 13:06:23 +08001068 self.kill_active_tests(False, reason='Factory software update')
Jon Salza6711d72012-07-18 14:33:03 +08001069 self.cancel_pending_tests()
Jon Salz0697cbf2012-07-04 15:14:04 +08001070
Jon Salz5c344f62012-07-13 14:31:16 +08001071 def pre_update_hook():
1072 if auto_run_on_restart:
1073 self.state_instance.set_shared_data('tests_after_shutdown',
1074 FORCE_AUTO_RUN)
1075 self.state_instance.close()
1076
Jon Salzeb42f0d2012-07-27 19:14:04 +08001077 if updater.TryUpdate(pre_update_hook=pre_update_hook):
1078 if post_update_hook:
1079 post_update_hook()
1080 self.env.shutdown('reboot')
Jon Salz0697cbf2012-07-04 15:14:04 +08001081
Jon Salzcef132a2012-08-30 04:58:08 +08001082 def handle_sigint(self, dummy_signum, dummy_frame):
Jon Salz77c151e2012-08-28 07:20:37 +08001083 logging.error('Received SIGINT')
1084 self.run_queue.put(None)
1085 raise KeyboardInterrupt()
1086
Jon Salze12c2b32013-06-25 16:24:34 +08001087 def find_kcrashes(self):
1088 """Finds kcrash files, logs them, and marks them as seen."""
1089 seen_crashes = set(
1090 self.state_instance.get_shared_data('seen_crashes', optional=True)
1091 or [])
1092
1093 for path in glob.glob('/var/spool/crash/*'):
1094 if not os.path.isfile(path):
1095 continue
1096 if path in seen_crashes:
1097 continue
1098 try:
1099 stat = os.stat(path)
1100 mtime = utils.TimeString(stat.st_mtime)
1101 logging.info(
1102 'Found new crash file %s (%d bytes at %s)',
1103 path, stat.st_size, mtime)
1104 extra_log_args = {}
1105
1106 try:
1107 _, ext = os.path.splitext(path)
1108 if ext in ['.kcrash', '.meta']:
1109 ext = ext.replace('.', '')
1110 with open(path) as f:
1111 data = f.read(MAX_CRASH_FILE_SIZE)
1112 tell = f.tell()
1113 logging.info(
1114 'Contents of %s%s:%s',
1115 path,
1116 ('' if tell == stat.st_size
1117 else '(truncated to %d bytes)' % MAX_CRASH_FILE_SIZE),
1118 ('\n' + data).replace('\n', '\n ' + ext + '> '))
1119 extra_log_args['data'] = data
1120
1121 # Copy to /var/factory/kcrash for posterity
1122 kcrash_dir = factory.get_factory_root('kcrash')
1123 utils.TryMakeDirs(kcrash_dir)
1124 shutil.copy(path, kcrash_dir)
1125 logging.info('Copied to %s',
1126 os.path.join(kcrash_dir, os.path.basename(path)))
1127 finally:
1128 # Even if something goes wrong with the above, still try to
1129 # log to event log
1130 self.event_log.Log('crash_file',
1131 path=path, size=stat.st_size, mtime=mtime,
1132 **extra_log_args)
1133 except: # pylint: disable=W0702
1134 logging.exception('Unable to handle crash files %s', path)
1135 seen_crashes.add(path)
1136
1137 self.state_instance.set_shared_data('seen_crashes', list(seen_crashes))
1138
Jon Salz0697cbf2012-07-04 15:14:04 +08001139 def init(self, args=None, env=None):
1140 '''Initializes Goofy.
1141
1142 Args:
1143 args: A list of command-line arguments. Uses sys.argv if
1144 args is None.
1145 env: An Environment instance to use (or None to choose
1146 FakeChrootEnvironment or DUTEnvironment as appropriate).
1147 '''
Jon Salz77c151e2012-08-28 07:20:37 +08001148 signal.signal(signal.SIGINT, self.handle_sigint)
1149
Jon Salz0697cbf2012-07-04 15:14:04 +08001150 parser = OptionParser()
1151 parser.add_option('-v', '--verbose', dest='verbose',
Jon Salz8fa8e832012-07-13 19:04:09 +08001152 action='store_true',
1153 help='Enable debug logging')
Jon Salz0697cbf2012-07-04 15:14:04 +08001154 parser.add_option('--print_test_list', dest='print_test_list',
Jon Salz8fa8e832012-07-13 19:04:09 +08001155 metavar='FILE',
1156 help='Read and print test list FILE, and exit')
Jon Salz0697cbf2012-07-04 15:14:04 +08001157 parser.add_option('--restart', dest='restart',
Jon Salz8fa8e832012-07-13 19:04:09 +08001158 action='store_true',
1159 help='Clear all test state')
Jon Salz0697cbf2012-07-04 15:14:04 +08001160 parser.add_option('--ui', dest='ui', type='choice',
Jon Salz8fa8e832012-07-13 19:04:09 +08001161 choices=['none', 'gtk', 'chrome'],
Jon Salz2f881df2013-02-01 17:00:35 +08001162 default='chrome',
Jon Salz8fa8e832012-07-13 19:04:09 +08001163 help='UI to use')
Jon Salz0697cbf2012-07-04 15:14:04 +08001164 parser.add_option('--ui_scale_factor', dest='ui_scale_factor',
Jon Salz8fa8e832012-07-13 19:04:09 +08001165 type='int', default=1,
1166 help=('Factor by which to scale UI '
1167 '(Chrome UI only)'))
Jon Salz0697cbf2012-07-04 15:14:04 +08001168 parser.add_option('--test_list', dest='test_list',
Jon Salz8fa8e832012-07-13 19:04:09 +08001169 metavar='FILE',
1170 help='Use FILE as test list')
Jon Salzc79a9982012-08-30 04:42:01 +08001171 parser.add_option('--dummy_shopfloor', action='store_true',
1172 help='Use a dummy shopfloor server')
chungyiafe8f772012-08-15 19:36:29 +08001173 parser.add_option('--automation', dest='automation',
1174 action='store_true',
1175 help='Enable automation on running factory test')
Ricky Liang09216dc2013-02-22 17:26:45 +08001176 parser.add_option('--one_pixel_less', dest='one_pixel_less',
1177 action='store_true',
1178 help=('Start Chrome one pixel less than the full screen.'
1179 'Needed by Exynos platform to run GTK.'))
Jon Salz0697cbf2012-07-04 15:14:04 +08001180 (self.options, self.args) = parser.parse_args(args)
1181
Jon Salz46b89562012-07-05 11:49:22 +08001182 # Make sure factory directories exist.
1183 factory.get_log_root()
1184 factory.get_state_root()
1185 factory.get_test_data_root()
1186
Jon Salz0697cbf2012-07-04 15:14:04 +08001187 global _inited_logging # pylint: disable=W0603
1188 if not _inited_logging:
1189 factory.init_logging('goofy', verbose=self.options.verbose)
1190 _inited_logging = True
Jon Salz8fa8e832012-07-13 19:04:09 +08001191
Jon Salz0f996602012-10-03 15:26:48 +08001192 if self.options.print_test_list:
1193 print factory.read_test_list(
1194 self.options.print_test_list).__repr__(recursive=True)
1195 sys.exit(0)
1196
Jon Salzee85d522012-07-17 14:34:46 +08001197 event_log.IncrementBootSequence()
Jon Salzd15bbcf2013-05-21 17:33:57 +08001198 # Don't defer logging the initial event, so we can make sure
1199 # that device_id, reimage_id, etc. are all set up.
1200 self.event_log = EventLog('goofy', defer=False)
Jon Salz0697cbf2012-07-04 15:14:04 +08001201
1202 if (not suppress_chroot_warning and
1203 factory.in_chroot() and
1204 self.options.ui == 'gtk' and
1205 os.environ.get('DISPLAY') in [None, '', ':0', ':0.0']):
1206 # That's not going to work! Tell the user how to run
1207 # this way.
1208 logging.warn(GOOFY_IN_CHROOT_WARNING)
1209 time.sleep(1)
1210
1211 if env:
1212 self.env = env
1213 elif factory.in_chroot():
1214 self.env = test_environment.FakeChrootEnvironment()
1215 logging.warn(
1216 'Using chroot environment: will not actually run autotests')
1217 else:
1218 self.env = test_environment.DUTEnvironment()
1219 self.env.goofy = self
1220
1221 if self.options.restart:
1222 state.clear_state()
1223
Jon Salz0697cbf2012-07-04 15:14:04 +08001224 if self.options.ui_scale_factor != 1 and utils.in_qemu():
1225 logging.warn(
1226 'In QEMU; ignoring ui_scale_factor argument')
1227 self.options.ui_scale_factor = 1
1228
1229 logging.info('Started')
1230
1231 self.start_state_server()
1232 self.state_instance.set_shared_data('hwid_cfg', get_hwid_cfg())
1233 self.state_instance.set_shared_data('ui_scale_factor',
Ricky Liang09216dc2013-02-22 17:26:45 +08001234 self.options.ui_scale_factor)
1235 self.state_instance.set_shared_data('one_pixel_less',
1236 self.options.one_pixel_less)
Jon Salz0697cbf2012-07-04 15:14:04 +08001237 self.last_shutdown_time = (
1238 self.state_instance.get_shared_data('shutdown_time', optional=True))
1239 self.state_instance.del_shared_data('shutdown_time', optional=True)
1240
Jon Salzb19ea072013-02-07 16:35:00 +08001241 self.state_instance.del_shared_data('startup_error', optional=True)
Jon Salz0697cbf2012-07-04 15:14:04 +08001242 if not self.options.test_list:
1243 self.options.test_list = find_test_list()
Jon Salzb19ea072013-02-07 16:35:00 +08001244 if self.options.test_list:
Jon Salz0697cbf2012-07-04 15:14:04 +08001245 logging.info('Using test list %s', self.options.test_list)
Jon Salzb19ea072013-02-07 16:35:00 +08001246 try:
1247 self.test_list = factory.read_test_list(
1248 self.options.test_list,
1249 self.state_instance)
1250 except: # pylint: disable=W0702
1251 logging.exception('Unable to read test list %r', self.options.test_list)
1252 self.state_instance.set_shared_data('startup_error',
1253 'Unable to read test list %s\n%s' % (
1254 self.options.test_list,
1255 traceback.format_exc()))
1256 else:
1257 logging.error('No test list found.')
1258 self.state_instance.set_shared_data('startup_error',
1259 'No test list found.')
Jon Salz0697cbf2012-07-04 15:14:04 +08001260
Jon Salzb19ea072013-02-07 16:35:00 +08001261 if not self.test_list:
1262 if self.options.ui == 'chrome':
1263 # Create an empty test list with default options so that the rest of
1264 # startup can proceed.
1265 self.test_list = factory.FactoryTestList(
1266 [], self.state_instance, factory.Options())
1267 else:
1268 # Bail with an error; no point in starting up.
1269 sys.exit('No valid test list; exiting.')
1270
Jon Salz822838b2013-03-25 17:32:33 +08001271 if self.test_list.options.clear_state_on_start:
1272 self.state_instance.clear_test_state()
1273
Vic Yang3e1cf5d2013-06-05 18:50:24 +08001274 if system.SystemInfo().firmware_version is None and not utils.in_chroot():
Vic Yang9bd4f772013-06-04 17:34:00 +08001275 self.state_instance.set_shared_data('startup_error',
1276 'Netboot firmware detected\n'
1277 'Connect Ethernet and reboot to re-image.\n'
1278 u'侦测到网路开机固件\n'
1279 u'请连接乙太网并重启')
1280
Jon Salz0697cbf2012-07-04 15:14:04 +08001281 if not self.state_instance.has_shared_data('ui_lang'):
1282 self.state_instance.set_shared_data('ui_lang',
1283 self.test_list.options.ui_lang)
1284 self.state_instance.set_shared_data(
1285 'test_list_options',
1286 self.test_list.options.__dict__)
1287 self.state_instance.test_list = self.test_list
1288
Jon Salz83ef34b2012-11-01 19:46:35 +08001289 if not utils.in_chroot() and self.test_list.options.disable_log_rotation:
1290 open('/var/lib/cleanup_logs_paused', 'w').close()
1291
Jon Salz23926422012-09-01 03:38:13 +08001292 if self.options.dummy_shopfloor:
1293 os.environ[shopfloor.SHOPFLOOR_SERVER_ENV_VAR_NAME] = (
1294 'http://localhost:%d/' % shopfloor.DEFAULT_SERVER_PORT)
1295 self.dummy_shopfloor = Spawn(
1296 [os.path.join(factory.FACTORY_PATH, 'bin', 'shopfloor_server'),
1297 '--dummy'])
1298 elif self.test_list.options.shopfloor_server_url:
1299 shopfloor.set_server_url(self.test_list.options.shopfloor_server_url)
Jon Salz2bf2f6b2013-03-28 18:49:26 +08001300 shopfloor.set_enabled(True)
Jon Salz23926422012-09-01 03:38:13 +08001301
Jon Salz0f996602012-10-03 15:26:48 +08001302 if self.test_list.options.time_sanitizer and not utils.in_chroot():
Jon Salz8fa8e832012-07-13 19:04:09 +08001303 self.time_sanitizer = time_sanitizer.TimeSanitizer(
1304 base_time=time_sanitizer.GetBaseTimeFromFile(
1305 # lsb-factory is written by the factory install shim during
1306 # installation, so it should have a good time obtained from
Jon Salz54882d02012-08-31 01:57:54 +08001307 # the mini-Omaha server. If it's not available, we'll use
1308 # /etc/lsb-factory (which will be much older, but reasonably
1309 # sane) and rely on a shopfloor sync to set a more accurate
1310 # time.
1311 '/usr/local/etc/lsb-factory',
1312 '/etc/lsb-release'))
Jon Salz8fa8e832012-07-13 19:04:09 +08001313 self.time_sanitizer.RunOnce()
1314
Vic Yangd8990da2013-06-27 16:57:43 +08001315 if self.test_list.options.check_cpu_usage_period_secs:
1316 self.cpu_usage_watcher = Spawn(['py/tools/cpu_usage_monitor.py',
1317 '-p', str(self.test_list.options.check_cpu_usage_period_secs)],
1318 cwd=factory.FACTORY_PATH)
1319
Jon Salz0697cbf2012-07-04 15:14:04 +08001320 self.init_states()
1321 self.start_event_server()
1322 self.connection_manager = self.env.create_connection_manager(
Tai-Hsu Lin371351a2012-08-27 14:17:14 +08001323 self.test_list.options.wlans,
1324 self.test_list.options.scan_wifi_period_secs)
Jon Salz0697cbf2012-07-04 15:14:04 +08001325 # Note that we create a log watcher even if
1326 # sync_event_log_period_secs isn't set (no background
1327 # syncing), since we may use it to flush event logs as well.
1328 self.log_watcher = EventLogWatcher(
1329 self.test_list.options.sync_event_log_period_secs,
Jon Salzd15bbcf2013-05-21 17:33:57 +08001330 event_log_db_file=None,
Jon Salz16d10542012-07-23 12:18:45 +08001331 handle_event_logs_callback=self.handle_event_logs)
Jon Salz0697cbf2012-07-04 15:14:04 +08001332 if self.test_list.options.sync_event_log_period_secs:
1333 self.log_watcher.StartWatchThread()
1334
Cheng-Yi Chiang344b10f2013-05-03 16:44:03 +08001335 # Note that we create a system log manager even if
1336 # sync_log_period_secs isn't set (no background
1337 # syncing), since we may kick it to sync logs in its
1338 # thread.
1339 self.system_log_manager = SystemLogManager(
Cheng-Yi Chiang835f2682013-05-06 22:15:48 +08001340 sync_log_paths=self.test_list.options.sync_log_paths,
1341 sync_period_sec=self.test_list.options.sync_log_period_secs,
1342 clear_log_paths=self.test_list.options.clear_log_paths)
Cheng-Yi Chiang344b10f2013-05-03 16:44:03 +08001343 self.system_log_manager.StartSyncThread()
1344
Jon Salz0697cbf2012-07-04 15:14:04 +08001345 self.update_system_info()
1346
Vic Yang4953fc12012-07-26 16:19:53 +08001347 assert ((self.test_list.options.min_charge_pct is None) ==
1348 (self.test_list.options.max_charge_pct is None))
Vic Yange83d9a12013-04-19 20:00:20 +08001349 if utils.in_chroot():
1350 logging.info('In chroot, ignoring charge manager and charge state')
1351 elif self.test_list.options.min_charge_pct is not None:
Vic Yang4953fc12012-07-26 16:19:53 +08001352 self.charge_manager = ChargeManager(self.test_list.options.min_charge_pct,
1353 self.test_list.options.max_charge_pct)
Jon Salzad7353b2012-10-15 16:22:46 +08001354 system.SystemStatus.charge_manager = self.charge_manager
Cheng-Yi Chiangd8186952013-04-04 23:41:14 +08001355 else:
1356 # Goofy should set charger state to charge if charge_manager is disabled.
1357 try:
1358 system.GetBoard().SetChargeState(Board.ChargeState.CHARGE)
1359 except BoardException:
1360 logging.exception('Unable to set charge state on this board')
Vic Yang4953fc12012-07-26 16:19:53 +08001361
Cheng-Yi Chiangcdfa4182013-05-05 03:20:19 +08001362 self.core_dump_manager = CoreDumpManager(
1363 self.test_list.options.core_dump_watchlist)
1364
Jon Salz0697cbf2012-07-04 15:14:04 +08001365 os.environ['CROS_FACTORY'] = '1'
1366 os.environ['CROS_DISABLE_SITE_SYSINFO'] = '1'
1367
1368 # Set CROS_UI since some behaviors in ui.py depend on the
1369 # particular UI in use. TODO(jsalz): Remove this (and all
1370 # places it is used) when the GTK UI is removed.
1371 os.environ['CROS_UI'] = self.options.ui
1372
Jon Salz416f9cc2013-05-10 18:32:50 +08001373 # Initialize hooks.
1374 module, cls = self.test_list.options.hooks_class.rsplit('.', 1)
1375 self.hooks = getattr(__import__(module, fromlist=[cls]), cls)()
1376 assert isinstance(self.hooks, factory.Hooks), (
1377 "hooks should be of type Hooks but is %r" % type(self.hooks))
1378 self.hooks.test_list = self.test_list
1379
Jon Salzce6a7f82013-06-10 18:22:54 +08001380 if not utils.in_chroot():
Jon Salzddf0d052013-06-18 12:52:44 +08001381 self.cpufreq_manager = CpufreqManager(event_log=self.event_log)
Jon Salzce6a7f82013-06-10 18:22:54 +08001382
Jon Salz416f9cc2013-05-10 18:32:50 +08001383 # Call startup hook.
1384 self.hooks.OnStartup()
1385
Jon Salze12c2b32013-06-25 16:24:34 +08001386 self.find_kcrashes()
1387
Jon Salz0697cbf2012-07-04 15:14:04 +08001388 if self.options.ui == 'chrome':
1389 self.env.launch_chrome()
1390 logging.info('Waiting for a web socket connection')
Cheng-Yi Chiangfd8ed392013-03-08 21:37:31 +08001391 self.web_socket_manager.wait()
Jon Salz0697cbf2012-07-04 15:14:04 +08001392
1393 # Wait for the test widget size to be set; this is done in
1394 # an asynchronous RPC so there is a small chance that the
1395 # web socket might be opened first.
1396 for _ in range(100): # 10 s
1397 try:
1398 if self.state_instance.get_shared_data('test_widget_size'):
1399 break
Hung-Te Linf2f78f72012-02-08 19:27:11 +08001400 except KeyError:
Jon Salz0697cbf2012-07-04 15:14:04 +08001401 pass # Retry
1402 time.sleep(0.1) # 100 ms
1403 else:
1404 logging.warn('Never received test_widget_size from UI')
Jon Salz45297282013-05-18 14:31:47 +08001405
1406 # Send Chrome a Tab to get focus to the factory UI
1407 # (http://crosbug.com/p/19444). TODO(jsalz): remove this hack
1408 # and figure out the right way to get the focus to Chrome.
1409 if not utils.in_chroot():
1410 Spawn(
1411 [os.path.join(factory.FACTORY_PATH, 'bin', 'send_key'), 'Tab'],
1412 check_call=True, log=True)
Jon Salz0697cbf2012-07-04 15:14:04 +08001413 elif self.options.ui == 'gtk':
1414 self.start_ui()
Hung-Te Linf2f78f72012-02-08 19:27:11 +08001415
Ricky Liang650f6bf2012-09-28 13:22:54 +08001416 # Create download path for autotest beforehand or autotests run at
1417 # the same time might fail due to race condition.
1418 if not factory.in_chroot():
1419 utils.TryMakeDirs(os.path.join('/usr/local/autotest', 'tests',
1420 'download'))
1421
Jon Salz0697cbf2012-07-04 15:14:04 +08001422 def state_change_callback(test, test_state):
1423 self.event_client.post_event(
1424 Event(Event.Type.STATE_CHANGE,
1425 path=test.path, state=test_state))
1426 self.test_list.state_change_callback = state_change_callback
Jon Salz73e0fd02012-04-04 11:46:38 +08001427
Jon Salza6711d72012-07-18 14:33:03 +08001428 for handler in self.on_ui_startup:
1429 handler()
1430
1431 self.prespawner = Prespawner()
1432 self.prespawner.start()
1433
Jon Salz0697cbf2012-07-04 15:14:04 +08001434 try:
1435 tests_after_shutdown = self.state_instance.get_shared_data(
1436 'tests_after_shutdown')
1437 except KeyError:
1438 tests_after_shutdown = None
Jon Salz57717ca2012-04-04 16:47:25 +08001439
Jon Salz5c344f62012-07-13 14:31:16 +08001440 force_auto_run = (tests_after_shutdown == FORCE_AUTO_RUN)
1441 if not force_auto_run and tests_after_shutdown is not None:
Jon Salz0697cbf2012-07-04 15:14:04 +08001442 logging.info('Resuming tests after shutdown: %s',
1443 tests_after_shutdown)
Jon Salz0697cbf2012-07-04 15:14:04 +08001444 self.tests_to_run.extend(
1445 self.test_list.lookup_path(t) for t in tests_after_shutdown)
1446 self.run_queue.put(self.run_next_test)
1447 else:
Jon Salz5c344f62012-07-13 14:31:16 +08001448 if force_auto_run or self.test_list.options.auto_run_on_start:
Jon Salz0697cbf2012-07-04 15:14:04 +08001449 self.run_queue.put(
1450 lambda: self.run_tests(self.test_list, untested_only=True))
Jon Salz5c344f62012-07-13 14:31:16 +08001451 self.state_instance.set_shared_data('tests_after_shutdown', None)
Hung-Te Linf2f78f72012-02-08 19:27:11 +08001452
Dean Liao592e4d52013-01-10 20:06:39 +08001453 self.may_disable_cros_shortcut_keys()
1454
1455 def may_disable_cros_shortcut_keys(self):
1456 test_options = self.test_list.options
1457 if test_options.disable_cros_shortcut_keys:
1458 logging.info('Filter ChromeOS shortcut keys.')
1459 self.key_filter = KeyFilter(
1460 unmap_caps_lock=test_options.disable_caps_lock,
1461 caps_lock_keycode=test_options.caps_lock_keycode)
1462 self.key_filter.Start()
1463
Jon Salz0697cbf2012-07-04 15:14:04 +08001464 def run(self):
1465 '''Runs Goofy.'''
1466 # Process events forever.
1467 while self.run_once(True):
1468 pass
Jon Salz73e0fd02012-04-04 11:46:38 +08001469
Jon Salz0697cbf2012-07-04 15:14:04 +08001470 def run_once(self, block=False):
1471 '''Runs all items pending in the event loop.
Hung-Te Linf2f78f72012-02-08 19:27:11 +08001472
Jon Salz0697cbf2012-07-04 15:14:04 +08001473 Args:
1474 block: If true, block until at least one event is processed.
Jon Salz7c15e8b2012-06-19 17:10:37 +08001475
Jon Salz0697cbf2012-07-04 15:14:04 +08001476 Returns:
1477 True to keep going or False to shut down.
1478 '''
1479 events = utils.DrainQueue(self.run_queue)
cychiang21886742012-07-05 15:16:32 +08001480 while not events:
Jon Salz0697cbf2012-07-04 15:14:04 +08001481 # Nothing on the run queue.
1482 self._run_queue_idle()
1483 if block:
1484 # Block for at least one event...
cychiang21886742012-07-05 15:16:32 +08001485 try:
1486 events.append(self.run_queue.get(timeout=RUN_QUEUE_TIMEOUT_SECS))
1487 except Queue.Empty:
1488 # Keep going (calling _run_queue_idle() again at the top of
1489 # the loop)
1490 continue
Jon Salz0697cbf2012-07-04 15:14:04 +08001491 # ...and grab anything else that showed up at the same
1492 # time.
1493 events.extend(utils.DrainQueue(self.run_queue))
cychiang21886742012-07-05 15:16:32 +08001494 else:
1495 break
Jon Salz51528e12012-07-02 18:54:45 +08001496
Jon Salz0697cbf2012-07-04 15:14:04 +08001497 for event in events:
1498 if not event:
1499 # Shutdown request.
1500 self.run_queue.task_done()
1501 return False
Jon Salz51528e12012-07-02 18:54:45 +08001502
Jon Salz0697cbf2012-07-04 15:14:04 +08001503 try:
1504 event()
Jon Salz85a39882012-07-05 16:45:04 +08001505 except: # pylint: disable=W0702
1506 logging.exception('Error in event loop')
Jon Salz0697cbf2012-07-04 15:14:04 +08001507 self.record_exception(traceback.format_exception_only(
1508 *sys.exc_info()[:2]))
1509 # But keep going
1510 finally:
1511 self.run_queue.task_done()
1512 return True
Jon Salz0405ab52012-03-16 15:26:52 +08001513
Jon Salz0e6532d2012-10-25 16:30:11 +08001514 def _should_sync_time(self, foreground=False):
1515 '''Returns True if we should attempt syncing time with shopfloor.
1516
1517 Args:
1518 foreground: If True, synchronizes even if background syncing
1519 is disabled (e.g., in explicit sync requests from the
1520 SyncShopfloor test).
1521 '''
1522 return ((foreground or
1523 self.test_list.options.sync_time_period_secs) and
Jon Salz54882d02012-08-31 01:57:54 +08001524 self.time_sanitizer and
1525 (not self.time_synced) and
1526 (not factory.in_chroot()))
1527
Jon Salz0e6532d2012-10-25 16:30:11 +08001528 def sync_time_with_shopfloor_server(self, foreground=False):
Jon Salz54882d02012-08-31 01:57:54 +08001529 '''Syncs time with shopfloor server, if not yet synced.
1530
Jon Salz0e6532d2012-10-25 16:30:11 +08001531 Args:
1532 foreground: If True, synchronizes even if background syncing
1533 is disabled (e.g., in explicit sync requests from the
1534 SyncShopfloor test).
1535
Jon Salz54882d02012-08-31 01:57:54 +08001536 Returns:
1537 False if no time sanitizer is available, or True if this sync (or a
1538 previous sync) succeeded.
1539
1540 Raises:
1541 Exception if unable to contact the shopfloor server.
1542 '''
Jon Salz0e6532d2012-10-25 16:30:11 +08001543 if self._should_sync_time(foreground):
Jon Salz54882d02012-08-31 01:57:54 +08001544 self.time_sanitizer.SyncWithShopfloor()
1545 self.time_synced = True
1546 return self.time_synced
1547
Jon Salzb92c5112012-09-21 15:40:11 +08001548 def log_disk_space_stats(self):
Jon Salz18e0e022013-06-11 17:13:39 +08001549 if (utils.in_chroot() or
1550 not self.test_list.options.log_disk_space_period_secs):
Jon Salzb92c5112012-09-21 15:40:11 +08001551 return
1552
1553 now = time.time()
1554 if (self.last_log_disk_space_time and
1555 now - self.last_log_disk_space_time <
1556 self.test_list.options.log_disk_space_period_secs):
1557 return
1558 self.last_log_disk_space_time = now
1559
Cheng-Yi Chiangd0406522013-04-01 15:40:18 +08001560 # Upload event if stateful partition usage is above threshold.
1561 # Stateful partition is mounted on /usr/local, while
1562 # encrypted stateful partition is mounted on /var.
1563 # If there are too much logs in the factory process,
1564 # these two partitions might get full.
Jon Salzb92c5112012-09-21 15:40:11 +08001565 try:
Cheng-Yi Chiangd0406522013-04-01 15:40:18 +08001566 vfs_infos = disk_space.GetAllVFSInfo()
1567 stateful_info, encrypted_info = None, None
1568 for vfs_info in vfs_infos.values():
1569 if '/usr/local' in vfs_info.mount_points:
1570 stateful_info = vfs_info
1571 if '/var' in vfs_info.mount_points:
1572 encrypted_info = vfs_info
1573
1574 stateful = disk_space.GetPartitionUsage(stateful_info)
1575 encrypted = disk_space.GetPartitionUsage(encrypted_info)
1576
1577 above_threshold = (
1578 self.test_list.options.stateful_usage_threshold and
1579 max(stateful.bytes_used_pct,
1580 stateful.inodes_used_pct,
1581 encrypted.bytes_used_pct,
1582 encrypted.inodes_used_pct) >
1583 self.test_list.options.stateful_usage_threshold)
1584
1585 if above_threshold:
1586 self.event_log.Log('stateful_partition_usage',
1587 partitions={
1588 'stateful': {
1589 'bytes_used_pct': FloatDigit(stateful.bytes_used_pct, 2),
1590 'inodes_used_pct': FloatDigit(stateful.inodes_used_pct, 2)},
1591 'encrypted_stateful': {
1592 'bytes_used_pct': FloatDigit(encrypted.bytes_used_pct, 2),
1593 'inodes_used_pct': FloatDigit(encrypted.inodes_used_pct, 2)}
1594 })
1595 self.log_watcher.ScanEventLogs()
Cheng-Yi Chiang00798e72013-06-20 18:16:39 +08001596 if (not utils.in_chroot() and
1597 self.test_list.options.stateful_usage_above_threshold_action):
1598 Spawn(self.test_list.options.stateful_usage_above_threshold_action,
1599 call=True)
Cheng-Yi Chiangd0406522013-04-01 15:40:18 +08001600
1601 message = disk_space.FormatSpaceUsedAll(vfs_infos)
Jon Salz3c493bb2013-02-07 17:24:58 +08001602 if message != self.last_log_disk_space_message:
Cheng-Yi Chiangd0406522013-04-01 15:40:18 +08001603 if above_threshold:
1604 logging.warning(message)
1605 else:
1606 logging.info(message)
Jon Salz3c493bb2013-02-07 17:24:58 +08001607 self.last_log_disk_space_message = message
Jon Salzb92c5112012-09-21 15:40:11 +08001608 except: # pylint: disable=W0702
1609 logging.exception('Unable to get disk space used')
1610
Justin Chuang83813982013-05-13 01:26:32 +08001611 def check_battery(self):
1612 '''Checks the current battery status.
1613
1614 Logs current battery charging level and status to log. If the battery level
1615 is lower below warning_low_battery_pct, send warning event to shopfloor.
1616 If the battery level is lower below critical_low_battery_pct, flush disks.
1617 '''
1618 if not self.test_list.options.check_battery_period_secs:
1619 return
1620
1621 now = time.time()
1622 if (self.last_check_battery_time and
1623 now - self.last_check_battery_time <
1624 self.test_list.options.check_battery_period_secs):
1625 return
1626 self.last_check_battery_time = now
1627
1628 message = ''
1629 log_level = logging.INFO
1630 try:
1631 power = system.GetBoard().power
1632 if not power.CheckBatteryPresent():
1633 message = 'Battery is not present'
1634 else:
1635 ac_present = power.CheckACPresent()
1636 charge_pct = power.GetChargePct(get_float=True)
1637 message = ('Current battery level %.1f%%, AC charger is %s' %
1638 (charge_pct, 'connected' if ac_present else 'disconnected'))
1639
1640 if charge_pct > self.test_list.options.critical_low_battery_pct:
1641 critical_low_battery = False
1642 else:
1643 critical_low_battery = True
1644 # Only sync disks when battery level is still above minimum
1645 # value. This can be used for offline analysis when shopfloor cannot
1646 # be connected.
1647 if charge_pct > MIN_BATTERY_LEVEL_FOR_DISK_SYNC:
1648 logging.warning('disk syncing for critical low battery situation')
1649 os.system('sync; sync; sync')
1650 else:
1651 logging.warning('disk syncing is cancelled '
1652 'because battery level is lower than %.1f',
1653 MIN_BATTERY_LEVEL_FOR_DISK_SYNC)
1654
1655 # Notify shopfloor server
1656 if (critical_low_battery or
1657 (not ac_present and
1658 charge_pct <= self.test_list.options.warning_low_battery_pct)):
1659 log_level = logging.WARNING
1660
1661 self.event_log.Log('low_battery',
1662 battery_level=charge_pct,
1663 charger_connected=ac_present,
1664 critical=critical_low_battery)
1665 self.log_watcher.KickWatchThread()
1666 self.system_log_manager.KickSyncThread()
1667 except: # pylint: disable=W0702
1668 logging.exception('Unable to check battery or notify shopfloor')
1669 finally:
1670 if message != self.last_check_battery_message:
1671 logging.log(log_level, message)
1672 self.last_check_battery_message = message
1673
Cheng-Yi Chiangcdfa4182013-05-05 03:20:19 +08001674 def check_core_dump(self):
1675 '''Checks if there is any core dumped file.
1676
1677 Removes unwanted core dump files immediately.
1678 Syncs those files matching watch list to server with a delay between
1679 each sync. After the files have been synced to server, deletes the files.
1680 '''
1681 core_dump_files = self.core_dump_manager.ScanFiles()
1682 if core_dump_files:
1683 now = time.time()
1684 if (self.last_kick_sync_time and now - self.last_kick_sync_time <
1685 self.test_list.options.kick_sync_min_interval_secs):
1686 return
1687 self.last_kick_sync_time = now
1688
1689 # Sends event to server
1690 self.event_log.Log('core_dumped', files=core_dump_files)
1691 self.log_watcher.KickWatchThread()
1692
1693 # Syncs files to server
1694 self.system_log_manager.KickSyncThread(
1695 core_dump_files, self.core_dump_manager.ClearFiles)
1696
Jon Salz8fa8e832012-07-13 19:04:09 +08001697 def sync_time_in_background(self):
Jon Salzb22d1172012-08-06 10:38:57 +08001698 '''Writes out current time and tries to sync with shopfloor server.'''
1699 if not self.time_sanitizer:
1700 return
1701
1702 # Write out the current time.
1703 self.time_sanitizer.SaveTime()
1704
Jon Salz54882d02012-08-31 01:57:54 +08001705 if not self._should_sync_time():
Jon Salz8fa8e832012-07-13 19:04:09 +08001706 return
1707
1708 now = time.time()
1709 if self.last_sync_time and (
1710 now - self.last_sync_time <
1711 self.test_list.options.sync_time_period_secs):
1712 # Not yet time for another check.
1713 return
1714 self.last_sync_time = now
1715
1716 def target():
1717 try:
Jon Salz54882d02012-08-31 01:57:54 +08001718 self.sync_time_with_shopfloor_server()
Jon Salz8fa8e832012-07-13 19:04:09 +08001719 except: # pylint: disable=W0702
1720 # Oh well. Log an error (but no trace)
1721 logging.info(
1722 'Unable to get time from shopfloor server: %s',
1723 utils.FormatExceptionOnly())
1724
1725 thread = threading.Thread(target=target)
1726 thread.daemon = True
1727 thread.start()
1728
Jon Salz0697cbf2012-07-04 15:14:04 +08001729 def _run_queue_idle(self):
Vic Yang4953fc12012-07-26 16:19:53 +08001730 '''Invoked when the run queue has no events.
1731
1732 This method must not raise exception.
1733 '''
Jon Salzb22d1172012-08-06 10:38:57 +08001734 now = time.time()
1735 if (self.last_idle and
1736 now < (self.last_idle + RUN_QUEUE_TIMEOUT_SECS - 1)):
1737 # Don't run more often than once every (RUN_QUEUE_TIMEOUT_SECS -
1738 # 1) seconds.
1739 return
1740
1741 self.last_idle = now
1742
Vic Yang311ddb82012-09-26 12:08:28 +08001743 self.check_exclusive()
cychiang21886742012-07-05 15:16:32 +08001744 self.check_for_updates()
Jon Salz8fa8e832012-07-13 19:04:09 +08001745 self.sync_time_in_background()
Jon Salzb92c5112012-09-21 15:40:11 +08001746 self.log_disk_space_stats()
Justin Chuang83813982013-05-13 01:26:32 +08001747 self.check_battery()
Cheng-Yi Chiangcdfa4182013-05-05 03:20:19 +08001748 self.check_core_dump()
Jon Salz57717ca2012-04-04 16:47:25 +08001749
Jon Salzd15bbcf2013-05-21 17:33:57 +08001750 def handle_event_logs(self, chunks):
Jon Salz0697cbf2012-07-04 15:14:04 +08001751 '''Callback for event watcher.
Jon Salz258a40c2012-04-19 12:34:01 +08001752
Jon Salz0697cbf2012-07-04 15:14:04 +08001753 Attempts to upload the event logs to the shopfloor server.
Vic Yang93027612013-05-06 02:42:49 +08001754
1755 Args:
Jon Salzd15bbcf2013-05-21 17:33:57 +08001756 chunks: A list of Chunk objects.
Jon Salz0697cbf2012-07-04 15:14:04 +08001757 '''
Vic Yang93027612013-05-06 02:42:49 +08001758 first_exception = None
1759 exception_count = 0
1760
Jon Salzd15bbcf2013-05-21 17:33:57 +08001761 for chunk in chunks:
Vic Yang93027612013-05-06 02:42:49 +08001762 try:
Jon Salzcddb6402013-05-23 12:56:42 +08001763 description = 'event logs (%s)' % str(chunk)
Vic Yang93027612013-05-06 02:42:49 +08001764 start_time = time.time()
1765 shopfloor_client = shopfloor.get_instance(
1766 detect=True,
1767 timeout=self.test_list.options.shopfloor_timeout_secs)
Jon Salzd15bbcf2013-05-21 17:33:57 +08001768 shopfloor_client.UploadEvent(chunk.log_name + "." +
1769 event_log.GetReimageId(),
1770 Binary(chunk.chunk))
Vic Yang93027612013-05-06 02:42:49 +08001771 logging.info(
1772 'Successfully synced %s in %.03f s',
1773 description, time.time() - start_time)
1774 except: # pylint: disable=W0702
Jon Salzd15bbcf2013-05-21 17:33:57 +08001775 first_exception = (first_exception or (chunk.log_name + ': ' +
Vic Yang93027612013-05-06 02:42:49 +08001776 utils.FormatExceptionOnly()))
1777 exception_count += 1
1778
1779 if exception_count:
1780 if exception_count == 1:
1781 msg = 'Log upload failed: %s' % first_exception
1782 else:
1783 msg = '%d log upload failed; first is: %s' % (
1784 exception_count, first_exception)
1785 raise Exception(msg)
1786
Jon Salz57717ca2012-04-04 16:47:25 +08001787
Jon Salz0697cbf2012-07-04 15:14:04 +08001788 def run_tests_with_status(self, statuses_to_run, starting_at=None,
1789 root=None):
1790 '''Runs all top-level tests with a particular status.
Jon Salz0405ab52012-03-16 15:26:52 +08001791
Jon Salz0697cbf2012-07-04 15:14:04 +08001792 All active tests, plus any tests to re-run, are reset.
Jon Salz57717ca2012-04-04 16:47:25 +08001793
Jon Salz0697cbf2012-07-04 15:14:04 +08001794 Args:
1795 starting_at: If provided, only auto-runs tests beginning with
1796 this test.
1797 '''
1798 root = root or self.test_list
Jon Salz57717ca2012-04-04 16:47:25 +08001799
Jon Salz0697cbf2012-07-04 15:14:04 +08001800 if starting_at:
1801 # Make sure they passed a test, not a string.
1802 assert isinstance(starting_at, factory.FactoryTest)
Jon Salz0405ab52012-03-16 15:26:52 +08001803
Jon Salz0697cbf2012-07-04 15:14:04 +08001804 tests_to_reset = []
1805 tests_to_run = []
Jon Salz0405ab52012-03-16 15:26:52 +08001806
Jon Salz0697cbf2012-07-04 15:14:04 +08001807 found_starting_at = False
Jon Salz0405ab52012-03-16 15:26:52 +08001808
Jon Salz0697cbf2012-07-04 15:14:04 +08001809 for test in root.get_top_level_tests():
1810 if starting_at:
1811 if test == starting_at:
1812 # We've found starting_at; do auto-run on all
1813 # subsequent tests.
1814 found_starting_at = True
1815 if not found_starting_at:
1816 # Don't start this guy yet
1817 continue
Jon Salz0405ab52012-03-16 15:26:52 +08001818
Jon Salz0697cbf2012-07-04 15:14:04 +08001819 status = test.get_state().status
1820 if status == TestState.ACTIVE or status in statuses_to_run:
1821 # Reset the test (later; we will need to abort
1822 # all active tests first).
1823 tests_to_reset.append(test)
1824 if status in statuses_to_run:
1825 tests_to_run.append(test)
Jon Salz0405ab52012-03-16 15:26:52 +08001826
Jon Salz6dc031d2013-06-19 13:06:23 +08001827 self.abort_active_tests('Operator requested run/re-run of certain tests')
Jon Salz258a40c2012-04-19 12:34:01 +08001828
Jon Salz0697cbf2012-07-04 15:14:04 +08001829 # Reset all statuses of the tests to run (in case any tests were active;
1830 # we want them to be run again).
1831 for test_to_reset in tests_to_reset:
1832 for test in test_to_reset.walk():
1833 test.update_state(status=TestState.UNTESTED)
Jon Salz57717ca2012-04-04 16:47:25 +08001834
Jon Salz0697cbf2012-07-04 15:14:04 +08001835 self.run_tests(tests_to_run, untested_only=True)
Jon Salz0405ab52012-03-16 15:26:52 +08001836
Jon Salz0697cbf2012-07-04 15:14:04 +08001837 def restart_tests(self, root=None):
1838 '''Restarts all tests.'''
1839 root = root or self.test_list
Jon Salz0405ab52012-03-16 15:26:52 +08001840
Jon Salz6dc031d2013-06-19 13:06:23 +08001841 self.abort_active_tests('Operator requested restart of certain tests')
Jon Salz0697cbf2012-07-04 15:14:04 +08001842 for test in root.walk():
1843 test.update_state(status=TestState.UNTESTED)
1844 self.run_tests(root)
Hung-Te Lin96632362012-03-20 21:14:18 +08001845
Jon Salz0697cbf2012-07-04 15:14:04 +08001846 def auto_run(self, starting_at=None, root=None):
1847 '''"Auto-runs" tests that have not been run yet.
Hung-Te Lin96632362012-03-20 21:14:18 +08001848
Jon Salz0697cbf2012-07-04 15:14:04 +08001849 Args:
1850 starting_at: If provide, only auto-runs tests beginning with
1851 this test.
1852 '''
1853 root = root or self.test_list
1854 self.run_tests_with_status([TestState.UNTESTED, TestState.ACTIVE],
1855 starting_at=starting_at,
1856 root=root)
Jon Salz968e90b2012-03-18 16:12:43 +08001857
Jon Salz0697cbf2012-07-04 15:14:04 +08001858 def re_run_failed(self, root=None):
1859 '''Re-runs failed tests.'''
1860 root = root or self.test_list
1861 self.run_tests_with_status([TestState.FAILED], root=root)
Jon Salz57717ca2012-04-04 16:47:25 +08001862
Jon Salz0697cbf2012-07-04 15:14:04 +08001863 def show_review_information(self):
1864 '''Event handler for showing review information screen.
Jon Salz57717ca2012-04-04 16:47:25 +08001865
Jon Salz0697cbf2012-07-04 15:14:04 +08001866 The information screene is rendered by main UI program (ui.py), so in
1867 goofy we only need to kill all active tests, set them as untested, and
1868 clear remaining tests.
1869 '''
1870 self.kill_active_tests(False)
Jon Salza6711d72012-07-18 14:33:03 +08001871 self.cancel_pending_tests()
Jon Salz57717ca2012-04-04 16:47:25 +08001872
Jon Salz0697cbf2012-07-04 15:14:04 +08001873 def handle_switch_test(self, event):
1874 '''Switches to a particular test.
Jon Salz0405ab52012-03-16 15:26:52 +08001875
Jon Salz0697cbf2012-07-04 15:14:04 +08001876 @param event: The SWITCH_TEST event.
1877 '''
1878 test = self.test_list.lookup_path(event.path)
1879 if not test:
1880 logging.error('Unknown test %r', event.key)
1881 return
Jon Salz73e0fd02012-04-04 11:46:38 +08001882
Jon Salz0697cbf2012-07-04 15:14:04 +08001883 invoc = self.invocations.get(test)
1884 if invoc and test.backgroundable:
1885 # Already running: just bring to the front if it
1886 # has a UI.
1887 logging.info('Setting visible test to %s', test.path)
Jon Salz36fbbb52012-07-05 13:45:06 +08001888 self.set_visible_test(test)
Jon Salz0697cbf2012-07-04 15:14:04 +08001889 return
Jon Salz73e0fd02012-04-04 11:46:38 +08001890
Jon Salz6dc031d2013-06-19 13:06:23 +08001891 self.abort_active_tests('Operator requested abort (switch_test)')
Jon Salz0697cbf2012-07-04 15:14:04 +08001892 for t in test.walk():
1893 t.update_state(status=TestState.UNTESTED)
Jon Salz73e0fd02012-04-04 11:46:38 +08001894
Jon Salz0697cbf2012-07-04 15:14:04 +08001895 if self.test_list.options.auto_run_on_keypress:
1896 self.auto_run(starting_at=test)
1897 else:
1898 self.run_tests(test)
Jon Salz73e0fd02012-04-04 11:46:38 +08001899
Jon Salz0697cbf2012-07-04 15:14:04 +08001900 def wait(self):
1901 '''Waits for all pending invocations.
1902
1903 Useful for testing.
1904 '''
Jon Salz1acc8742012-07-17 17:45:55 +08001905 while self.invocations:
1906 for k, v in self.invocations.iteritems():
1907 logging.info('Waiting for %s to complete...', k)
1908 v.thread.join()
1909 self.reap_completed_tests()
Jon Salz0697cbf2012-07-04 15:14:04 +08001910
1911 def check_exceptions(self):
1912 '''Raises an error if any exceptions have occurred in
1913 invocation threads.'''
1914 if self.exceptions:
1915 raise RuntimeError('Exception in invocation thread: %r' %
1916 self.exceptions)
1917
1918 def record_exception(self, msg):
1919 '''Records an exception in an invocation thread.
1920
1921 An exception with the given message will be rethrown when
1922 Goofy is destroyed.'''
1923 self.exceptions.append(msg)
Jon Salz73e0fd02012-04-04 11:46:38 +08001924
Hung-Te Linf2f78f72012-02-08 19:27:11 +08001925
1926if __name__ == '__main__':
Jon Salz77c151e2012-08-28 07:20:37 +08001927 goofy = Goofy()
1928 try:
1929 goofy.main()
Jon Salz0f996602012-10-03 15:26:48 +08001930 except SystemExit:
1931 # Propagate SystemExit without logging.
1932 raise
Jon Salz31373eb2012-09-21 16:19:49 +08001933 except:
Jon Salz0f996602012-10-03 15:26:48 +08001934 # Log the error before trying to shut down (unless it's a graceful
1935 # exit).
Jon Salz31373eb2012-09-21 16:19:49 +08001936 logging.exception('Error in main loop')
1937 raise
Jon Salz77c151e2012-08-28 07:20:37 +08001938 finally:
1939 goofy.destroy()