diff options
| -rw-r--r-- | bitbake/lib/toaster/tests/browser/test_js_unit_tests.py | 57 |
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 | """ | ||
| 23 | Run the js unit tests | ||
| 24 | """ | ||
| 25 | |||
| 26 | from django.core.urlresolvers import reverse | ||
| 27 | from tests.browser.selenium_helpers import SeleniumTestCase | ||
| 28 | import logging | ||
| 29 | |||
| 30 | logger = logging.getLogger("toaster") | ||
| 31 | |||
| 32 | |||
| 33 | class 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) | ||
