Skip to content

Commit

Permalink
Merge branch 'ci/add_soc_caps_test' into 'master'
Browse files Browse the repository at this point in the history
ci: add idf-build-apps load soc caps test case

Closes IDFCI-2200

See merge request espressif/esp-idf!31543
  • Loading branch information
hfudev committed Aug 1, 2024
2 parents 5092ff5 + b5bdc1a commit 33b4d64
Show file tree
Hide file tree
Showing 2 changed files with 36 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .gitlab/ci/host-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -385,7 +385,6 @@ test_pytest_macos:
--ignore-result-files ${KNOWN_FAILURE_CASES_FILE_NAME}
--app-info-filepattern \"list_job_*.txt\"


test_idf_pytest_plugin:
extends:
- .host_test_template
Expand All @@ -400,3 +399,8 @@ test_idf_pytest_plugin:
- python -m unittest test_report_generator.py
- cd ${IDF_PATH}/tools/ci/idf_pytest
- pytest --junitxml=${CI_PROJECT_DIR}/XUNIT_RESULT.xml

test_idf_build_apps_load_soc_caps:
extends: .host_test_template
script:
- python tools/ci/check_soc_headers_load_in_idf_build_apps.py
31 changes: 31 additions & 0 deletions tools/ci/check_soc_headers_load_in_idf_build_apps.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
# SPDX-FileCopyrightText: 2024 Espressif Systems (Shanghai) CO LTD
# SPDX-License-Identifier: Apache-2.0
import os.path
import sys
import unittest

from idf_build_apps.constants import PREVIEW_TARGETS as IBA_PREVIEW_TARGETS
from idf_build_apps.constants import SUPPORTED_TARGETS as IBA_SUPPORTED_TARGETS
from idf_build_apps.manifest.soc_header import SOC_HEADERS


class TestLoadSocHeaders(unittest.TestCase):
def test_targets(self) -> None:
sys.path.insert(0, os.path.join(os.path.dirname(__file__), '..'))

from idf_py_actions.constants import PREVIEW_TARGETS, SUPPORTED_TARGETS

self.assertEqual(IBA_PREVIEW_TARGETS, PREVIEW_TARGETS)
self.assertEqual(IBA_SUPPORTED_TARGETS, SUPPORTED_TARGETS)

def test_loaded(self) -> None:
# supported_targets and preview_targets are dynamically loaded from idf
# no need to change them while supporting new targets
for target in [*IBA_SUPPORTED_TARGETS, *IBA_PREVIEW_TARGETS]:
# make at least loaded something
self.assertIn(target, SOC_HEADERS)
self.assertIsNotNone(SOC_HEADERS[target])


if __name__ == '__main__':
unittest.main()

0 comments on commit 33b4d64

Please sign in to comment.