blob: 6cddef450c7b3b295e5ca2413fe4fc8f94ea0d65 [file] [log] [blame]
showardce38e0c2008-05-29 19:36:16 +00001#!/usr/bin/python
2
Justin Giorgi67ad67d2016-06-29 14:41:04 -07003import gc
4import time
5import unittest
6
showardce38e0c2008-05-29 19:36:16 +00007import common
showard364fe862008-10-17 02:01:16 +00008from autotest_lib.frontend import setup_django_environment
showardb6d16622009-05-26 19:35:29 +00009from autotest_lib.frontend.afe import frontend_test_utils
Dan Shi114e1722016-01-10 18:12:53 -080010from autotest_lib.client.common_lib import global_config
jadmanski3d161b02008-06-06 15:43:36 +000011from autotest_lib.client.common_lib.test_utils import mock
jamesrenc44ae992010-02-19 00:12:54 +000012from autotest_lib.database import database_connection
showardb1e51872008-10-07 11:08:18 +000013from autotest_lib.frontend.afe import models
beeps5e2bb4a2013-10-28 11:26:45 -070014from autotest_lib.scheduler import agent_task
Dan Shi80f7c532015-08-25 10:23:14 -070015from autotest_lib.scheduler import monitor_db, drone_manager
beeps5e2bb4a2013-10-28 11:26:45 -070016from autotest_lib.scheduler import pidfile_monitor
Prashanth B0e960282014-05-13 19:38:28 -070017from autotest_lib.scheduler import scheduler_config, gc_stats
Prashanth B0e960282014-05-13 19:38:28 -070018from autotest_lib.scheduler import scheduler_lib
jamesrenc44ae992010-02-19 00:12:54 +000019from autotest_lib.scheduler import scheduler_models
showardce38e0c2008-05-29 19:36:16 +000020
21_DEBUG = False
22
showarda3c58572009-03-12 20:36:59 +000023
showard9bb960b2009-11-19 01:02:11 +000024class DummyAgentTask(object):
showardd1195652009-12-08 22:21:02 +000025 num_processes = 1
26 owner_username = 'my_user'
showard9bb960b2009-11-19 01:02:11 +000027
jamesren76fcf192010-04-21 20:39:50 +000028 def get_drone_hostnames_allowed(self):
29 return None
30
showard9bb960b2009-11-19 01:02:11 +000031
showard170873e2009-01-07 00:22:26 +000032class DummyAgent(object):
showard8cc058f2009-09-08 16:26:33 +000033 started = False
showard170873e2009-01-07 00:22:26 +000034 _is_done = False
showardd1195652009-12-08 22:21:02 +000035 host_ids = ()
Dan Shi114e1722016-01-10 18:12:53 -080036 hostnames = {}
showardd1195652009-12-08 22:21:02 +000037 queue_entry_ids = ()
38
39 def __init__(self):
40 self.task = DummyAgentTask()
showard170873e2009-01-07 00:22:26 +000041
showard170873e2009-01-07 00:22:26 +000042
43 def tick(self):
showard8cc058f2009-09-08 16:26:33 +000044 self.started = True
showard170873e2009-01-07 00:22:26 +000045
46
47 def is_done(self):
48 return self._is_done
49
50
51 def set_done(self, done):
52 self._is_done = done
showard04c82c52008-05-29 19:38:12 +000053
showard56193bb2008-08-13 20:07:41 +000054
55class IsRow(mock.argument_comparator):
56 def __init__(self, row_id):
57 self.row_id = row_id
showardce38e0c2008-05-29 19:36:16 +000058
59
showard56193bb2008-08-13 20:07:41 +000060 def is_satisfied_by(self, parameter):
61 return list(parameter)[0] == self.row_id
62
63
64 def __str__(self):
65 return 'row with id %s' % self.row_id
66
67
showardd3dc1992009-04-22 21:01:40 +000068class IsAgentWithTask(mock.argument_comparator):
mbligh1ef218d2009-08-03 16:57:56 +000069 def __init__(self, task):
70 self._task = task
showardd3dc1992009-04-22 21:01:40 +000071
72
mbligh1ef218d2009-08-03 16:57:56 +000073 def is_satisfied_by(self, parameter):
74 if not isinstance(parameter, monitor_db.Agent):
75 return False
76 tasks = list(parameter.queue.queue)
77 if len(tasks) != 1:
78 return False
79 return tasks[0] == self._task
showardd3dc1992009-04-22 21:01:40 +000080
81
showard6b733412009-04-27 20:09:18 +000082def _set_host_and_qe_ids(agent_or_task, id_list=None):
83 if id_list is None:
84 id_list = []
85 agent_or_task.host_ids = agent_or_task.queue_entry_ids = id_list
Dan Shi114e1722016-01-10 18:12:53 -080086 agent_or_task.hostnames = dict((host_id, '192.168.1.1')
87 for host_id in id_list)
showard6b733412009-04-27 20:09:18 +000088
89
showardb6d16622009-05-26 19:35:29 +000090class BaseSchedulerTest(unittest.TestCase,
91 frontend_test_utils.FrontendTestMixin):
showard50c0e712008-09-22 16:20:37 +000092 _config_section = 'AUTOTEST_WEB'
showardce38e0c2008-05-29 19:36:16 +000093
jadmanski0afbb632008-06-06 21:10:57 +000094 def _do_query(self, sql):
showardb1e51872008-10-07 11:08:18 +000095 self._database.execute(sql)
showardce38e0c2008-05-29 19:36:16 +000096
97
showardb6d16622009-05-26 19:35:29 +000098 def _set_monitor_stubs(self):
Prathmesh Prabhu47bd1dd2017-01-06 15:04:46 -080099 self.mock_config = global_config.FakeGlobalConfig()
100 self.god.stub_with(global_config, 'global_config', self.mock_config)
101
showardb6d16622009-05-26 19:35:29 +0000102 # Clear the instance cache as this is a brand new database.
jamesrenc44ae992010-02-19 00:12:54 +0000103 scheduler_models.DBObject._clear_instance_cache()
showardce38e0c2008-05-29 19:36:16 +0000104
showardb1e51872008-10-07 11:08:18 +0000105 self._database = (
showard78f5b012009-12-23 00:05:59 +0000106 database_connection.TranslatingDatabase.get_test_database(
Prashanth B4ec98672014-05-15 10:44:54 -0700107 translators=scheduler_lib._DB_TRANSLATORS))
showard78f5b012009-12-23 00:05:59 +0000108 self._database.connect(db_type='django')
showardb1e51872008-10-07 11:08:18 +0000109 self._database.debug = _DEBUG
showardce38e0c2008-05-29 19:36:16 +0000110
Prashanth B0e960282014-05-13 19:38:28 -0700111 connection_manager = scheduler_lib.ConnectionManager(autocommit=False)
112 self.god.stub_with(connection_manager, 'db_connection', self._database)
113 self.god.stub_with(monitor_db, '_db_manager', connection_manager)
Jakob Juelichd615a1e2014-09-04 11:48:36 -0700114 self.god.stub_with(monitor_db, '_db', self._database)
Prashanth Bf66d51b2014-05-06 12:42:25 -0700115
beeps7d8a1b12013-10-29 17:58:34 -0700116 self.god.stub_with(monitor_db.BaseDispatcher,
117 '_get_pending_queue_entries',
118 self._get_pending_hqes)
jamesrenc44ae992010-02-19 00:12:54 +0000119 self.god.stub_with(scheduler_models, '_db', self._database)
120 self.god.stub_with(drone_manager.instance(), '_results_dir',
showard78f5b012009-12-23 00:05:59 +0000121 '/test/path')
jamesrenc44ae992010-02-19 00:12:54 +0000122 self.god.stub_with(drone_manager.instance(), '_temporary_directory',
showard78f5b012009-12-23 00:05:59 +0000123 '/test/path/tmp')
Jakob Juelichd615a1e2014-09-04 11:48:36 -0700124 self.god.stub_with(drone_manager.instance(), 'initialize',
125 lambda *args: None)
126 self.god.stub_with(drone_manager.instance(), 'execute_actions',
127 lambda *args: None)
showard56193bb2008-08-13 20:07:41 +0000128
jamesrenc44ae992010-02-19 00:12:54 +0000129 monitor_db.initialize_globals()
130 scheduler_models.initialize_globals()
131
showard56193bb2008-08-13 20:07:41 +0000132
showard56193bb2008-08-13 20:07:41 +0000133 def setUp(self):
showardb6d16622009-05-26 19:35:29 +0000134 self._frontend_common_setup()
showard56193bb2008-08-13 20:07:41 +0000135 self._set_monitor_stubs()
Prathmesh Prabhu688b9672017-01-06 15:05:58 -0800136 self._set_global_config_values()
showard56193bb2008-08-13 20:07:41 +0000137 self._dispatcher = monitor_db.Dispatcher()
showardce38e0c2008-05-29 19:36:16 +0000138
139
showard56193bb2008-08-13 20:07:41 +0000140 def tearDown(self):
showardb6d16622009-05-26 19:35:29 +0000141 self._database.disconnect()
142 self._frontend_common_teardown()
showardce38e0c2008-05-29 19:36:16 +0000143
144
Prathmesh Prabhu688b9672017-01-06 15:05:58 -0800145 def _set_global_config_values(self):
146 """Set global_config values to suit unittest needs."""
147 self.mock_config.set_config_value(
148 'SCHEDULER', 'inline_host_acquisition', True)
149
150
showard56193bb2008-08-13 20:07:41 +0000151 def _update_hqe(self, set, where=''):
showardeab66ce2009-12-23 00:03:56 +0000152 query = 'UPDATE afe_host_queue_entries SET ' + set
showard56193bb2008-08-13 20:07:41 +0000153 if where:
154 query += ' WHERE ' + where
155 self._do_query(query)
156
157
beeps7d8a1b12013-10-29 17:58:34 -0700158 def _get_pending_hqes(self):
159 query_string=('afe_jobs.priority DESC, '
160 'ifnull(nullif(host_id, NULL), host_id) DESC, '
161 'ifnull(nullif(meta_host, NULL), meta_host) DESC, '
162 'job_id')
163 return list(scheduler_models.HostQueueEntry.fetch(
164 joins='INNER JOIN afe_jobs ON (job_id=afe_jobs.id)',
165 where='NOT complete AND NOT active AND status="Queued"',
166 order_by=query_string))
167
168
showardb2e2c322008-10-14 17:33:55 +0000169class DispatcherSchedulingTest(BaseSchedulerTest):
showard56193bb2008-08-13 20:07:41 +0000170 _jobs_scheduled = []
171
showard89f84db2009-03-12 20:39:13 +0000172
173 def tearDown(self):
174 super(DispatcherSchedulingTest, self).tearDown()
175
176
showard56193bb2008-08-13 20:07:41 +0000177 def _set_monitor_stubs(self):
178 super(DispatcherSchedulingTest, self)._set_monitor_stubs()
showard89f84db2009-03-12 20:39:13 +0000179
showard8cc058f2009-09-08 16:26:33 +0000180 def hqe__do_schedule_pre_job_tasks_stub(queue_entry):
181 """Called by HostQueueEntry.run()."""
showard77182562009-06-10 00:16:05 +0000182 self._record_job_scheduled(queue_entry.job.id, queue_entry.host.id)
showard89f84db2009-03-12 20:39:13 +0000183 queue_entry.set_status('Starting')
showard89f84db2009-03-12 20:39:13 +0000184
jamesrenc44ae992010-02-19 00:12:54 +0000185 self.god.stub_with(scheduler_models.HostQueueEntry,
showard8cc058f2009-09-08 16:26:33 +0000186 '_do_schedule_pre_job_tasks',
187 hqe__do_schedule_pre_job_tasks_stub)
showard89f84db2009-03-12 20:39:13 +0000188
showard56193bb2008-08-13 20:07:41 +0000189
190 def _record_job_scheduled(self, job_id, host_id):
191 record = (job_id, host_id)
192 self.assert_(record not in self._jobs_scheduled,
193 'Job %d scheduled on host %d twice' %
194 (job_id, host_id))
195 self._jobs_scheduled.append(record)
196
197
198 def _assert_job_scheduled_on(self, job_id, host_id):
199 record = (job_id, host_id)
200 self.assert_(record in self._jobs_scheduled,
201 'Job %d not scheduled on host %d as expected\n'
202 'Jobs scheduled: %s' %
203 (job_id, host_id, self._jobs_scheduled))
204 self._jobs_scheduled.remove(record)
205
206
showard89f84db2009-03-12 20:39:13 +0000207 def _assert_job_scheduled_on_number_of(self, job_id, host_ids, number):
208 """Assert job was scheduled on exactly number hosts out of a set."""
209 found = []
210 for host_id in host_ids:
211 record = (job_id, host_id)
212 if record in self._jobs_scheduled:
213 found.append(record)
214 self._jobs_scheduled.remove(record)
215 if len(found) < number:
216 self.fail('Job %d scheduled on fewer than %d hosts in %s.\n'
217 'Jobs scheduled: %s' % (job_id, number, host_ids, found))
218 elif len(found) > number:
219 self.fail('Job %d scheduled on more than %d hosts in %s.\n'
220 'Jobs scheduled: %s' % (job_id, number, host_ids, found))
221
222
showard56193bb2008-08-13 20:07:41 +0000223 def _check_for_extra_schedulings(self):
224 if len(self._jobs_scheduled) != 0:
225 self.fail('Extra jobs scheduled: ' +
226 str(self._jobs_scheduled))
227
228
jadmanski0afbb632008-06-06 21:10:57 +0000229 def _convert_jobs_to_metahosts(self, *job_ids):
230 sql_tuple = '(' + ','.join(str(i) for i in job_ids) + ')'
showardeab66ce2009-12-23 00:03:56 +0000231 self._do_query('UPDATE afe_host_queue_entries SET '
jadmanski0afbb632008-06-06 21:10:57 +0000232 'meta_host=host_id, host_id=NULL '
233 'WHERE job_id IN ' + sql_tuple)
showardce38e0c2008-05-29 19:36:16 +0000234
235
jadmanski0afbb632008-06-06 21:10:57 +0000236 def _lock_host(self, host_id):
showardeab66ce2009-12-23 00:03:56 +0000237 self._do_query('UPDATE afe_hosts SET locked=1 WHERE id=' +
jadmanski0afbb632008-06-06 21:10:57 +0000238 str(host_id))
showardce38e0c2008-05-29 19:36:16 +0000239
240
jadmanski0afbb632008-06-06 21:10:57 +0000241 def setUp(self):
showard56193bb2008-08-13 20:07:41 +0000242 super(DispatcherSchedulingTest, self).setUp()
jadmanski0afbb632008-06-06 21:10:57 +0000243 self._jobs_scheduled = []
showardce38e0c2008-05-29 19:36:16 +0000244
245
jamesren883492a2010-02-12 00:45:18 +0000246 def _run_scheduler(self):
beepscc9fc702013-12-02 12:45:38 -0800247 self._dispatcher._host_scheduler.tick()
Paul Hobbsb92af21b2015-04-09 15:12:41 -0700248 for _ in xrange(2): # metahost scheduling can take two ticks
jamesren883492a2010-02-12 00:45:18 +0000249 self._dispatcher._schedule_new_jobs()
250
251
jadmanski0afbb632008-06-06 21:10:57 +0000252 def _test_basic_scheduling_helper(self, use_metahosts):
253 'Basic nonmetahost scheduling'
254 self._create_job_simple([1], use_metahosts)
255 self._create_job_simple([2], use_metahosts)
jamesren883492a2010-02-12 00:45:18 +0000256 self._run_scheduler()
jadmanski0afbb632008-06-06 21:10:57 +0000257 self._assert_job_scheduled_on(1, 1)
258 self._assert_job_scheduled_on(2, 2)
259 self._check_for_extra_schedulings()
showardce38e0c2008-05-29 19:36:16 +0000260
261
jadmanski0afbb632008-06-06 21:10:57 +0000262 def _test_priorities_helper(self, use_metahosts):
263 'Test prioritization ordering'
264 self._create_job_simple([1], use_metahosts)
265 self._create_job_simple([2], use_metahosts)
266 self._create_job_simple([1,2], use_metahosts)
267 self._create_job_simple([1], use_metahosts, priority=1)
jamesren883492a2010-02-12 00:45:18 +0000268 self._run_scheduler()
jadmanski0afbb632008-06-06 21:10:57 +0000269 self._assert_job_scheduled_on(4, 1) # higher priority
270 self._assert_job_scheduled_on(2, 2) # earlier job over later
271 self._check_for_extra_schedulings()
showardce38e0c2008-05-29 19:36:16 +0000272
273
jadmanski0afbb632008-06-06 21:10:57 +0000274 def _test_hosts_ready_helper(self, use_metahosts):
275 """
276 Only hosts that are status=Ready, unlocked and not invalid get
277 scheduled.
278 """
279 self._create_job_simple([1], use_metahosts)
showardeab66ce2009-12-23 00:03:56 +0000280 self._do_query('UPDATE afe_hosts SET status="Running" WHERE id=1')
jamesren883492a2010-02-12 00:45:18 +0000281 self._run_scheduler()
jadmanski0afbb632008-06-06 21:10:57 +0000282 self._check_for_extra_schedulings()
showardce38e0c2008-05-29 19:36:16 +0000283
showardeab66ce2009-12-23 00:03:56 +0000284 self._do_query('UPDATE afe_hosts SET status="Ready", locked=1 '
jadmanski0afbb632008-06-06 21:10:57 +0000285 'WHERE id=1')
jamesren883492a2010-02-12 00:45:18 +0000286 self._run_scheduler()
jadmanski0afbb632008-06-06 21:10:57 +0000287 self._check_for_extra_schedulings()
showardce38e0c2008-05-29 19:36:16 +0000288
showardeab66ce2009-12-23 00:03:56 +0000289 self._do_query('UPDATE afe_hosts SET locked=0, invalid=1 '
jadmanski0afbb632008-06-06 21:10:57 +0000290 'WHERE id=1')
jamesren883492a2010-02-12 00:45:18 +0000291 self._run_scheduler()
showard5df2b192008-07-03 19:51:57 +0000292 if not use_metahosts:
293 self._assert_job_scheduled_on(1, 1)
jadmanski0afbb632008-06-06 21:10:57 +0000294 self._check_for_extra_schedulings()
showardce38e0c2008-05-29 19:36:16 +0000295
296
jadmanski0afbb632008-06-06 21:10:57 +0000297 def _test_hosts_idle_helper(self, use_metahosts):
298 'Only idle hosts get scheduled'
showard2bab8f42008-11-12 18:15:22 +0000299 self._create_job(hosts=[1], active=True)
jadmanski0afbb632008-06-06 21:10:57 +0000300 self._create_job_simple([1], use_metahosts)
jamesren883492a2010-02-12 00:45:18 +0000301 self._run_scheduler()
jadmanski0afbb632008-06-06 21:10:57 +0000302 self._check_for_extra_schedulings()
showardce38e0c2008-05-29 19:36:16 +0000303
304
showard63a34772008-08-18 19:32:50 +0000305 def _test_obey_ACLs_helper(self, use_metahosts):
showardeab66ce2009-12-23 00:03:56 +0000306 self._do_query('DELETE FROM afe_acl_groups_hosts WHERE host_id=1')
showard63a34772008-08-18 19:32:50 +0000307 self._create_job_simple([1], use_metahosts)
jamesren883492a2010-02-12 00:45:18 +0000308 self._run_scheduler()
showard63a34772008-08-18 19:32:50 +0000309 self._check_for_extra_schedulings()
310
311
jadmanski0afbb632008-06-06 21:10:57 +0000312 def test_basic_scheduling(self):
313 self._test_basic_scheduling_helper(False)
showardce38e0c2008-05-29 19:36:16 +0000314
315
jadmanski0afbb632008-06-06 21:10:57 +0000316 def test_priorities(self):
317 self._test_priorities_helper(False)
showardce38e0c2008-05-29 19:36:16 +0000318
319
jadmanski0afbb632008-06-06 21:10:57 +0000320 def test_hosts_ready(self):
321 self._test_hosts_ready_helper(False)
showardce38e0c2008-05-29 19:36:16 +0000322
323
jadmanski0afbb632008-06-06 21:10:57 +0000324 def test_hosts_idle(self):
325 self._test_hosts_idle_helper(False)
showardce38e0c2008-05-29 19:36:16 +0000326
327
showard63a34772008-08-18 19:32:50 +0000328 def test_obey_ACLs(self):
329 self._test_obey_ACLs_helper(False)
330
331
showard2924b0a2009-06-18 23:16:15 +0000332 def test_one_time_hosts_ignore_ACLs(self):
showardeab66ce2009-12-23 00:03:56 +0000333 self._do_query('DELETE FROM afe_acl_groups_hosts WHERE host_id=1')
334 self._do_query('UPDATE afe_hosts SET invalid=1 WHERE id=1')
showard2924b0a2009-06-18 23:16:15 +0000335 self._create_job_simple([1])
jamesren883492a2010-02-12 00:45:18 +0000336 self._run_scheduler()
showard2924b0a2009-06-18 23:16:15 +0000337 self._assert_job_scheduled_on(1, 1)
338 self._check_for_extra_schedulings()
339
340
showard63a34772008-08-18 19:32:50 +0000341 def test_non_metahost_on_invalid_host(self):
342 """
343 Non-metahost entries can get scheduled on invalid hosts (this is how
344 one-time hosts work).
345 """
showardeab66ce2009-12-23 00:03:56 +0000346 self._do_query('UPDATE afe_hosts SET invalid=1')
showard63a34772008-08-18 19:32:50 +0000347 self._test_basic_scheduling_helper(False)
348
349
jadmanski0afbb632008-06-06 21:10:57 +0000350 def test_metahost_scheduling(self):
showard63a34772008-08-18 19:32:50 +0000351 """
352 Basic metahost scheduling
353 """
jadmanski0afbb632008-06-06 21:10:57 +0000354 self._test_basic_scheduling_helper(True)
showardce38e0c2008-05-29 19:36:16 +0000355
356
jadmanski0afbb632008-06-06 21:10:57 +0000357 def test_metahost_priorities(self):
358 self._test_priorities_helper(True)
showardce38e0c2008-05-29 19:36:16 +0000359
360
jadmanski0afbb632008-06-06 21:10:57 +0000361 def test_metahost_hosts_ready(self):
362 self._test_hosts_ready_helper(True)
showardce38e0c2008-05-29 19:36:16 +0000363
364
jadmanski0afbb632008-06-06 21:10:57 +0000365 def test_metahost_hosts_idle(self):
366 self._test_hosts_idle_helper(True)
showardce38e0c2008-05-29 19:36:16 +0000367
368
showard63a34772008-08-18 19:32:50 +0000369 def test_metahost_obey_ACLs(self):
370 self._test_obey_ACLs_helper(True)
371
372
jadmanski0afbb632008-06-06 21:10:57 +0000373 def test_nonmetahost_over_metahost(self):
374 """
375 Non-metahost entries should take priority over metahost entries
376 for the same host
377 """
378 self._create_job(metahosts=[1])
379 self._create_job(hosts=[1])
jamesren883492a2010-02-12 00:45:18 +0000380 self._run_scheduler()
jadmanski0afbb632008-06-06 21:10:57 +0000381 self._assert_job_scheduled_on(2, 1)
382 self._check_for_extra_schedulings()
showardce38e0c2008-05-29 19:36:16 +0000383
384
Aviv Keshet1f23b692013-05-14 11:13:55 -0700385# TODO: Revive this test.
386# def test_HostScheduler_get_host_atomic_group_id(self):
387# job = self._create_job(metahosts=[self.label6.id])
388# queue_entry = scheduler_models.HostQueueEntry.fetch(
389# where='job_id=%d' % job.id)[0]
390# # Indirectly initialize the internal state of the host scheduler.
391# self._dispatcher._refresh_pending_queue_entries()
392#
393# # Test the host scheduler
394# host_scheduler = self._dispatcher._host_scheduler
395#
396#
397# # Two labels each in a different atomic group. This should log an
398# # error and continue.
399# orig_logging_error = logging.error
400# def mock_logging_error(message, *args):
401# mock_logging_error._num_calls += 1
402# # Test the logging call itself, we just wrapped it to count it.
403# orig_logging_error(message, *args)
404# mock_logging_error._num_calls = 0
405# self.god.stub_with(logging, 'error', mock_logging_error)
406# host_scheduler.refresh([])
407# self.assertNotEquals(None, host_scheduler._get_host_atomic_group_id(
408# [self.label4.id, self.label8.id], queue_entry))
409# self.assertTrue(mock_logging_error._num_calls > 0)
410# self.god.unstub(logging, 'error')
beeps7d8a1b12013-10-29 17:58:34 -0700411#
Aviv Keshet1f23b692013-05-14 11:13:55 -0700412# # Two labels both in the same atomic group, this should not raise an
413# # error, it will merely cause the job to schedule on the intersection.
414# self.assertEquals(1, host_scheduler._get_host_atomic_group_id(
415# [self.label4.id, self.label5.id]))
416#
417# self.assertEquals(None, host_scheduler._get_host_atomic_group_id([]))
418# self.assertEquals(None, host_scheduler._get_host_atomic_group_id(
419# [self.label3.id, self.label7.id, self.label6.id]))
420# self.assertEquals(1, host_scheduler._get_host_atomic_group_id(
421# [self.label4.id, self.label7.id, self.label6.id]))
422# self.assertEquals(1, host_scheduler._get_host_atomic_group_id(
423# [self.label7.id, self.label5.id]))
showard89f84db2009-03-12 20:39:13 +0000424
Jakob Juelichd615a1e2014-09-04 11:48:36 -0700425
426 def test_no_execution_subdir_not_found(self):
427 """Reproduce bug crosbug.com/334353 and recover from it."""
428
Prathmesh Prabhu47bd1dd2017-01-06 15:04:46 -0800429 self.mock_config.set_config_value('SCHEDULER', 'drones', 'localhost')
Jakob Juelichd615a1e2014-09-04 11:48:36 -0700430
431 job = self._create_job(hostless=True)
432
433 # Ensure execution_subdir is set before status
434 original_set_status = scheduler_models.HostQueueEntry.set_status
435 def fake_set_status(hqe, *args, **kwargs):
436 self.assertEqual(hqe.execution_subdir, 'hostless')
437 original_set_status(hqe, *args, **kwargs)
438
439 self.god.stub_with(scheduler_models.HostQueueEntry, 'set_status',
440 fake_set_status)
441
442 self._dispatcher._schedule_new_jobs()
443
444 hqe = job.hostqueueentry_set.all()[0]
445 self.assertEqual(models.HostQueueEntry.Status.STARTING, hqe.status)
446 self.assertEqual('hostless', hqe.execution_subdir)
447
448
showard56193bb2008-08-13 20:07:41 +0000449 def test_only_schedule_queued_entries(self):
450 self._create_job(metahosts=[1])
451 self._update_hqe(set='active=1, host_id=2')
jamesren883492a2010-02-12 00:45:18 +0000452 self._run_scheduler()
showard56193bb2008-08-13 20:07:41 +0000453 self._check_for_extra_schedulings()
454
455
showardfa8629c2008-11-04 16:51:23 +0000456 def test_no_ready_hosts(self):
457 self._create_job(hosts=[1])
showardeab66ce2009-12-23 00:03:56 +0000458 self._do_query('UPDATE afe_hosts SET status="Repair Failed"')
jamesren883492a2010-02-12 00:45:18 +0000459 self._run_scheduler()
showardfa8629c2008-11-04 16:51:23 +0000460 self._check_for_extra_schedulings()
461
462
showardf13a9e22009-12-18 22:54:09 +0000463 def test_garbage_collection(self):
464 self.god.stub_with(self._dispatcher, '_seconds_between_garbage_stats',
465 999999)
466 self.god.stub_function(gc, 'collect')
467 self.god.stub_function(gc_stats, '_log_garbage_collector_stats')
468 gc.collect.expect_call().and_return(0)
469 gc_stats._log_garbage_collector_stats.expect_call()
470 # Force a garbage collection run
471 self._dispatcher._last_garbage_stats_time = 0
472 self._dispatcher._garbage_collection()
473 # The previous call should have reset the time, it won't do anything
474 # the second time. If it does, we'll get an unexpected call.
475 self._dispatcher._garbage_collection()
476
477
showardb2e2c322008-10-14 17:33:55 +0000478class DispatcherThrottlingTest(BaseSchedulerTest):
showard4c5374f2008-09-04 17:02:56 +0000479 """
480 Test that the dispatcher throttles:
481 * total number of running processes
482 * number of processes started per cycle
483 """
484 _MAX_RUNNING = 3
485 _MAX_STARTED = 2
486
487 def setUp(self):
488 super(DispatcherThrottlingTest, self).setUp()
showard324bf812009-01-20 23:23:38 +0000489 scheduler_config.config.max_processes_per_drone = self._MAX_RUNNING
showard4c5374f2008-09-04 17:02:56 +0000490
jamesren76fcf192010-04-21 20:39:50 +0000491 def fake_max_runnable_processes(fake_self, username,
492 drone_hostnames_allowed):
showardd1195652009-12-08 22:21:02 +0000493 running = sum(agent.task.num_processes
showard324bf812009-01-20 23:23:38 +0000494 for agent in self._agents
showard8cc058f2009-09-08 16:26:33 +0000495 if agent.started and not agent.is_done())
showard324bf812009-01-20 23:23:38 +0000496 return self._MAX_RUNNING - running
497 self.god.stub_with(drone_manager.DroneManager, 'max_runnable_processes',
498 fake_max_runnable_processes)
showard2fa51692009-01-13 23:48:08 +0000499
showard4c5374f2008-09-04 17:02:56 +0000500
showard4c5374f2008-09-04 17:02:56 +0000501 def _setup_some_agents(self, num_agents):
showard170873e2009-01-07 00:22:26 +0000502 self._agents = [DummyAgent() for i in xrange(num_agents)]
showard4c5374f2008-09-04 17:02:56 +0000503 self._dispatcher._agents = list(self._agents)
504
505
Paul Hobbsb92af21b2015-04-09 15:12:41 -0700506 def _run_a_few_ticks(self):
showard4c5374f2008-09-04 17:02:56 +0000507 for i in xrange(4):
508 self._dispatcher._handle_agents()
509
510
511 def _assert_agents_started(self, indexes, is_started=True):
512 for i in indexes:
showard8cc058f2009-09-08 16:26:33 +0000513 self.assert_(self._agents[i].started == is_started,
showard4c5374f2008-09-04 17:02:56 +0000514 'Agent %d %sstarted' %
515 (i, is_started and 'not ' or ''))
516
517
518 def _assert_agents_not_started(self, indexes):
519 self._assert_agents_started(indexes, False)
520
521
522 def test_throttle_total(self):
523 self._setup_some_agents(4)
Paul Hobbsb92af21b2015-04-09 15:12:41 -0700524 self._run_a_few_ticks()
showard4c5374f2008-09-04 17:02:56 +0000525 self._assert_agents_started([0, 1, 2])
526 self._assert_agents_not_started([3])
527
528
showard4c5374f2008-09-04 17:02:56 +0000529 def test_throttle_with_synchronous(self):
530 self._setup_some_agents(2)
showardd1195652009-12-08 22:21:02 +0000531 self._agents[0].task.num_processes = 3
Paul Hobbsb92af21b2015-04-09 15:12:41 -0700532 self._run_a_few_ticks()
showard4c5374f2008-09-04 17:02:56 +0000533 self._assert_agents_started([0])
534 self._assert_agents_not_started([1])
535
536
537 def test_large_agent_starvation(self):
538 """
539 Ensure large agents don't get starved by lower-priority agents.
540 """
541 self._setup_some_agents(3)
showardd1195652009-12-08 22:21:02 +0000542 self._agents[1].task.num_processes = 3
Paul Hobbsb92af21b2015-04-09 15:12:41 -0700543 self._run_a_few_ticks()
showard4c5374f2008-09-04 17:02:56 +0000544 self._assert_agents_started([0])
545 self._assert_agents_not_started([1, 2])
546
547 self._agents[0].set_done(True)
Paul Hobbsb92af21b2015-04-09 15:12:41 -0700548 self._run_a_few_ticks()
showard4c5374f2008-09-04 17:02:56 +0000549 self._assert_agents_started([1])
550 self._assert_agents_not_started([2])
551
552
553 def test_zero_process_agent(self):
554 self._setup_some_agents(5)
showardd1195652009-12-08 22:21:02 +0000555 self._agents[4].task.num_processes = 0
Paul Hobbsb92af21b2015-04-09 15:12:41 -0700556 self._run_a_few_ticks()
showard4c5374f2008-09-04 17:02:56 +0000557 self._assert_agents_started([0, 1, 2, 4])
558 self._assert_agents_not_started([3])
559
560
jadmanski3d161b02008-06-06 15:43:36 +0000561class PidfileRunMonitorTest(unittest.TestCase):
showard170873e2009-01-07 00:22:26 +0000562 execution_tag = 'test_tag'
jadmanski0afbb632008-06-06 21:10:57 +0000563 pid = 12345
showard170873e2009-01-07 00:22:26 +0000564 process = drone_manager.Process('myhost', pid)
showard21baa452008-10-21 00:08:39 +0000565 num_tests_failed = 1
jadmanski3d161b02008-06-06 15:43:36 +0000566
jadmanski0afbb632008-06-06 21:10:57 +0000567 def setUp(self):
568 self.god = mock.mock_god()
showard170873e2009-01-07 00:22:26 +0000569 self.mock_drone_manager = self.god.create_mock_class(
570 drone_manager.DroneManager, 'drone_manager')
Jakob Jülich36accc62014-07-23 10:26:55 -0700571 self.god.stub_with(drone_manager, '_the_instance',
showard170873e2009-01-07 00:22:26 +0000572 self.mock_drone_manager)
beeps5e2bb4a2013-10-28 11:26:45 -0700573 self.god.stub_with(pidfile_monitor, '_get_pidfile_timeout_secs',
showardec6a3b92009-09-25 20:29:13 +0000574 self._mock_get_pidfile_timeout_secs)
showard170873e2009-01-07 00:22:26 +0000575
576 self.pidfile_id = object()
577
showardd3dc1992009-04-22 21:01:40 +0000578 (self.mock_drone_manager.get_pidfile_id_from
579 .expect_call(self.execution_tag,
jamesrenc44ae992010-02-19 00:12:54 +0000580 pidfile_name=drone_manager.AUTOSERV_PID_FILE)
showardd3dc1992009-04-22 21:01:40 +0000581 .and_return(self.pidfile_id))
showard170873e2009-01-07 00:22:26 +0000582
beeps5e2bb4a2013-10-28 11:26:45 -0700583 self.monitor = pidfile_monitor.PidfileRunMonitor()
showard170873e2009-01-07 00:22:26 +0000584 self.monitor.attach_to_existing_process(self.execution_tag)
jadmanski3d161b02008-06-06 15:43:36 +0000585
jadmanski0afbb632008-06-06 21:10:57 +0000586 def tearDown(self):
587 self.god.unstub_all()
jadmanski3d161b02008-06-06 15:43:36 +0000588
589
showardec6a3b92009-09-25 20:29:13 +0000590 def _mock_get_pidfile_timeout_secs(self):
591 return 300
592
593
showard170873e2009-01-07 00:22:26 +0000594 def setup_pidfile(self, pid=None, exit_code=None, tests_failed=None,
595 use_second_read=False):
596 contents = drone_manager.PidfileContents()
597 if pid is not None:
598 contents.process = drone_manager.Process('myhost', pid)
599 contents.exit_status = exit_code
600 contents.num_tests_failed = tests_failed
601 self.mock_drone_manager.get_pidfile_contents.expect_call(
602 self.pidfile_id, use_second_read=use_second_read).and_return(
603 contents)
604
605
jadmanski0afbb632008-06-06 21:10:57 +0000606 def set_not_yet_run(self):
showard170873e2009-01-07 00:22:26 +0000607 self.setup_pidfile()
jadmanski3d161b02008-06-06 15:43:36 +0000608
609
showard3dd6b882008-10-27 19:21:39 +0000610 def set_empty_pidfile(self):
showard170873e2009-01-07 00:22:26 +0000611 self.setup_pidfile()
showard3dd6b882008-10-27 19:21:39 +0000612
613
showard170873e2009-01-07 00:22:26 +0000614 def set_running(self, use_second_read=False):
615 self.setup_pidfile(self.pid, use_second_read=use_second_read)
jadmanski3d161b02008-06-06 15:43:36 +0000616
617
showard170873e2009-01-07 00:22:26 +0000618 def set_complete(self, error_code, use_second_read=False):
619 self.setup_pidfile(self.pid, error_code, self.num_tests_failed,
620 use_second_read=use_second_read)
621
622
623 def _check_monitor(self, expected_pid, expected_exit_status,
624 expected_num_tests_failed):
625 if expected_pid is None:
626 self.assertEquals(self.monitor._state.process, None)
627 else:
628 self.assertEquals(self.monitor._state.process.pid, expected_pid)
629 self.assertEquals(self.monitor._state.exit_status, expected_exit_status)
630 self.assertEquals(self.monitor._state.num_tests_failed,
631 expected_num_tests_failed)
632
633
634 self.god.check_playback()
jadmanski3d161b02008-06-06 15:43:36 +0000635
636
showard21baa452008-10-21 00:08:39 +0000637 def _test_read_pidfile_helper(self, expected_pid, expected_exit_status,
638 expected_num_tests_failed):
639 self.monitor._read_pidfile()
showard170873e2009-01-07 00:22:26 +0000640 self._check_monitor(expected_pid, expected_exit_status,
641 expected_num_tests_failed)
jadmanski3d161b02008-06-06 15:43:36 +0000642
643
showard21baa452008-10-21 00:08:39 +0000644 def _get_expected_tests_failed(self, expected_exit_status):
645 if expected_exit_status is None:
646 expected_tests_failed = None
647 else:
648 expected_tests_failed = self.num_tests_failed
649 return expected_tests_failed
650
651
jadmanski0afbb632008-06-06 21:10:57 +0000652 def test_read_pidfile(self):
653 self.set_not_yet_run()
showard21baa452008-10-21 00:08:39 +0000654 self._test_read_pidfile_helper(None, None, None)
jadmanski3d161b02008-06-06 15:43:36 +0000655
showard3dd6b882008-10-27 19:21:39 +0000656 self.set_empty_pidfile()
657 self._test_read_pidfile_helper(None, None, None)
658
jadmanski0afbb632008-06-06 21:10:57 +0000659 self.set_running()
showard21baa452008-10-21 00:08:39 +0000660 self._test_read_pidfile_helper(self.pid, None, None)
jadmanski3d161b02008-06-06 15:43:36 +0000661
jadmanski0afbb632008-06-06 21:10:57 +0000662 self.set_complete(123)
showard21baa452008-10-21 00:08:39 +0000663 self._test_read_pidfile_helper(self.pid, 123, self.num_tests_failed)
jadmanski3d161b02008-06-06 15:43:36 +0000664
665
jadmanski0afbb632008-06-06 21:10:57 +0000666 def test_read_pidfile_error(self):
showard170873e2009-01-07 00:22:26 +0000667 self.mock_drone_manager.get_pidfile_contents.expect_call(
668 self.pidfile_id, use_second_read=False).and_return(
669 drone_manager.InvalidPidfile('error'))
beeps5e2bb4a2013-10-28 11:26:45 -0700670 self.assertRaises(pidfile_monitor.PidfileRunMonitor._PidfileException,
showard21baa452008-10-21 00:08:39 +0000671 self.monitor._read_pidfile)
jadmanski0afbb632008-06-06 21:10:57 +0000672 self.god.check_playback()
jadmanski3d161b02008-06-06 15:43:36 +0000673
674
showard170873e2009-01-07 00:22:26 +0000675 def setup_is_running(self, is_running):
676 self.mock_drone_manager.is_process_running.expect_call(
677 self.process).and_return(is_running)
jadmanski3d161b02008-06-06 15:43:36 +0000678
679
showard21baa452008-10-21 00:08:39 +0000680 def _test_get_pidfile_info_helper(self, expected_pid, expected_exit_status,
681 expected_num_tests_failed):
682 self.monitor._get_pidfile_info()
showard170873e2009-01-07 00:22:26 +0000683 self._check_monitor(expected_pid, expected_exit_status,
684 expected_num_tests_failed)
jadmanski3d161b02008-06-06 15:43:36 +0000685
686
jadmanski0afbb632008-06-06 21:10:57 +0000687 def test_get_pidfile_info(self):
showard21baa452008-10-21 00:08:39 +0000688 """
689 normal cases for get_pidfile_info
690 """
jadmanski0afbb632008-06-06 21:10:57 +0000691 # running
692 self.set_running()
showard170873e2009-01-07 00:22:26 +0000693 self.setup_is_running(True)
showard21baa452008-10-21 00:08:39 +0000694 self._test_get_pidfile_info_helper(self.pid, None, None)
jadmanski3d161b02008-06-06 15:43:36 +0000695
jadmanski0afbb632008-06-06 21:10:57 +0000696 # exited during check
697 self.set_running()
showard170873e2009-01-07 00:22:26 +0000698 self.setup_is_running(False)
699 self.set_complete(123, use_second_read=True) # pidfile gets read again
showard21baa452008-10-21 00:08:39 +0000700 self._test_get_pidfile_info_helper(self.pid, 123, self.num_tests_failed)
jadmanski3d161b02008-06-06 15:43:36 +0000701
jadmanski0afbb632008-06-06 21:10:57 +0000702 # completed
703 self.set_complete(123)
showard21baa452008-10-21 00:08:39 +0000704 self._test_get_pidfile_info_helper(self.pid, 123, self.num_tests_failed)
jadmanski3d161b02008-06-06 15:43:36 +0000705
706
jadmanski0afbb632008-06-06 21:10:57 +0000707 def test_get_pidfile_info_running_no_proc(self):
showard21baa452008-10-21 00:08:39 +0000708 """
709 pidfile shows process running, but no proc exists
710 """
jadmanski0afbb632008-06-06 21:10:57 +0000711 # running but no proc
712 self.set_running()
showard170873e2009-01-07 00:22:26 +0000713 self.setup_is_running(False)
714 self.set_running(use_second_read=True)
showard21baa452008-10-21 00:08:39 +0000715 self._test_get_pidfile_info_helper(self.pid, 1, 0)
jadmanski0afbb632008-06-06 21:10:57 +0000716 self.assertTrue(self.monitor.lost_process)
jadmanski3d161b02008-06-06 15:43:36 +0000717
718
jadmanski0afbb632008-06-06 21:10:57 +0000719 def test_get_pidfile_info_not_yet_run(self):
showard21baa452008-10-21 00:08:39 +0000720 """
721 pidfile hasn't been written yet
722 """
jadmanski0afbb632008-06-06 21:10:57 +0000723 self.set_not_yet_run()
showard21baa452008-10-21 00:08:39 +0000724 self._test_get_pidfile_info_helper(None, None, None)
jadmanski3d161b02008-06-06 15:43:36 +0000725
jadmanski3d161b02008-06-06 15:43:36 +0000726
showard170873e2009-01-07 00:22:26 +0000727 def test_process_failed_to_write_pidfile(self):
jadmanski0afbb632008-06-06 21:10:57 +0000728 self.set_not_yet_run()
showardec6a3b92009-09-25 20:29:13 +0000729 self.monitor._start_time = (time.time() -
beeps5e2bb4a2013-10-28 11:26:45 -0700730 pidfile_monitor._get_pidfile_timeout_secs() - 1)
showard35162b02009-03-03 02:17:30 +0000731 self._test_get_pidfile_info_helper(None, 1, 0)
732 self.assertTrue(self.monitor.lost_process)
jadmanski3d161b02008-06-06 15:43:36 +0000733
734
735class AgentTest(unittest.TestCase):
jadmanski0afbb632008-06-06 21:10:57 +0000736 def setUp(self):
737 self.god = mock.mock_god()
showard6b733412009-04-27 20:09:18 +0000738 self._dispatcher = self.god.create_mock_class(monitor_db.Dispatcher,
739 'dispatcher')
jadmanski3d161b02008-06-06 15:43:36 +0000740
741
jadmanski0afbb632008-06-06 21:10:57 +0000742 def tearDown(self):
743 self.god.unstub_all()
jadmanski3d161b02008-06-06 15:43:36 +0000744
745
showard170873e2009-01-07 00:22:26 +0000746 def _create_mock_task(self, name):
beeps5e2bb4a2013-10-28 11:26:45 -0700747 task = self.god.create_mock_class(agent_task.AgentTask, name)
showard418785b2009-11-23 20:19:59 +0000748 task.num_processes = 1
showard6b733412009-04-27 20:09:18 +0000749 _set_host_and_qe_ids(task)
showard170873e2009-01-07 00:22:26 +0000750 return task
751
showard8cc058f2009-09-08 16:26:33 +0000752 def _create_agent(self, task):
753 agent = monitor_db.Agent(task)
showard6b733412009-04-27 20:09:18 +0000754 agent.dispatcher = self._dispatcher
755 return agent
756
757
758 def _finish_agent(self, agent):
759 while not agent.is_done():
760 agent.tick()
761
showard170873e2009-01-07 00:22:26 +0000762
showard8cc058f2009-09-08 16:26:33 +0000763 def test_agent_abort(self):
764 task = self._create_mock_task('task')
765 task.poll.expect_call()
766 task.is_done.expect_call().and_return(False)
767 task.abort.expect_call()
768 task.aborted = True
jadmanski3d161b02008-06-06 15:43:36 +0000769
showard8cc058f2009-09-08 16:26:33 +0000770 agent = self._create_agent(task)
showard6b733412009-04-27 20:09:18 +0000771 agent.tick()
772 agent.abort()
773 self._finish_agent(agent)
774 self.god.check_playback()
775
776
showard08a36412009-05-05 01:01:13 +0000777 def _test_agent_abort_before_started_helper(self, ignore_abort=False):
showard20f9bdd2009-04-29 19:48:33 +0000778 task = self._create_mock_task('task')
showard08a36412009-05-05 01:01:13 +0000779 task.abort.expect_call()
780 if ignore_abort:
781 task.aborted = False
782 task.poll.expect_call()
783 task.is_done.expect_call().and_return(True)
showard08a36412009-05-05 01:01:13 +0000784 task.success = True
785 else:
786 task.aborted = True
787
showard8cc058f2009-09-08 16:26:33 +0000788 agent = self._create_agent(task)
showard20f9bdd2009-04-29 19:48:33 +0000789 agent.abort()
showard20f9bdd2009-04-29 19:48:33 +0000790 self._finish_agent(agent)
791 self.god.check_playback()
792
793
showard08a36412009-05-05 01:01:13 +0000794 def test_agent_abort_before_started(self):
795 self._test_agent_abort_before_started_helper()
796 self._test_agent_abort_before_started_helper(True)
797
798
jamesrenc44ae992010-02-19 00:12:54 +0000799class JobSchedulingTest(BaseSchedulerTest):
showarde58e3f82008-11-20 19:04:59 +0000800 def _test_run_helper(self, expect_agent=True, expect_starting=False,
801 expect_pending=False):
802 if expect_starting:
803 expected_status = models.HostQueueEntry.Status.STARTING
804 elif expect_pending:
805 expected_status = models.HostQueueEntry.Status.PENDING
806 else:
807 expected_status = models.HostQueueEntry.Status.VERIFYING
jamesrenc44ae992010-02-19 00:12:54 +0000808 job = scheduler_models.Job.fetch('id = 1')[0]
809 queue_entry = scheduler_models.HostQueueEntry.fetch('id = 1')[0]
showard77182562009-06-10 00:16:05 +0000810 assert queue_entry.job is job
showard8cc058f2009-09-08 16:26:33 +0000811 job.run_if_ready(queue_entry)
showardb2e2c322008-10-14 17:33:55 +0000812
showard2bab8f42008-11-12 18:15:22 +0000813 self.god.check_playback()
showard8cc058f2009-09-08 16:26:33 +0000814
815 self._dispatcher._schedule_delay_tasks()
816 self._dispatcher._schedule_running_host_queue_entries()
817 agent = self._dispatcher._agents[0]
818
showard77182562009-06-10 00:16:05 +0000819 actual_status = models.HostQueueEntry.smart_get(1).status
820 self.assertEquals(expected_status, actual_status)
showard2bab8f42008-11-12 18:15:22 +0000821
showard9976ce92008-10-15 20:28:13 +0000822 if not expect_agent:
823 self.assertEquals(agent, None)
824 return
825
showardb2e2c322008-10-14 17:33:55 +0000826 self.assert_(isinstance(agent, monitor_db.Agent))
showard8cc058f2009-09-08 16:26:33 +0000827 self.assert_(agent.task)
828 return agent.task
showardc9ae1782009-01-30 01:42:37 +0000829
830
showard77182562009-06-10 00:16:05 +0000831 def test_run_if_ready_delays(self):
832 # Also tests Job.run_with_ready_delay() on atomic group jobs.
833 django_job = self._create_job(hosts=[5, 6], atomic_group=1)
jamesrenc44ae992010-02-19 00:12:54 +0000834 job = scheduler_models.Job(django_job.id)
showard77182562009-06-10 00:16:05 +0000835 self.assertEqual(1, job.synch_count)
836 django_hqes = list(models.HostQueueEntry.objects.filter(job=job.id))
837 self.assertEqual(2, len(django_hqes))
838 self.assertEqual(2, django_hqes[0].atomic_group.max_number_of_machines)
839
840 def set_hqe_status(django_hqe, status):
841 django_hqe.status = status
842 django_hqe.save()
jamesrenc44ae992010-02-19 00:12:54 +0000843 scheduler_models.HostQueueEntry(django_hqe.id).host.set_status(status)
showard77182562009-06-10 00:16:05 +0000844
845 # An initial state, our synch_count is 1
846 set_hqe_status(django_hqes[0], models.HostQueueEntry.Status.VERIFYING)
847 set_hqe_status(django_hqes[1], models.HostQueueEntry.Status.PENDING)
848
849 # So that we don't depend on the config file value during the test.
850 self.assert_(scheduler_config.config
851 .secs_to_wait_for_atomic_group_hosts is not None)
852 self.god.stub_with(scheduler_config.config,
853 'secs_to_wait_for_atomic_group_hosts', 123456)
854
jamesrenc44ae992010-02-19 00:12:54 +0000855 # Get the pending one as a scheduler_models.HostQueueEntry object.
856 hqe = scheduler_models.HostQueueEntry(django_hqes[1].id)
showard77182562009-06-10 00:16:05 +0000857 self.assert_(not job._delay_ready_task)
858 self.assertTrue(job.is_ready())
859
860 # Ready with one pending, one verifying and an atomic group should
861 # result in a DelayCallTask to re-check if we're ready a while later.
showard8cc058f2009-09-08 16:26:33 +0000862 job.run_if_ready(hqe)
863 self.assertEquals('Waiting', hqe.status)
864 self._dispatcher._schedule_delay_tasks()
865 self.assertEquals('Pending', hqe.status)
866 agent = self._dispatcher._agents[0]
showard77182562009-06-10 00:16:05 +0000867 self.assert_(job._delay_ready_task)
868 self.assert_(isinstance(agent, monitor_db.Agent))
showard8cc058f2009-09-08 16:26:33 +0000869 self.assert_(agent.task)
870 delay_task = agent.task
jamesrenc44ae992010-02-19 00:12:54 +0000871 self.assert_(isinstance(delay_task, scheduler_models.DelayedCallTask))
showard77182562009-06-10 00:16:05 +0000872 self.assert_(not delay_task.is_done())
873
showard8cc058f2009-09-08 16:26:33 +0000874 self.god.stub_function(delay_task, 'abort')
875
showard77182562009-06-10 00:16:05 +0000876 self.god.stub_function(job, 'run')
877
showardd2014822009-10-12 20:26:58 +0000878 self.god.stub_function(job, '_pending_count')
showardd07a5f32009-12-07 19:36:20 +0000879 self.god.stub_with(job, 'synch_count', 9)
880 self.god.stub_function(job, 'request_abort')
showardd2014822009-10-12 20:26:58 +0000881
showard77182562009-06-10 00:16:05 +0000882 # Test that the DelayedCallTask's callback queued up above does the
showardd2014822009-10-12 20:26:58 +0000883 # correct thing and does not call run if there are not enough hosts
884 # in pending after the delay.
showardd2014822009-10-12 20:26:58 +0000885 job._pending_count.expect_call().and_return(0)
showardd07a5f32009-12-07 19:36:20 +0000886 job.request_abort.expect_call()
showardd2014822009-10-12 20:26:58 +0000887 delay_task._callback()
888 self.god.check_playback()
889
890 # Test that the DelayedCallTask's callback queued up above does the
891 # correct thing and returns the Agent returned by job.run() if
892 # there are still enough hosts pending after the delay.
showardd07a5f32009-12-07 19:36:20 +0000893 job.synch_count = 4
showardd2014822009-10-12 20:26:58 +0000894 job._pending_count.expect_call().and_return(4)
showard8cc058f2009-09-08 16:26:33 +0000895 job.run.expect_call(hqe)
896 delay_task._callback()
897 self.god.check_playback()
showard77182562009-06-10 00:16:05 +0000898
showardd2014822009-10-12 20:26:58 +0000899 job._pending_count.expect_call().and_return(4)
900
showard77182562009-06-10 00:16:05 +0000901 # Adjust the delay deadline so that enough time has passed.
902 job._delay_ready_task.end_time = time.time() - 111111
showard8cc058f2009-09-08 16:26:33 +0000903 job.run.expect_call(hqe)
showard77182562009-06-10 00:16:05 +0000904 # ...the delay_expired condition should cause us to call run()
showard8cc058f2009-09-08 16:26:33 +0000905 self._dispatcher._handle_agents()
906 self.god.check_playback()
907 delay_task.success = False
showard77182562009-06-10 00:16:05 +0000908
909 # Adjust the delay deadline back so that enough time has not passed.
910 job._delay_ready_task.end_time = time.time() + 111111
showard8cc058f2009-09-08 16:26:33 +0000911 self._dispatcher._handle_agents()
912 self.god.check_playback()
showard77182562009-06-10 00:16:05 +0000913
showard77182562009-06-10 00:16:05 +0000914 # Now max_number_of_machines HQEs are in pending state. Remaining
915 # delay will now be ignored.
jamesrenc44ae992010-02-19 00:12:54 +0000916 other_hqe = scheduler_models.HostQueueEntry(django_hqes[0].id)
showard8cc058f2009-09-08 16:26:33 +0000917 self.god.unstub(job, 'run')
showardd2014822009-10-12 20:26:58 +0000918 self.god.unstub(job, '_pending_count')
showardd07a5f32009-12-07 19:36:20 +0000919 self.god.unstub(job, 'synch_count')
920 self.god.unstub(job, 'request_abort')
showard77182562009-06-10 00:16:05 +0000921 # ...the over_max_threshold test should cause us to call run()
showard8cc058f2009-09-08 16:26:33 +0000922 delay_task.abort.expect_call()
923 other_hqe.on_pending()
924 self.assertEquals('Starting', other_hqe.status)
925 self.assertEquals('Starting', hqe.status)
926 self.god.stub_function(job, 'run')
927 self.god.unstub(delay_task, 'abort')
showard77182562009-06-10 00:16:05 +0000928
showard8cc058f2009-09-08 16:26:33 +0000929 hqe.set_status('Pending')
930 other_hqe.set_status('Pending')
showard708b3522009-08-20 23:26:15 +0000931 # Now we're not over the max for the atomic group. But all assigned
932 # hosts are in pending state. over_max_threshold should make us run().
showard8cc058f2009-09-08 16:26:33 +0000933 hqe.atomic_group.max_number_of_machines += 1
934 hqe.atomic_group.save()
935 job.run.expect_call(hqe)
936 hqe.on_pending()
937 self.god.check_playback()
938 hqe.atomic_group.max_number_of_machines -= 1
939 hqe.atomic_group.save()
showard708b3522009-08-20 23:26:15 +0000940
jamesrenc44ae992010-02-19 00:12:54 +0000941 other_hqe = scheduler_models.HostQueueEntry(django_hqes[0].id)
showard8cc058f2009-09-08 16:26:33 +0000942 self.assertTrue(hqe.job is other_hqe.job)
showard77182562009-06-10 00:16:05 +0000943 # DBObject classes should reuse instances so these should be the same.
944 self.assertEqual(job, other_hqe.job)
showard8cc058f2009-09-08 16:26:33 +0000945 self.assertEqual(other_hqe.job, hqe.job)
showard77182562009-06-10 00:16:05 +0000946 # Be sure our delay was not lost during the other_hqe construction.
showard8cc058f2009-09-08 16:26:33 +0000947 self.assertEqual(job._delay_ready_task, delay_task)
showard77182562009-06-10 00:16:05 +0000948 self.assert_(job._delay_ready_task)
949 self.assertFalse(job._delay_ready_task.is_done())
950 self.assertFalse(job._delay_ready_task.aborted)
951
952 # We want the real run() to be called below.
953 self.god.unstub(job, 'run')
954
955 # We pass in the other HQE this time the same way it would happen
956 # for real when one host finishes verifying and enters pending.
showard8cc058f2009-09-08 16:26:33 +0000957 job.run_if_ready(other_hqe)
showard77182562009-06-10 00:16:05 +0000958
959 # The delayed task must be aborted by the actual run() call above.
960 self.assertTrue(job._delay_ready_task.aborted)
961 self.assertFalse(job._delay_ready_task.success)
962 self.assertTrue(job._delay_ready_task.is_done())
963
964 # Check that job run() and _finish_run() were called by the above:
showard8cc058f2009-09-08 16:26:33 +0000965 self._dispatcher._schedule_running_host_queue_entries()
966 agent = self._dispatcher._agents[0]
967 self.assert_(agent.task)
968 task = agent.task
969 self.assert_(isinstance(task, monitor_db.QueueTask))
showard77182562009-06-10 00:16:05 +0000970 # Requery these hqes in order to verify the status from the DB.
971 django_hqes = list(models.HostQueueEntry.objects.filter(job=job.id))
972 for entry in django_hqes:
973 self.assertEqual(models.HostQueueEntry.Status.STARTING,
974 entry.status)
975
976 # We're already running, but more calls to run_with_ready_delay can
977 # continue to come in due to straggler hosts enter Pending. Make
978 # sure we don't do anything.
showard8cc058f2009-09-08 16:26:33 +0000979 self.god.stub_function(job, 'run')
980 job.run_with_ready_delay(hqe)
981 self.god.check_playback()
982 self.god.unstub(job, 'run')
showard77182562009-06-10 00:16:05 +0000983
984
showardf1ae3542009-05-11 19:26:02 +0000985 def test_run_synchronous_atomic_group_ready(self):
986 self._create_job(hosts=[5, 6], atomic_group=1, synchronous=True)
987 self._update_hqe("status='Pending', execution_subdir=''")
988
showard8cc058f2009-09-08 16:26:33 +0000989 queue_task = self._test_run_helper(expect_starting=True)
showardf1ae3542009-05-11 19:26:02 +0000990
991 self.assert_(isinstance(queue_task, monitor_db.QueueTask))
showard77182562009-06-10 00:16:05 +0000992 # Atomic group jobs that do not depend on a specific label in the
993 # atomic group will use the atomic group name as their group name.
showardd1195652009-12-08 22:21:02 +0000994 self.assertEquals(queue_task.queue_entries[0].get_group_name(),
995 'atomic1')
showardf1ae3542009-05-11 19:26:02 +0000996
997
998 def test_run_synchronous_atomic_group_with_label_ready(self):
999 job = self._create_job(hosts=[5, 6], atomic_group=1, synchronous=True)
1000 job.dependency_labels.add(self.label4)
1001 self._update_hqe("status='Pending', execution_subdir=''")
1002
showard8cc058f2009-09-08 16:26:33 +00001003 queue_task = self._test_run_helper(expect_starting=True)
showardf1ae3542009-05-11 19:26:02 +00001004
1005 self.assert_(isinstance(queue_task, monitor_db.QueueTask))
1006 # Atomic group jobs that also specify a label in the atomic group
1007 # will use the label name as their group name.
showardd1195652009-12-08 22:21:02 +00001008 self.assertEquals(queue_task.queue_entries[0].get_group_name(),
1009 'label4')
showardf1ae3542009-05-11 19:26:02 +00001010
1011
jamesrenc44ae992010-02-19 00:12:54 +00001012 def test_run_synchronous_ready(self):
1013 self._create_job(hosts=[1, 2], synchronous=True)
1014 self._update_hqe("status='Pending', execution_subdir=''")
showard21baa452008-10-21 00:08:39 +00001015
jamesrenc44ae992010-02-19 00:12:54 +00001016 queue_task = self._test_run_helper(expect_starting=True)
showard8cc058f2009-09-08 16:26:33 +00001017
jamesrenc44ae992010-02-19 00:12:54 +00001018 self.assert_(isinstance(queue_task, monitor_db.QueueTask))
1019 self.assertEquals(queue_task.job.id, 1)
1020 hqe_ids = [hqe.id for hqe in queue_task.queue_entries]
1021 self.assertEquals(hqe_ids, [1, 2])
showard21baa452008-10-21 00:08:39 +00001022
1023
jamesrenc44ae992010-02-19 00:12:54 +00001024 def test_schedule_running_host_queue_entries_fail(self):
1025 self._create_job(hosts=[2])
1026 self._update_hqe("status='%s', execution_subdir=''" %
1027 models.HostQueueEntry.Status.PENDING)
1028 job = scheduler_models.Job.fetch('id = 1')[0]
1029 queue_entry = scheduler_models.HostQueueEntry.fetch('id = 1')[0]
1030 assert queue_entry.job is job
1031 job.run_if_ready(queue_entry)
1032 self.assertEqual(queue_entry.status,
1033 models.HostQueueEntry.Status.STARTING)
1034 self.assert_(queue_entry.execution_subdir)
1035 self.god.check_playback()
showard21baa452008-10-21 00:08:39 +00001036
jamesrenc44ae992010-02-19 00:12:54 +00001037 class dummy_test_agent(object):
1038 task = 'dummy_test_agent'
1039 self._dispatcher._register_agent_for_ids(
1040 self._dispatcher._host_agents, [queue_entry.host.id],
1041 dummy_test_agent)
showard21baa452008-10-21 00:08:39 +00001042
jamesrenc44ae992010-02-19 00:12:54 +00001043 # Attempted to schedule on a host that already has an agent.
Prashanth B0e960282014-05-13 19:38:28 -07001044 self.assertRaises(scheduler_lib.SchedulerError,
jamesrenc44ae992010-02-19 00:12:54 +00001045 self._dispatcher._schedule_running_host_queue_entries)
showardf1ae3542009-05-11 19:26:02 +00001046
1047
jamesren47bd7372010-03-13 00:58:17 +00001048 def test_schedule_hostless_job(self):
1049 job = self._create_job(hostless=True)
1050 self.assertEqual(1, job.hostqueueentry_set.count())
1051 hqe_query = scheduler_models.HostQueueEntry.fetch(
1052 'id = %s' % job.hostqueueentry_set.all()[0].id)
1053 self.assertEqual(1, len(hqe_query))
1054 hqe = hqe_query[0]
1055
1056 self.assertEqual(models.HostQueueEntry.Status.QUEUED, hqe.status)
1057 self.assertEqual(0, len(self._dispatcher._agents))
1058
1059 self._dispatcher._schedule_new_jobs()
1060
1061 self.assertEqual(models.HostQueueEntry.Status.STARTING, hqe.status)
1062 self.assertEqual(1, len(self._dispatcher._agents))
1063
1064 self._dispatcher._schedule_new_jobs()
1065
1066 # No change to previously schedule hostless job, and no additional agent
1067 self.assertEqual(models.HostQueueEntry.Status.STARTING, hqe.status)
1068 self.assertEqual(1, len(self._dispatcher._agents))
1069
1070
showardf1ae3542009-05-11 19:26:02 +00001071class TopLevelFunctionsTest(unittest.TestCase):
mblighe7d9c602009-07-02 19:02:33 +00001072 def setUp(self):
1073 self.god = mock.mock_god()
1074
1075
1076 def tearDown(self):
1077 self.god.unstub_all()
1078
1079
showardf1ae3542009-05-11 19:26:02 +00001080 def test_autoserv_command_line(self):
1081 machines = 'abcd12,efgh34'
showardf1ae3542009-05-11 19:26:02 +00001082 extra_args = ['-Z', 'hello']
showardf65b7402009-12-18 22:44:35 +00001083 expected_command_line_base = set((monitor_db._autoserv_path, '-p',
1084 '-m', machines, '-r',
Simran Basi1bf60eb2015-12-01 16:39:29 -08001085 '--lab', 'True',
showardf65b7402009-12-18 22:44:35 +00001086 drone_manager.WORKING_DIRECTORY))
showardf1ae3542009-05-11 19:26:02 +00001087
showardf65b7402009-12-18 22:44:35 +00001088 expected_command_line = expected_command_line_base.union(
1089 ['--verbose']).union(extra_args)
1090 command_line = set(
1091 monitor_db._autoserv_command_line(machines, extra_args))
1092 self.assertEqual(expected_command_line, command_line)
showardf1ae3542009-05-11 19:26:02 +00001093
1094 class FakeJob(object):
1095 owner = 'Bob'
1096 name = 'fake job name'
Aviv Keshet1f23b692013-05-14 11:13:55 -07001097 test_retry = 0
mblighe7d9c602009-07-02 19:02:33 +00001098 id = 1337
1099
1100 class FakeHQE(object):
1101 job = FakeJob
showardf1ae3542009-05-11 19:26:02 +00001102
showardf65b7402009-12-18 22:44:35 +00001103 expected_command_line = expected_command_line_base.union(
1104 ['-u', FakeJob.owner, '-l', FakeJob.name])
1105 command_line = set(monitor_db._autoserv_command_line(
1106 machines, extra_args=[], queue_entry=FakeHQE, verbose=False))
1107 self.assertEqual(expected_command_line, command_line)
showardf1ae3542009-05-11 19:26:02 +00001108
showard21baa452008-10-21 00:08:39 +00001109
jamesren76fcf192010-04-21 20:39:50 +00001110class AgentTaskTest(unittest.TestCase,
1111 frontend_test_utils.FrontendTestMixin):
1112 def setUp(self):
1113 self._frontend_common_setup()
1114
1115
1116 def tearDown(self):
1117 self._frontend_common_teardown()
1118
1119
1120 def _setup_drones(self):
1121 self.god.stub_function(models.DroneSet, 'drone_sets_enabled')
1122 models.DroneSet.drone_sets_enabled.expect_call().and_return(True)
1123
1124 drones = []
1125 for x in xrange(4):
1126 drones.append(models.Drone.objects.create(hostname=str(x)))
1127
1128 drone_set_1 = models.DroneSet.objects.create(name='1')
1129 drone_set_1.drones.add(*drones[0:2])
1130 drone_set_2 = models.DroneSet.objects.create(name='2')
1131 drone_set_2.drones.add(*drones[2:4])
1132 drone_set_3 = models.DroneSet.objects.create(name='3')
1133
1134 job_1 = self._create_job_simple([self.hosts[0].id],
1135 drone_set=drone_set_1)
1136 job_2 = self._create_job_simple([self.hosts[0].id],
1137 drone_set=drone_set_2)
1138 job_3 = self._create_job_simple([self.hosts[0].id],
1139 drone_set=drone_set_3)
1140
jamesrendd77e012010-04-28 18:07:30 +00001141 job_4 = self._create_job_simple([self.hosts[0].id])
1142 job_4.drone_set = None
1143 job_4.save()
jamesren76fcf192010-04-21 20:39:50 +00001144
jamesrendd77e012010-04-28 18:07:30 +00001145 hqe_1 = job_1.hostqueueentry_set.all()[0]
1146 hqe_2 = job_2.hostqueueentry_set.all()[0]
1147 hqe_3 = job_3.hostqueueentry_set.all()[0]
1148 hqe_4 = job_4.hostqueueentry_set.all()[0]
1149
beeps5e2bb4a2013-10-28 11:26:45 -07001150 return (hqe_1, hqe_2, hqe_3, hqe_4), agent_task.AgentTask()
jamesren76fcf192010-04-21 20:39:50 +00001151
1152
jamesrendd77e012010-04-28 18:07:30 +00001153 def test_get_drone_hostnames_allowed_no_drones_in_set(self):
jamesren76fcf192010-04-21 20:39:50 +00001154 hqes, task = self._setup_drones()
jamesrendd77e012010-04-28 18:07:30 +00001155 task.queue_entry_ids = (hqes[2].id,)
jamesren76fcf192010-04-21 20:39:50 +00001156 self.assertEqual(set(), task.get_drone_hostnames_allowed())
1157 self.god.check_playback()
1158
1159
jamesrendd77e012010-04-28 18:07:30 +00001160 def test_get_drone_hostnames_allowed_no_drone_set(self):
1161 hqes, task = self._setup_drones()
1162 hqe = hqes[3]
1163 task.queue_entry_ids = (hqe.id,)
1164
1165 result = object()
1166
1167 self.god.stub_function(task, '_user_or_global_default_drone_set')
1168 task._user_or_global_default_drone_set.expect_call(
1169 hqe.job, hqe.job.user()).and_return(result)
1170
1171 self.assertEqual(result, task.get_drone_hostnames_allowed())
1172 self.god.check_playback()
1173
1174
jamesren76fcf192010-04-21 20:39:50 +00001175 def test_get_drone_hostnames_allowed_success(self):
1176 hqes, task = self._setup_drones()
jamesrendd77e012010-04-28 18:07:30 +00001177 task.queue_entry_ids = (hqes[0].id,)
Dan Shi114e1722016-01-10 18:12:53 -08001178 self.assertEqual(set(('0','1')), task.get_drone_hostnames_allowed([]))
jamesren76fcf192010-04-21 20:39:50 +00001179 self.god.check_playback()
1180
1181
1182 def test_get_drone_hostnames_allowed_multiple_jobs(self):
1183 hqes, task = self._setup_drones()
jamesrendd77e012010-04-28 18:07:30 +00001184 task.queue_entry_ids = (hqes[0].id, hqes[1].id)
jamesren76fcf192010-04-21 20:39:50 +00001185 self.assertRaises(AssertionError,
1186 task.get_drone_hostnames_allowed)
1187 self.god.check_playback()
1188
1189
jamesrendd77e012010-04-28 18:07:30 +00001190 def test_get_drone_hostnames_allowed_no_hqe(self):
1191 class MockSpecialTask(object):
1192 requested_by = object()
1193
beeps5e2bb4a2013-10-28 11:26:45 -07001194 class MockSpecialAgentTask(agent_task.SpecialAgentTask):
jamesrendd77e012010-04-28 18:07:30 +00001195 task = MockSpecialTask()
1196 queue_entry_ids = []
1197 def __init__(self, *args, **kwargs):
Dan Shi114e1722016-01-10 18:12:53 -08001198 super(agent_task.SpecialAgentTask, self).__init__()
jamesrendd77e012010-04-28 18:07:30 +00001199
1200 task = MockSpecialAgentTask()
1201 self.god.stub_function(models.DroneSet, 'drone_sets_enabled')
1202 self.god.stub_function(task, '_user_or_global_default_drone_set')
1203
1204 result = object()
1205 models.DroneSet.drone_sets_enabled.expect_call().and_return(True)
1206 task._user_or_global_default_drone_set.expect_call(
1207 task.task, MockSpecialTask.requested_by).and_return(result)
1208
1209 self.assertEqual(result, task.get_drone_hostnames_allowed())
1210 self.god.check_playback()
1211
1212
1213 def _setup_test_user_or_global_default_drone_set(self):
1214 result = object()
1215 class MockDroneSet(object):
1216 def get_drone_hostnames(self):
1217 return result
1218
1219 self.god.stub_function(models.DroneSet, 'get_default')
1220 models.DroneSet.get_default.expect_call().and_return(MockDroneSet())
1221 return result
1222
1223
1224 def test_user_or_global_default_drone_set(self):
1225 expected = object()
1226 class MockDroneSet(object):
1227 def get_drone_hostnames(self):
1228 return expected
1229 class MockUser(object):
1230 drone_set = MockDroneSet()
1231
1232 self._setup_test_user_or_global_default_drone_set()
1233
beeps5e2bb4a2013-10-28 11:26:45 -07001234 actual = agent_task.AgentTask()._user_or_global_default_drone_set(
jamesrendd77e012010-04-28 18:07:30 +00001235 None, MockUser())
1236
1237 self.assertEqual(expected, actual)
1238 self.god.check_playback()
1239
1240
1241 def test_user_or_global_default_drone_set_no_user(self):
1242 expected = self._setup_test_user_or_global_default_drone_set()
beeps5e2bb4a2013-10-28 11:26:45 -07001243 actual = agent_task.AgentTask()._user_or_global_default_drone_set(
jamesrendd77e012010-04-28 18:07:30 +00001244 None, None)
1245
1246 self.assertEqual(expected, actual)
1247 self.god.check_playback()
1248
1249
1250 def test_user_or_global_default_drone_set_no_user_drone_set(self):
1251 class MockUser(object):
1252 drone_set = None
1253 login = None
1254
1255 expected = self._setup_test_user_or_global_default_drone_set()
beeps5e2bb4a2013-10-28 11:26:45 -07001256 actual = agent_task.AgentTask()._user_or_global_default_drone_set(
jamesrendd77e012010-04-28 18:07:30 +00001257 None, MockUser())
1258
1259 self.assertEqual(expected, actual)
1260 self.god.check_playback()
1261
1262
Dan Shi76af8022013-10-19 01:59:49 -07001263 def test_abort_HostlessQueueTask(self):
1264 hqe = self.god.create_mock_class(scheduler_models.HostQueueEntry,
1265 'HostQueueEntry')
1266 # If hqe is still in STARTING status, aborting the task should finish
1267 # without changing hqe's status.
1268 hqe.status = models.HostQueueEntry.Status.STARTING
1269 hqe.job = None
1270 hqe.id = 0
1271 task = monitor_db.HostlessQueueTask(hqe)
1272 task.abort()
1273
1274 # If hqe is in RUNNING status, aborting the task should change hqe's
1275 # status to Parsing, so FinalReparseTask can be scheduled.
1276 hqe.set_status.expect_call('Parsing')
1277 hqe.status = models.HostQueueEntry.Status.RUNNING
1278 hqe.job = None
1279 hqe.id = 0
1280 task = monitor_db.HostlessQueueTask(hqe)
1281 task.abort()
1282
1283
showardce38e0c2008-05-29 19:36:16 +00001284if __name__ == '__main__':
jadmanski0afbb632008-06-06 21:10:57 +00001285 unittest.main()