blob: 49897a476c5920dd4b91769794daf884730bfcb0 [file] [log] [blame]
Brad Bishop6e60e8b2018-02-01 10:27:11 -05001#! /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) 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
22from django.test import TestCase
23from django.core import management
24
25from orm.models import Layer_Version, Machine, Recipe
26
27
28class TestLayerIndexUpdater(TestCase):
29 def test_run_lsupdates_command(self):
30 # Load some release information for us to fetch from the layer index
31 management.call_command('loaddata', 'poky')
32
33 old_layers_count = Layer_Version.objects.count()
34 old_recipes_count = Recipe.objects.count()
35 old_machines_count = Machine.objects.count()
36
37 # Now fetch the metadata from the layer index
38 management.call_command('lsupdates')
39
40 self.assertTrue(Layer_Version.objects.count() > old_layers_count,
41 "lsupdates ran but we still have no more layers!")
42 self.assertTrue(Recipe.objects.count() > old_recipes_count,
43 "lsupdates ran but we still have no more Recipes!")
44 self.assertTrue(Machine.objects.count() > old_machines_count,
45 "lsupdates ran but we still have no more Machines!")