You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
68 lines
2.1 KiB
68 lines
2.1 KiB
4 months ago
|
#!/usr/bin/python2
|
||
|
|
||
|
# Copyright 2015 The Chromium OS Authors. All rights reserved.
|
||
|
# Use of this source code is governed by a BSD-style license that can be
|
||
|
# found in the LICENSE file.
|
||
|
|
||
|
from __future__ import absolute_import
|
||
|
from __future__ import division
|
||
|
from __future__ import print_function
|
||
|
|
||
|
from datetime import timedelta, datetime
|
||
|
import mock
|
||
|
import unittest
|
||
|
|
||
|
import common
|
||
|
from autotest_lib.frontend import setup_django_readonly_environment
|
||
|
from autotest_lib.frontend import setup_test_environment
|
||
|
from autotest_lib.frontend.afe import models
|
||
|
from autotest_lib.site_utils import count_jobs
|
||
|
from django import test
|
||
|
from six.moves import range
|
||
|
|
||
|
|
||
|
class TestCountJobs(test.TestCase):
|
||
|
"""Tests the count_jobs script's functionality.
|
||
|
"""
|
||
|
|
||
|
def setUp(self):
|
||
|
super(TestCountJobs, self).setUp()
|
||
|
setup_test_environment.set_up()
|
||
|
|
||
|
|
||
|
def tearDown(self):
|
||
|
super(TestCountJobs, self).tearDown()
|
||
|
setup_test_environment.tear_down()
|
||
|
|
||
|
|
||
|
def test_no_jobs(self):
|
||
|
"""Initially, there should be no jobs."""
|
||
|
self.assertEqual(
|
||
|
0,
|
||
|
count_jobs.number_of_jobs_since(timedelta(days=999)))
|
||
|
|
||
|
|
||
|
def test_count_jobs(self):
|
||
|
"""When n jobs are inserted, n jobs should be counted within a day range.
|
||
|
|
||
|
Furthermore, 0 jobs should be counted within 0 or (-1) days.
|
||
|
"""
|
||
|
some_day = datetime.fromtimestamp(1450211914) # a time grabbed from time.time()
|
||
|
class FakeDatetime(datetime):
|
||
|
"""Always returns the same 'now' value"""
|
||
|
@classmethod
|
||
|
def now(self):
|
||
|
"""Return a fake 'now', rather than rely on the system's clock."""
|
||
|
return some_day
|
||
|
with mock.patch.object(count_jobs, 'datetime', FakeDatetime):
|
||
|
for i in range(1, 24):
|
||
|
models.Job(created_on=some_day - timedelta(hours=i)).save()
|
||
|
for count, days in ((i, 1), (0, 0), (0, -1)):
|
||
|
self.assertEqual(
|
||
|
count,
|
||
|
count_jobs.number_of_jobs_since(timedelta(days=days)))
|
||
|
|
||
|
|
||
|
if __name__ == '__main__':
|
||
|
unittest.main()
|