aboutsummaryrefslogtreecommitdiffstats
path: root/lib/oeqa/runtime/cases/mono.py
blob: f5aaedef95bcc752229366298b88bac5786b3c72 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
import os

from oeqa.runtime.case import OERuntimeTestCase
from oeqa.core.decorator.depends import OETestDepends
from oeqa.core.decorator.oeid import OETestID
from oeqa.core.decorator.data import skipIfNotFeature
from oeqa.oetest import oeRuntimeTest, skipModule

class MonoCompileTest(OERuntimeTestCase):

    @classmethod
    def setUpClass(cls):

        files_dir = os.path.abspath(os.path.join(os.path.dirname(os.path.abspath(__file__)), "../files"))

        dst = '/tmp/'
        src = os.path.join(files_dir, 'helloworld.cs')
        cls.tc.target.copyTo(src, dst)
        src = os.path.join(files_dir, 'helloworldform.cs')
        cls.tc.target.copyTo(src, dst)
        src = os.path.join(files_dir, 'helloworldgtk.cs')
        cls.tc.target.copyTo(src, dst)

    @classmethod
    def tearDownClass(cls):
        files = '/tmp/helloworld.cs /tmp/helloworld.exe /tmp/helloworldform.cs /tmp/helloworldform.exe /tmp/helloworldgtk.cs /tmp/helloworldgtk.exe'
        cls.tc.target.run('rm %s' % files)

    @OETestDepends(['ssh.SSHTest.test_ssh'])
    def test_executable_compile_and_run_cmdline(self):
        status, output = self.target.run('mcs /tmp/helloworld.cs -out:/tmp/helloworld.exe')
        msg = 'mcs compile failed, output: %s' % output
        self.assertEqual(status, 0, msg=msg)
        status, output = self.target.run('mono /tmp/helloworld.exe')
        msg = 'running compiled file failed, output: %s' % output
        self.assertEqual(status, 0, msg=msg)
        self.assertEqual(output, 'HelloWorld', msg=msg)

    @OETestDepends(['ssh.SSHTest.test_ssh'])
    def test_executable_compile_and_run_winform(self):
#        if not oeRuntimeTest.hasFeature("x11"):
#          skipModule("No x11 feature in image")
        status, output = self.target.run('mcs /tmp/helloworldform.cs -out:/tmp/helloworldform.exe -r:System.Windows.Forms -r:System.Data -r:System.Drawing')
        msg = 'mcs compile failed, output: %s' % output
        self.assertEqual(status, 0, msg=msg)
        status, output = self.target.run('export DISPLAY=:0; mono /tmp/helloworldform.exe')
        msg = 'running compiled file failed, output: %s' % output
        self.assertEqual(status, 0, msg=msg)

    @OETestDepends(['ssh.SSHTest.test_ssh'])
    def test_executable_compile_and_run_gtk(self):
#        if not oeRuntimeTest.hasPackage("gtk-sharp"):
#          skipModule("No gtk-sharp package in image")
        status, output = self.target.run('mcs /tmp/helloworldgtk.cs -out:/tmp/helloworldgtk.exe -r:System.Windows.Forms -r:System.Data -r:System.Drawing -lib:/usr/lib/mono/gtk-sharp-2.0 -r:gtk-sharp -r:glib-sharp -r:atk-sharp')
        msg = 'mcs compile failed, output: %s' % output
        self.assertEqual(status, 0, msg=msg)
        status, output = self.target.run('export DISPLAY=:0; mono /tmp/helloworldgtk.exe')
        msg = 'running compiled file failed, output: %s' % output
        self.assertEqual(status, 0, msg=msg)