summaryrefslogtreecommitdiffstats
path: root/bitbake
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
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')
-rw-r--r--bitbake/lib/toaster/tests/commands/__init__.py0
-rw-r--r--bitbake/lib/toaster/tests/commands/test_loaddata.py61
-rw-r--r--bitbake/lib/toaster/tests/commands/test_lsupdates.py45
-rw-r--r--bitbake/lib/toaster/tests/commands/test_runbuilds.py88
4 files changed, 194 insertions, 0 deletions
diff --git a/bitbake/lib/toaster/tests/commands/__init__.py b/bitbake/lib/toaster/tests/commands/__init__.py
new file mode 100644
index 0000000000..e69de29bb2
--- /dev/null
+++ b/bitbake/lib/toaster/tests/commands/__init__.py
diff --git a/bitbake/lib/toaster/tests/commands/test_loaddata.py b/bitbake/lib/toaster/tests/commands/test_loaddata.py
new file mode 100644
index 0000000000..951f6ff5aa
--- /dev/null
+++ b/bitbake/lib/toaster/tests/commands/test_loaddata.py
@@ -0,0 +1,61 @@
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
22from django.test import TestCase
23from django.core import management
24
25from orm.models import Layer_Version, Layer, Release, ToasterSetting
26
27
28class TestLoadDataFixtures(TestCase):
29 """ Test loading our 3 provided fixtures """
30 def test_run_loaddata_poky_command(self):
31 management.call_command('loaddata', 'poky')
32
33 num_releases = Release.objects.count()
34
35 self.assertTrue(
36 Layer_Version.objects.filter(
37 layer__name="meta-poky").count() == num_releases,
38 "Loaded poky fixture but don't have a meta-poky for all releases"
39 " defined")
40
41 def test_run_loaddata_oecore_command(self):
42 management.call_command('loaddata', 'oe-core')
43
44 # We only have the one layer for oe-core setup
45 self.assertTrue(
46 Layer.objects.filter(name="openembedded-core").count() > 0,
47 "Loaded oe-core fixture but still have no openemebedded-core"
48 " layer")
49
50 def test_run_loaddata_settings_command(self):
51 management.call_command('loaddata', 'settings')
52
53 self.assertTrue(
54 ToasterSetting.objects.filter(name="DEFAULT_RELEASE").count() > 0,
55 "Loaded settings but have no DEFAULT_RELEASE")
56
57 self.assertTrue(
58 ToasterSetting.objects.filter(
59 name__startswith="DEFCONF").count() > 0,
60 "Loaded settings but have no DEFCONF (default project "
61 "configuration values)")
diff --git a/bitbake/lib/toaster/tests/commands/test_lsupdates.py b/bitbake/lib/toaster/tests/commands/test_lsupdates.py
new file mode 100644
index 0000000000..49897a476c
--- /dev/null
+++ b/bitbake/lib/toaster/tests/commands/test_lsupdates.py
@@ -0,0 +1,45 @@
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
22from django.test import TestCase
23from django.core import management
24
25from orm.models import Layer_Version, Machine, Recipe
26
27
28class TestLayerIndexUpdater(TestCase):
29 def test_run_lsupdates_command(self):
30 # Load some release information for us to fetch from the layer index
31 management.call_command('loaddata', 'poky')
32
33 old_layers_count = Layer_Version.objects.count()
34 old_recipes_count = Recipe.objects.count()
35 old_machines_count = Machine.objects.count()
36
37 # Now fetch the metadata from the layer index
38 management.call_command('lsupdates')
39
40 self.assertTrue(Layer_Version.objects.count() > old_layers_count,
41 "lsupdates ran but we still have no more layers!")
42 self.assertTrue(Recipe.objects.count() > old_recipes_count,
43 "lsupdates ran but we still have no more Recipes!")
44 self.assertTrue(Machine.objects.count() > old_machines_count,
45 "lsupdates ran but we still have no more Machines!")
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)