diff options
| -rw-r--r-- | bitbake/lib/toaster/tests/eventreplay/__init__.py | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/bitbake/lib/toaster/tests/eventreplay/__init__.py b/bitbake/lib/toaster/tests/eventreplay/__init__.py index 792f07d5ea..695661947a 100644 --- a/bitbake/lib/toaster/tests/eventreplay/__init__.py +++ b/bitbake/lib/toaster/tests/eventreplay/__init__.py | |||
| @@ -34,7 +34,7 @@ from pathlib import Path | |||
| 34 | 34 | ||
| 35 | from django.test import TestCase | 35 | from django.test import TestCase |
| 36 | 36 | ||
| 37 | from orm.models import Target_Installed_Package | 37 | from orm.models import Target_Installed_Package, Package, Build |
| 38 | 38 | ||
| 39 | class EventReplay(TestCase): | 39 | class EventReplay(TestCase): |
| 40 | """Base class for eventreplay test cases""" | 40 | """Base class for eventreplay test cases""" |
| @@ -85,3 +85,13 @@ class CoreImageMinimalEventReplay(EventReplay): | |||
| 85 | 'update-alternatives-opkg', | 85 | 'update-alternatives-opkg', |
| 86 | 'update-rc.d', 'util-linux-libblkid', | 86 | 'update-rc.d', 'util-linux-libblkid', |
| 87 | 'util-linux-libuuid', 'v86d', 'zlib']) | 87 | 'util-linux-libuuid', 'v86d', 'zlib']) |
| 88 | |||
| 89 | class ZlibEventReplay(EventReplay): | ||
| 90 | """Replay zlib events""" | ||
| 91 | |||
| 92 | def test_replay_zlib(self): | ||
| 93 | """Test if zlib build and package are in the database""" | ||
| 94 | self._replay("zlib.events") | ||
| 95 | |||
| 96 | self.assertEqual(Build.objects.last().target_set.last().target, "zlib") | ||
| 97 | self.assertTrue('zlib' in Package.objects.values_list('name', flat=True)) | ||
