diff options
| author | Michael Wood <michael.g.wood@intel.com> | 2016-06-10 16:48:33 +0100 |
|---|---|---|
| committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-06-15 08:35:06 +0100 |
| commit | f48feeb76dd9dad4eb8d15811104c6b6aa538e7d (patch) | |
| tree | 768078f21104cafddf3ca747113e643a241900dc /bitbake/lib | |
| parent | 5ee6b706b22a41de1e51696d8441767a86bcc977 (diff) | |
| download | poky-f48feeb76dd9dad4eb8d15811104c6b6aa538e7d.tar.gz | |
bitbake: toaster: selenium tests Update unique custom image string and fix import
- Update the string for recognising a duplicate image recipe
- Fix an incorrect relative import
(Bitbake rev: 830743b1aa29a5ac220141e9c24b2592d6cebb29)
Signed-off-by: Michael Wood <michael.g.wood@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/lib')
| -rw-r--r-- | bitbake/lib/toaster/tests/browser/test_builddashboard_page.py | 2 | ||||
| -rw-r--r-- | bitbake/lib/toaster/tests/browser/test_new_custom_image_page.py | 3 |
2 files changed, 3 insertions, 2 deletions
diff --git a/bitbake/lib/toaster/tests/browser/test_builddashboard_page.py b/bitbake/lib/toaster/tests/browser/test_builddashboard_page.py index 5e08749470..0d39abb050 100644 --- a/bitbake/lib/toaster/tests/browser/test_builddashboard_page.py +++ b/bitbake/lib/toaster/tests/browser/test_builddashboard_page.py | |||
| @@ -22,7 +22,7 @@ | |||
| 22 | from django.core.urlresolvers import reverse | 22 | from django.core.urlresolvers import reverse |
| 23 | from django.utils import timezone | 23 | from django.utils import timezone |
| 24 | 24 | ||
| 25 | from selenium_helpers import SeleniumTestCase | 25 | from tests.browser.selenium_helpers import SeleniumTestCase |
| 26 | 26 | ||
| 27 | from orm.models import Project, Release, BitbakeVersion, Build, LogMessage | 27 | from orm.models import Project, Release, BitbakeVersion, Build, LogMessage |
| 28 | from orm.models import Layer, Layer_Version, Recipe, CustomImageRecipe | 28 | from orm.models import Layer, Layer_Version, Recipe, CustomImageRecipe |
diff --git a/bitbake/lib/toaster/tests/browser/test_new_custom_image_page.py b/bitbake/lib/toaster/tests/browser/test_new_custom_image_page.py index 8906cb27d9..ab5a8e66be 100644 --- a/bitbake/lib/toaster/tests/browser/test_new_custom_image_page.py +++ b/bitbake/lib/toaster/tests/browser/test_new_custom_image_page.py | |||
| @@ -25,6 +25,7 @@ from tests.browser.selenium_helpers import SeleniumTestCase | |||
| 25 | from orm.models import BitbakeVersion, Release, Project, ProjectLayer, Layer | 25 | from orm.models import BitbakeVersion, Release, Project, ProjectLayer, Layer |
| 26 | from orm.models import Layer_Version, Recipe, CustomImageRecipe | 26 | from orm.models import Layer_Version, Recipe, CustomImageRecipe |
| 27 | 27 | ||
| 28 | |||
| 28 | class TestNewCustomImagePage(SeleniumTestCase): | 29 | class TestNewCustomImagePage(SeleniumTestCase): |
| 29 | CUSTOM_IMAGE_NAME = 'roopa-doopa' | 30 | CUSTOM_IMAGE_NAME = 'roopa-doopa' |
| 30 | 31 | ||
| @@ -140,7 +141,7 @@ class TestNewCustomImagePage(SeleniumTestCase): | |||
| 140 | self._create_custom_image(self.recipe.name) | 141 | self._create_custom_image(self.recipe.name) |
| 141 | element = self.wait_until_visible('#invalid-name-help') | 142 | element = self.wait_until_visible('#invalid-name-help') |
| 142 | self.assertRegexpMatches(element.text.strip(), | 143 | self.assertRegexpMatches(element.text.strip(), |
| 143 | 'recipe with this name already exists') | 144 | 'image with this name already exists') |
| 144 | 145 | ||
| 145 | def test_new_duplicates_project_image(self): | 146 | def test_new_duplicates_project_image(self): |
| 146 | """ | 147 | """ |
