#!/usr/bin/env python3 # Copyright (c) 2020 Intel Corporation # # SPDX-License-Identifier: Apache-2.0 '''Common fixtures for use in testing the sanitycheck tool.''' import os import sys import pytest ZEPHYR_BASE = os.getenv("ZEPHYR_BASE") sys.path.insert(0, os.path.join(ZEPHYR_BASE, "scripts/sanity_chk")) from sanitylib import TestSuite @pytest.fixture(name='test_data') def _test_data(): """ Pytest fixture to load the test data directory""" data = ZEPHYR_BASE + "/scripts/tests/sanitycheck/test_data/" return data @pytest.fixture(name='testcases_dir') def testcases_directory(): """ Pytest fixture to load the test data directory""" return ZEPHYR_BASE + "/scripts/tests/sanitycheck/test_data/testcases" @pytest.fixture(name='class_testsuite') def testsuite_obj(test_data, testcases_dir, tmpdir_factory): """ Pytest fixture to initialize and return the class TestSuite object""" board_root = test_data +"board_config/1_level/2_level/" testcase_root = [testcases_dir + '/tests', testcases_dir + '/samples'] outdir = tmpdir_factory.mktemp("sanity_out_demo") suite = TestSuite(board_root, testcase_root, outdir) return suite @pytest.fixture def all_testcases_dict(class_testsuite): """ Pytest fixture to call add_testcase function of Testsuite class and return the testcases in kernel""" class_testsuite.SAMPLE_FILENAME = 'test_sample_app.yaml' class_testsuite.TESTCASE_FILENAME = 'test_data.yaml' class_testsuite.add_testcases() return class_testsuite.testcases @pytest.fixture def platforms_list(test_data, class_testsuite): """ Pytest fixture to call add_configurations function of Testsuite class and return the Platforms list""" class_testsuite.board_roots = os.path.abspath(test_data + "board_config") suite = TestSuite(class_testsuite.board_roots, class_testsuite.roots, class_testsuite.outdir) suite.add_configurations() return suite.platforms