summaryrefslogtreecommitdiffstats
path: root/bitbake
diff options
context:
space:
mode:
authorMichael Wood <michael.g.wood@intel.com>2016-04-04 11:52:49 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2016-04-06 23:10:31 +0100
commit013984dc454548faaa1ab202e11b6552c5ffc5a2 (patch)
tree07fb6c05d0c82d3d174d882a070a7332620d930f /bitbake
parent7609888b6aa4509c22f821dbee43b8d784c0feae (diff)
downloadpoky-013984dc454548faaa1ab202e11b6552c5ffc5a2.tar.gz
bitbake: tests: browser Add test to run the js unit tests
(Bitbake rev: 81ccbf243050a5a9245d2de4c1de342771c09a59) Signed-off-by: Michael Wood <michael.g.wood@intel.com> 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_js_unit_tests.py57
1 files changed, 57 insertions, 0 deletions
diff --git a/bitbake/lib/toaster/tests/browser/test_js_unit_tests.py b/bitbake/lib/toaster/tests/browser/test_js_unit_tests.py
new file mode 100644
index 0000000000..e63da8e7a5
--- /dev/null
+++ b/bitbake/lib/toaster/tests/browser/test_js_unit_tests.py
@@ -0,0 +1,57 @@
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
22"""
23Run the js unit tests
24"""
25
26from django.core.urlresolvers import reverse
27from tests.browser.selenium_helpers import SeleniumTestCase
28import logging
29
30logger = logging.getLogger("toaster")
31
32
33class TestJsUnitTests(SeleniumTestCase):
34 """ Test landing page shows the Toaster brand """
35
36 fixtures = ['toastergui-unittest-data']
37
38 def test_that_js_unit_tests_pass(self):
39 url = reverse('js-unit-tests')
40 self.get(url)
41 self.wait_until_present('#tests-failed')
42
43 failed = self.find("#tests-failed").text
44 passed = self.find("#tests-passed").text
45 total = self.find("#tests-total").text
46
47 logger.info("Js unit tests completed %s out of %s passed, %s failed",
48 passed,
49 total,
50 failed)
51
52 failed_tests = self.find_all("li .fail .test-message")
53 for fail in failed_tests:
54 logger.error("JS unit test failed: %s" % fail.text)
55
56 self.assertEqual(failed, '0',
57 "%s JS unit tests failed" % failed)