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 <elliot.smith@intel.com>
Signed-off-by: brian avery <avery.brian@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
Elliot Smith
2015-09-02 17:25:11 -07:00
committed by Richard Purdie
parent 3b233fca49
commit 3b6d193cd7

View File

@@ -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"""