summaryrefslogtreecommitdiffstats
path: root/meta/lib/oeqa/sdk/testmetaidesupport.py
blob: 00ef30e82e96565fa1f4f0c278cd4a6354c6a3d2 (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
#
# Copyright OpenEmbedded Contributors
#
# SPDX-License-Identifier: MIT
#

class TestSDK(object):
    def run(self, d):
        import json
        import logging
        from oeqa.sdk.context import OESDKTestContext, OESDKTestContextExecutor
        from oeqa.utils import make_logger_bitbake_compatible

        pn = d.getVar("PN")

        logger = make_logger_bitbake_compatible(logging.getLogger("BitBake"))

        sdk_dir = d.expand("${WORKDIR}/testsdk/")
        bb.utils.remove(sdk_dir, True)
        bb.utils.mkdirhier(sdk_dir)

        sdk_envs = OESDKTestContextExecutor._get_sdk_environs(d.getVar("DEPLOY_DIR_IMAGE"))
        tdname = d.expand("${DEPLOY_DIR_IMAGE}/${PN}.testdata.json")
        test_data = json.load(open(tdname, "r"))

        host_pkg_manifest = {"cmake-native":"", "gcc-cross":"", "gettext-native":"", "meson-native":"", "perl-native":"", "python3-core-native":"", }
        target_pkg_manifest = {"gtk+3":""}

        for s in sdk_envs:
            bb.plain("meta-ide-support based SDK testing environment: %s" % s)

            sdk_env = sdk_envs[s]

            tc = OESDKTestContext(td=test_data, logger=logger, sdk_dir=sdk_dir,
                sdk_env=sdk_env, target_pkg_manifest=target_pkg_manifest,
                host_pkg_manifest=host_pkg_manifest)

            tc.loadTests(OESDKTestContextExecutor.default_cases)

            results = tc.runTests()
            if results:
                results.logSummary(pn)

            if (not results) or (not results.wasSuccessful()):
                bb.fatal('%s - FAILED' % (pn,), forcelog=True)