From: Lucian Musat Date: Fri, 20 Mar 2015 12:39:36 +0000 (+0200) Subject: oeqa/runtime: Added a new auto rpm test X-Git-Tag: 2015-4~88 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=9d5deedfdae28d0257e84e1980c2cb7fd4e38c45;p=openembedded-core.git oeqa/runtime: Added a new auto rpm test The test tries to query the rpm list with a non-root user Signed-off-by: Lucian Musat Signed-off-by: Richard Purdie --- diff --git a/meta/lib/oeqa/runtime/rpm.py b/meta/lib/oeqa/runtime/rpm.py index b17e8b46a8..0529992cbe 100644 --- a/meta/lib/oeqa/runtime/rpm.py +++ b/meta/lib/oeqa/runtime/rpm.py @@ -47,6 +47,16 @@ class RpmInstallRemoveTest(oeRuntimeTest): (status,output) = self.target.run('rpm -e rpm-doc') self.assertEqual(status, 0, msg="Failed to remove rpm-doc package: %s" % output) + @testcase(1096) + @skipUnlessPassed('test_ssh') + def test_rpm_query_nonroot(self): + (status, output) = self.target.run('useradd test1') + self.assertTrue(status == 0, msg="Failed to create new user") + (status, output) = self.target.run('sudo -u test1 id') + self.assertTrue('(test1)' in output, msg="Failed to execute as new user") + (status, output) = self.target.run('sudo -u test1 rpm -qa') + self.assertEqual(status, 0, msg="status: %s. Cannot run rpm -qa" % status) + @classmethod def tearDownClass(self): oeRuntimeTest.tc.target.run('rm -f /tmp/rpm-doc.rpm')