conftest.py 2.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. #!/usr/bin/env python3
  2. # Copyright (c) 2020 Intel Corporation
  3. #
  4. # SPDX-License-Identifier: Apache-2.0
  5. '''Common fixtures for use in testing the twister tool.'''
  6. import os
  7. import sys
  8. import pytest
  9. ZEPHYR_BASE = os.getenv("ZEPHYR_BASE")
  10. sys.path.insert(0, os.path.join(ZEPHYR_BASE, "scripts/pylib/twister"))
  11. from twisterlib import TestSuite, TestInstance
  12. def new_get_toolchain(*args, **kwargs):
  13. return 'zephyr'
  14. TestSuite.get_toolchain = new_get_toolchain
  15. @pytest.fixture(name='test_data')
  16. def _test_data():
  17. """ Pytest fixture to load the test data directory"""
  18. data = ZEPHYR_BASE + "/scripts/tests/twister/test_data/"
  19. return data
  20. @pytest.fixture(name='testcases_dir')
  21. def testcases_directory():
  22. """ Pytest fixture to load the test data directory"""
  23. return ZEPHYR_BASE + "/scripts/tests/twister/test_data/testcases"
  24. @pytest.fixture(name='class_testsuite')
  25. def testsuite_obj(test_data, testcases_dir, tmpdir_factory):
  26. """ Pytest fixture to initialize and return the class TestSuite object"""
  27. board_root = test_data +"board_config/1_level/2_level/"
  28. testcase_root = [testcases_dir + '/tests', testcases_dir + '/samples']
  29. outdir = tmpdir_factory.mktemp("sanity_out_demo")
  30. suite = TestSuite(board_root, testcase_root, outdir)
  31. return suite
  32. @pytest.fixture(name='all_testcases_dict')
  33. def testcases_dict(class_testsuite):
  34. """ Pytest fixture to call add_testcase function of
  35. Testsuite class and return the dictionary of testcases"""
  36. class_testsuite.SAMPLE_FILENAME = 'test_sample_app.yaml'
  37. class_testsuite.TESTCASE_FILENAME = 'test_data.yaml'
  38. class_testsuite.add_testcases()
  39. return class_testsuite.testcases
  40. @pytest.fixture(name='platforms_list')
  41. def all_platforms_list(test_data, class_testsuite):
  42. """ Pytest fixture to call add_configurations function of
  43. Testsuite class and return the Platforms list"""
  44. class_testsuite.board_roots = os.path.abspath(test_data + "board_config")
  45. suite = TestSuite(class_testsuite.board_roots, class_testsuite.roots, class_testsuite.outdir)
  46. suite.add_configurations()
  47. return suite.platforms
  48. @pytest.fixture
  49. def instances_fixture(class_testsuite, platforms_list, all_testcases_dict, tmpdir_factory):
  50. """ Pytest fixture to call add_instances function of Testsuite class
  51. and return the instances dictionary"""
  52. class_testsuite.outdir = tmpdir_factory.mktemp("sanity_out_demo")
  53. class_testsuite.platforms = platforms_list
  54. platform = class_testsuite.get_platform("demo_board_2")
  55. instance_list = []
  56. for _, testcase in all_testcases_dict.items():
  57. instance = TestInstance(testcase, platform, class_testsuite.outdir)
  58. instance_list.append(instance)
  59. class_testsuite.add_instances(instance_list)
  60. return class_testsuite.instances