summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/toaster/tests/commands/test_runbuilds.py
diff options
context:
space:
mode:
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)