test_testinstance.py: Add testcases for check_build_or_run() create_overlay() and calculate_sizes() conftest.py: Module for common pytest fixtures test_data/board_config: Adding test data for board configurations Signed-off-by: Spoorthy Priya Yerabolu <spoorthy.priya.yerabolu@intel.com>
52 lines
1.9 KiB
Python
52 lines
1.9 KiB
Python
#!/usr/bin/env python3
|
|
# Copyright (c) 2020 Intel Corporation
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
# pylint: disable=redefined-outer-name
|
|
# pylint: disable=line-too-long
|
|
'''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
|
|
def testcases_dir():
|
|
""" Pytest fixture to load the test data directory"""
|
|
return ZEPHYR_BASE + "/scripts/tests/sanitycheck/test_data/testcases"
|
|
|
|
@pytest.fixture
|
|
def class_testsuite(test_data, testcases_dir):
|
|
""" 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 = test_data +'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
|