From 3b6d193cd7dc508d3285664b78b426fc5fd6e4a5 Mon Sep 17 00:00:00 2001 From: Elliot Smith Date: Wed, 2 Sep 2015 17:25:11 -0700 Subject: bitbake: toaster: Fix test for projects page JSON The tests expect data to be returned in a particular format, which doesn't include is_default or the num_builds fields added to support default project improvements. Add the extra fields so the tests pass again. [YOCTO #7932] (Bitbake rev: 66f965b68dda76a755d88879191a0f340ba19142) Signed-off-by: Elliot Smith Signed-off-by: brian avery Signed-off-by: Richard Purdie --- bitbake/lib/toaster/toastergui/tests.py | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) (limited to 'bitbake/lib/toaster/toastergui') diff --git a/bitbake/lib/toaster/toastergui/tests.py b/bitbake/lib/toaster/toastergui/tests.py index 85e27fe07c..7acf4bc31d 100644 --- a/bitbake/lib/toaster/toastergui/tests.py +++ b/bitbake/lib/toaster/toastergui/tests.py @@ -40,6 +40,7 @@ class ViewTests(TestCase): bitbake_version=bbv) self.project = Project.objects.create_project(name=PROJECT_NAME, release=release) + layersrc = LayerSource.objects.create(sourcetype=LayerSource.TYPE_IMPORTED) self.priority = ReleaseLayerSourcePriority.objects.create(release=release, layer_source=layersrc) @@ -86,10 +87,10 @@ class ViewTests(TestCase): self.assertEqual(sorted(data["rows"][0]), ['bitbake_version_id', 'created', 'id', - 'layersTypeAheadUrl', 'name', 'projectBuildsUrl', - 'projectPageUrl', 'recipesTypeAheadUrl', - 'release_id', 'short_description', 'updated', - 'user_id']) + 'is_default', 'layersTypeAheadUrl', 'name', + 'num_builds', 'projectBuildsUrl', 'projectPageUrl', + 'recipesTypeAheadUrl', 'release_id', + 'short_description', 'updated', 'user_id']) def test_typeaheads(self): """Test typeahead ReST API""" -- cgit v1.2.3-54-g00ecf