diff options
author | Michael Wood <michael.g.wood@intel.com> | 2016-10-05 17:08:54 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-10-06 11:41:48 +0100 |
commit | 4454d024485d671ded558e3c617900f6fad414a4 (patch) | |
tree | f5575f585052bd61c3affc5a16228fc2f394ec15 /bitbake/lib/toaster/toastergui | |
parent | 7f67977518d69dc84cbbcc4cf1ea859c51e57d18 (diff) | |
download | poky-4454d024485d671ded558e3c617900f6fad414a4.tar.gz |
bitbake: toaster: Update tests to reflect front end changes
- Browser test we changed the project heading access to use the class name
- Update toastergui unit test for additional gotoUrl property
- On faster browsers we had a race for layer details inputs being
visible
(Bitbake rev: 80f377ebcffd01dbe393ccffb999df4b04552f8a)
Signed-off-by: Michael Wood <michael.g.wood@intel.com>
Signed-off-by: bavery <brian.avery@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/lib/toaster/toastergui')
-rw-r--r-- | bitbake/lib/toaster/toastergui/tests.py | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/bitbake/lib/toaster/toastergui/tests.py b/bitbake/lib/toaster/toastergui/tests.py index 050861159a..2b5894f743 100644 --- a/bitbake/lib/toaster/toastergui/tests.py +++ b/bitbake/lib/toaster/toastergui/tests.py | |||
@@ -248,7 +248,13 @@ class ViewTests(TestCase): | |||
248 | url = reverse('xhr_customrecipe_id', args=(recipe.id,)) | 248 | url = reverse('xhr_customrecipe_id', args=(recipe.id,)) |
249 | response = self.client.delete(url) | 249 | response = self.client.delete(url) |
250 | self.assertEqual(response.status_code, 200) | 250 | self.assertEqual(response.status_code, 200) |
251 | self.assertEqual(json.loads(response.content.decode('utf-8')), {"error": "ok"}) | 251 | |
252 | gotoUrl = reverse('projectcustomimages', args=(self.project.pk,)) | ||
253 | |||
254 | self.assertEqual(json.loads(response.content.decode('utf-8')), | ||
255 | {"error": "ok", | ||
256 | "gotoUrl": gotoUrl}) | ||
257 | |||
252 | # try to delete not-existent recipe | 258 | # try to delete not-existent recipe |
253 | url = reverse('xhr_customrecipe_id', args=(recipe.id,)) | 259 | url = reverse('xhr_customrecipe_id', args=(recipe.id,)) |
254 | response = self.client.delete(url) | 260 | response = self.client.delete(url) |