diff options
Diffstat (limited to 'meta/lib/oeqa/runtime/cases/perl.py')
| -rw-r--r-- | meta/lib/oeqa/runtime/cases/perl.py | 32 |
1 files changed, 4 insertions, 28 deletions
diff --git a/meta/lib/oeqa/runtime/cases/perl.py b/meta/lib/oeqa/runtime/cases/perl.py index d0b7e8ed92..afeeb180e2 100644 --- a/meta/lib/oeqa/runtime/cases/perl.py +++ b/meta/lib/oeqa/runtime/cases/perl.py | |||
| @@ -1,37 +1,13 @@ | |||
| 1 | import os | 1 | import os |
| 2 | 2 | ||
| 3 | from oeqa.runtime.case import OERuntimeTestCase | 3 | from oeqa.runtime.case import OERuntimeTestCase |
| 4 | from oeqa.core.decorator.depends import OETestDepends | ||
| 5 | from oeqa.core.decorator.oeid import OETestID | 4 | from oeqa.core.decorator.oeid import OETestID |
| 6 | from oeqa.runtime.decorator.package import OEHasPackage | 5 | from oeqa.runtime.decorator.package import OEHasPackage |
| 7 | 6 | ||
| 8 | class PerlTest(OERuntimeTestCase): | 7 | class PerlTest(OERuntimeTestCase): |
| 9 | |||
| 10 | @classmethod | ||
| 11 | def setUpClass(cls): | ||
| 12 | src = os.path.join(cls.tc.files_dir, 'test.pl') | ||
| 13 | dst = '/tmp/test.pl' | ||
| 14 | cls.tc.target.copyTo(src, dst) | ||
| 15 | |||
| 16 | @classmethod | ||
| 17 | def tearDownClass(cls): | ||
| 18 | dst = '/tmp/test.pl' | ||
| 19 | cls.tc.target.run('rm %s' % dst) | ||
| 20 | |||
| 21 | @OETestID(1141) | ||
| 22 | @OETestDepends(['ssh.SSHTest.test_ssh']) | ||
| 23 | @OEHasPackage(['perl']) | ||
| 24 | def test_perl_exists(self): | ||
| 25 | status, output = self.target.run('which perl') | ||
| 26 | msg = 'Perl binary not in PATH or not on target.' | ||
| 27 | self.assertEqual(status, 0, msg=msg) | ||
| 28 | |||
| 29 | @OETestID(208) | 8 | @OETestID(208) |
| 30 | @OETestDepends(['perl.PerlTest.test_perl_exists']) | 9 | @OEHasPackage(['perl']) |
| 31 | def test_perl_works(self): | 10 | def test_perl_works(self): |
| 32 | status, output = self.target.run('perl /tmp/test.pl') | 11 | status, output = self.target.run("perl -e '$_=\"Uryyb, jbeyq\"; tr/a-zA-Z/n-za-mN-ZA-M/;print'") |
| 33 | msg = 'Exit status was not 0. Output: %s' % output | 12 | self.assertEqual(status, 0) |
| 34 | self.assertEqual(status, 0, msg=msg) | 13 | self.assertEqual(output, "Hello, world") |
| 35 | |||
| 36 | msg = 'Incorrect output: %s' % output | ||
| 37 | self.assertEqual(output, "the value of a is 0.01", msg=msg) | ||
