test_twister.py 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. #!/usr/bin/env python3
  2. # Copyright (c) 2020 Intel Corporation
  3. #
  4. # SPDX-License-Identifier: Apache-2.0
  5. """
  6. This test file contains foundational testcases for Twister tool
  7. """
  8. import os
  9. import sys
  10. import pytest
  11. ZEPHYR_BASE = os.getenv("ZEPHYR_BASE")
  12. sys.path.insert(0, os.path.join(ZEPHYR_BASE, "scripts/pylib/twister"))
  13. import scl
  14. from twisterlib import TwisterConfigParser
  15. def test_yamlload():
  16. """ Test to check if loading the non-existent files raises the errors """
  17. filename = 'testcase_nc.yaml'
  18. with pytest.raises(FileNotFoundError):
  19. scl.yaml_load(filename)
  20. @pytest.mark.parametrize("filename, schema",
  21. [("testcase_correct_schema.yaml", "testcase-schema.yaml"),
  22. ("platform_correct_schema.yaml", "platform-schema.yaml")])
  23. def test_correct_schema(filename, schema, test_data):
  24. """ Test to validate the testcase schema"""
  25. filename = test_data + filename
  26. schema = scl.yaml_load(ZEPHYR_BASE +'/scripts/schemas/twister//' + schema)
  27. data = TwisterConfigParser(filename, schema)
  28. data.load()
  29. assert data
  30. @pytest.mark.parametrize("filename, schema",
  31. [("testcase_incorrect_schema.yaml", "testcase-schema.yaml"),
  32. ("platform_incorrect_schema.yaml", "platform-schema.yaml")])
  33. def test_incorrect_schema(filename, schema, test_data):
  34. """ Test to validate the exception is raised for incorrect testcase schema"""
  35. filename = test_data + filename
  36. schema = scl.yaml_load(ZEPHYR_BASE +'/scripts/schemas/twister//' + schema)
  37. with pytest.raises(Exception) as exception:
  38. scl.yaml_load_verify(filename, schema)
  39. assert str(exception.value) == "Schema validation failed"