diff options
Diffstat (limited to 'meta/lib')
| -rw-r--r-- | meta/lib/oeqa/runtime/cases/apt.py | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/meta/lib/oeqa/runtime/cases/apt.py b/meta/lib/oeqa/runtime/cases/apt.py new file mode 100644 index 0000000000..8d4dd35c57 --- /dev/null +++ b/meta/lib/oeqa/runtime/cases/apt.py | |||
| @@ -0,0 +1,47 @@ | |||
| 1 | import os | ||
| 2 | from oeqa.utils.httpserver import HTTPService | ||
| 3 | from oeqa.runtime.case import OERuntimeTestCase | ||
| 4 | from oeqa.core.decorator.data import skipIfNotDataVar, skipIfNotFeature | ||
| 5 | from oeqa.runtime.decorator.package import OEHasPackage | ||
| 6 | |||
| 7 | class AptTest(OERuntimeTestCase): | ||
| 8 | |||
| 9 | def pkg(self, command, expected = 0): | ||
| 10 | command = 'apt-get %s' % command | ||
| 11 | status, output = self.target.run(command, 1500) | ||
| 12 | message = os.linesep.join([command, output]) | ||
| 13 | self.assertEqual(status, expected, message) | ||
| 14 | return output | ||
| 15 | |||
| 16 | class AptRepoTest(AptTest): | ||
| 17 | |||
| 18 | @classmethod | ||
| 19 | def setUpClass(cls): | ||
| 20 | service_repo = os.path.join(cls.tc.td['DEPLOY_DIR_DEB'], 'all') | ||
| 21 | cls.repo_server = HTTPService(service_repo, cls.tc.target.server_ip) | ||
| 22 | cls.repo_server.start() | ||
| 23 | |||
| 24 | @classmethod | ||
| 25 | def tearDownClass(cls): | ||
| 26 | cls.repo_server.stop() | ||
| 27 | |||
| 28 | def setup_source_config_for_package_install(self): | ||
| 29 | apt_get_source_server = 'http://%s:%s/' % (self.tc.target.server_ip, self.repo_server.port) | ||
| 30 | apt_get_sourceslist_dir = '/etc/apt/' | ||
| 31 | self.target.run('cd %s; echo deb %s ./ > sources.list' % (apt_get_sourceslist_dir, apt_get_source_server)) | ||
| 32 | |||
| 33 | def cleanup_source_config_for_package_install(self): | ||
| 34 | apt_get_sourceslist_dir = '/etc/apt/' | ||
| 35 | self.target.run('cd %s; rm sources.list' % (apt_get_sourceslist_dir)) | ||
| 36 | |||
| 37 | @skipIfNotFeature('package-management', | ||
| 38 | 'Test requires package-management to be in IMAGE_FEATURES') | ||
| 39 | @skipIfNotDataVar('IMAGE_PKGTYPE', 'deb', | ||
| 40 | 'DEB is not the primary package manager') | ||
| 41 | @OEHasPackage(['apt']) | ||
| 42 | def test_apt_install_from_repo(self): | ||
| 43 | self.setup_source_config_for_package_install() | ||
| 44 | self.pkg('update') | ||
| 45 | self.pkg('remove --yes run-postinsts-dev') | ||
| 46 | self.pkg('install --yes --allow-unauthenticated run-postinsts-dev') | ||
| 47 | self.cleanup_source_config_for_package_install() | ||
