summaryrefslogtreecommitdiffstats
path: root/bitbake
diff options
context:
space:
mode:
authorElliot Smith <elliot.smith@intel.com>2016-07-29 12:19:18 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2016-08-11 00:09:27 +0100
commitf17ab95c799734a3effa61b9c2b5dfd40d81eb7c (patch)
tree1f93ae336024127591da5259c710095e74608a7d /bitbake
parent98ef970c8e2827a6e0fc923a49fcc00af52f878c (diff)
downloadpoky-f17ab95c799734a3effa61b9c2b5dfd40d81eb7c.tar.gz
bitbake: toaster-tests: add test for showing self-dependent task
Toaster occasionally records a task which depends on itself. Add a test which checks that a task which depends on itself can be displayed in the task page. [YOCTO #9952] (Bitbake rev: b7a699e701785b5bd8da97b6e1b760a1c6dd05f5) Signed-off-by: Elliot Smith <elliot.smith@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake')
-rw-r--r--bitbake/lib/toaster/tests/browser/test_task_page.py76
1 files changed, 76 insertions, 0 deletions
diff --git a/bitbake/lib/toaster/tests/browser/test_task_page.py b/bitbake/lib/toaster/tests/browser/test_task_page.py
new file mode 100644
index 0000000000..690d116cba
--- /dev/null
+++ b/bitbake/lib/toaster/tests/browser/test_task_page.py
@@ -0,0 +1,76 @@
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) 2013-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.core.urlresolvers import reverse
23from django.utils import timezone
24from tests.browser.selenium_helpers import SeleniumTestCase
25from orm.models import Project, Build, Layer, Layer_Version, Recipe, Target
26from orm.models import Task, Task_Dependency
27
28class TestTaskPage(SeleniumTestCase):
29 """ Test page which shows an individual task """
30 RECIPE_NAME = 'bar'
31 RECIPE_VERSION = '0.1'
32 TASK_NAME = 'do_da_doo_ron_ron'
33
34 def setUp(self):
35 now = timezone.now()
36
37 project = Project.objects.get_or_create_default_project()
38
39 self.build = Build.objects.create(project=project, started_on=now,
40 completed_on=now)
41
42 Target.objects.create(target='foo', build=self.build)
43
44 layer = Layer.objects.create()
45
46 layer_version = Layer_Version.objects.create(layer=layer)
47
48 recipe = Recipe.objects.create(name=TestTaskPage.RECIPE_NAME,
49 layer_version=layer_version, version=TestTaskPage.RECIPE_VERSION)
50
51 self.task = Task.objects.create(build=self.build, recipe=recipe,
52 order=1, outcome=Task.OUTCOME_COVERED, task_executed=False,
53 task_name=TestTaskPage.TASK_NAME)
54
55 def test_covered_task(self):
56 """
57 Check that covered tasks are displayed for tasks which have
58 dependencies on themselves
59 """
60
61 # the infinite loop which of bug 9952 was down to tasks which
62 # depend on themselves, so add self-dependent tasks to replicate the
63 # situation which caused the infinite loop (now fixed)
64 Task_Dependency.objects.create(task=self.task, depends_on=self.task)
65
66 url = reverse('task', args=(self.build.id, self.task.id,))
67 self.get(url)
68
69 # check that we see the task name
70 self.wait_until_visible('.page-header h1')
71
72 heading = self.find('.page-header h1')
73 expected_heading = '%s_%s %s' % (TestTaskPage.RECIPE_NAME,
74 TestTaskPage.RECIPE_VERSION, TestTaskPage.TASK_NAME)
75 self.assertEqual(heading.text, expected_heading,
76 'Heading should show recipe name, version and task')