summaryrefslogtreecommitdiffstats
path: root/meta/lib/oeqa/runtime/cases/gi.py
blob: 78c7ddda2c11e9e7fd459f297b4928367688a868 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#
# Copyright OpenEmbedded Contributors
#
# SPDX-License-Identifier: MIT
#

import os

from oeqa.runtime.case import OERuntimeTestCase
from oeqa.core.decorator.depends import OETestDepends
from oeqa.runtime.decorator.package import OEHasPackage

class GObjectIntrospectionTest(OERuntimeTestCase):

    @OETestDepends(["ssh.SSHTest.test_ssh"])
    @OEHasPackage(["python3-pygobject"])
    def test_python(self):
        script = """from gi.repository import GLib; print(GLib.markup_escape_text("<testing&testing>"))"""
        status, output = self.target.run("python3 -c '%s'" % script)
        self.assertEqual(status, 0, msg="Python failed (%s)" % (output))
        self.assertEqual(output, "&lt;testing&amp;testing&gt;", msg="Unexpected output (%s)" % output)