blob: 896fab4dfb4170c601d29ef605e6a4d6f2d89d3b [file] [log] [blame]
Patrick Williamsc124f4f2015-09-15 14:41:29 -05001import unittest
2import os
3import shutil
4from oeqa.oetest import oeSDKTest, skipModule
5from oeqa.utils.decorators import *
6
7def setUpModule():
8 if not oeSDKTest.hasHostPackage("nativesdk-python"):
9 skipModule("No python package in the SDK")
10
11
12class PythonTest(oeSDKTest):
13
14 @classmethod
15 def setUpClass(self):
16 for f in ['test.py']:
17 shutil.copyfile(os.path.join(self.tc.filesdir, f), self.tc.sdktestdir + f)
18
19 def test_python_exists(self):
20 self._run('which python')
21
22 def test_python_stdout(self):
23 output = self._run('python %s/test.py' % self.tc.sdktestdir)
24 self.assertEqual(output.strip(), "the value of a is 0.01", msg="Incorrect output: %s" % output)
25
26 def test_python_testfile(self):
27 self._run('ls /tmp/testfile.python')
28
29 @classmethod
30 def tearDownClass(self):
31 bb.utils.remove("%s/test.py" % self.tc.sdktestdir)
32 bb.utils.remove("/tmp/testfile.python")