summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/toaster/tests/commands/test_runbuilds.py
diff options
context:
space:
mode:
authorMichael Wood <michael.g.wood@intel.com>2016-11-24 11:19:53 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2016-11-30 15:48:09 +0000
commit4477a762bd862105a4c438d4b851611915da9a35 (patch)
treebc0ae3c05b2f67bb0de3663d1cd7724ae75864e4 /bitbake/lib/toaster/tests/commands/test_runbuilds.py
parent310a9e5d3564e9b07bb32e3d7b3cc94e32421968 (diff)
downloadpoky-4477a762bd862105a4c438d4b851611915da9a35.tar.gz
bitbake: toaster: tests Add management command tests
Add some simple sanity tests for the management commands that we use for Toaster. Can be executed with ./manage.py test tests.commands For faster execution use the test settings and keepdb flag: DJANGO_SETTINGS_MODULE=toastermain.settings_test ./manage.py test tests.commands --keepdb (Bitbake rev: 161ea71519e7f70d4aadaafc9c3294a12612f0cb) Signed-off-by: Michael Wood <michael.g.wood@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/lib/toaster/tests/commands/test_runbuilds.py')
-rw-r--r--bitbake/lib/toaster/tests/commands/test_runbuilds.py88
1 files changed, 88 insertions, 0 deletions
diff --git a/bitbake/lib/toaster/tests/commands/test_runbuilds.py b/bitbake/lib/toaster/tests/commands/test_runbuilds.py
new file mode 100644
index 0000000000..3e634835ee
--- /dev/null
+++ b/bitbake/lib/toaster/tests/commands/test_runbuilds.py
@@ -0,0 +1,88 @@
1#! /usr/bin/env python
2# ex:ts=4:sw=4:sts=4:et
3# -*- tab-width: 4; c-basic-offset: 4; indent-tabs-mode: nil -*-
4#
5# BitBake Toaster Implementation
6#
7# Copyright (C) 2016 Intel Corporation
8#
9# This program is free software; you can redistribute it and/or modify
10# it under the terms of the GNU General Public License version 2 as
11# published by the Free Software Foundation.
12#
13# This program is distributed in the hope that it will be useful,
14# but WITHOUT ANY WARRANTY; without even the implied warranty of
15# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16# GNU General Public License for more details.
17#
18# You should have received a copy of the GNU General Public License along
19# with this program; if not, write to the Free Software Foundation, Inc.,
20# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
21
22import os
23
24from django.test import TestCase
25from django.core import management
26
27from orm.models import signal_runbuilds
28
29import threading
30import time
31import subprocess
32import signal
33
34
35class KillRunbuilds(threading.Thread):
36 """ Kill the runbuilds process after an amount of time """
37 def __init__(self, *args, **kwargs):
38 super(KillRunbuilds, self).__init__(*args, **kwargs)
39 self.setDaemon(True)
40
41 def run(self):
42 time.sleep(5)
43 signal_runbuilds()
44 time.sleep(1)
45
46 pidfile_path = os.path.join(os.environ.get("BUILDDIR", "."),
47 ".runbuilds.pid")
48
49 with open(pidfile_path) as pidfile:
50 pid = pidfile.read()
51 os.kill(int(pid), signal.SIGTERM)
52
53
54class TestCommands(TestCase):
55 """ Sanity test that runbuilds executes OK """
56
57 def setUp(self):
58 os.environ.setdefault("DJANGO_SETTINGS_MODULE",
59 "toastermain.settings_test")
60 os.environ.setdefault("BUILDDIR",
61 "/tmp/")
62
63 # Setup a real database if needed for runbuilds process
64 # to connect to
65 management.call_command('migrate')
66
67 def test_runbuilds_command(self):
68 kill_runbuilds = KillRunbuilds()
69 kill_runbuilds.start()
70
71 manage_py = os.path.join(
72 os.path.dirname(os.path.abspath(__file__)),
73 os.pardir,
74 os.pardir,
75 "manage.py")
76
77 command = "%s runbuilds" % manage_py
78
79 process = subprocess.Popen(command,
80 shell=True,
81 stdout=subprocess.PIPE,
82 stderr=subprocess.PIPE)
83
84 (out, err) = process.communicate()
85 process.wait()
86
87 self.assertNotEqual(process.returncode, 1,
88 "Runbuilds returned an error %s" % err)