Skip to main content

Parser and converters for OSVVM-specific data models and report formats.

Project description

Sourcecode on GitHub Sourcecode License Documentation Documentation License
PyPI PyPI - Status PyPI - Python Version
GitHub Workflow - Build and Test Status Libraries.io status for latest release Codacy - Quality Codacy - Coverage Codecov - Branch Coverage

Main Goals

This package provides OSVVM-specific data models and parsers. The data models can be used as-is or converted to generic data models of the pyEDAA data model family. This includes parsing OSVVM's *.pro-files and translating them to a pyEDAA.ProjectModel instance as well as reading OSVVM's reports in YAML format like test results, alerts or functional coverage.

Frameworks consuming these data models can build higher level features and services on top of these models, while using one parser that's aligned with OSVVM's data formats.

Data Models

Project Description via *.pro-Files

Features:

  • Parse OSVVM's *.pro files including complex TCL code structures like nested if-statements.
  • Emulate tool specific TCL variables: ::osvvm::ToolVendor, ::osvvm::ToolName ::osvvm::ToolNameVersion, ...
  • Convert the project description stored in one or more *.pro files to a pyEDAA.ProjectModel instance.

Basic Data Model:

  • VHDL source files are accumulated in VHDL libraries.
  • The order of source files is preserved in a library.
  • Test cases are accumulated in test suites.
  • Configuration changes are collected in a context.
    • When a new item is added to the model, certain default values or collected configuration values are used to create this new item.

Quick Example

from pathlib import Path
from pyEDAA.OSVVM.Project.TCL import OsvvmProFileProcessor

processor = OsvvmProFileProcessor()
processor.LoadBuildFile(Path("OSVVM/OSVVMLibraries/OsvvmLibraries.pro"))
processor.LoadBuildFile(Path("OSVVM/OSVVMLibraries/RunAllTests.pro"))

project = processor.Context.ToProject("OsvvmLibraries")
for buildName, build in project.Builds.items():
  for libraryName, lib in build.Libraries.items():
    for file in lib.Files:
      ...

  for testsuiteName, ts in build.Testsuites.items():
    for tc in ts.Testcases.values():
      ...

Testsuite Summary Reports

[!NOTE]
TBD

YAML Report (more details)

from pathlib import Path
from pyEDAA.OSVVM.Build import BuildSummaryDocument

yamlPath = Path("OSVVMLibraries_RunAllTests.yml")
doc = BuildSummaryDocument(yamlPath, analyzeAndConvert=True)

XML Report (Ant+JUnit format - less details)

from pathlib import Path
from pyEDAA.Reports.Unittesting.JUnit import Document as JUnitDocument

junitExampleFile = Path("OSVVMLibraries_RunAllTests.xml")
doc = JUnitDocument(junitExampleFile, analyzeAndConvert=True)

Testcase Summary Reports

[!NOTE]
TBD

Alert and Log Reports

[!NOTE]
TBD

from pathlib import Path
from pyEDAA.OSVVM.AlertLog import Document as AlertLogDocument

path = Path("TbAxi4_BasicReadWrite_alerts.yml")
doc = AlertLogDocument(path, analyzeAndConvert=True)

print(f"{doc.Name}: {doc.AlertCountWarnings}/{doc.AlertCountErrors}/{doc.AlertCountFailures}")
for item in doc:
	print(f"  {item.Name:<19}: {item.AlertCountWarnings}/{item.AlertCountErrors}/{item.AlertCountFailures}")
print(f"Total errors: {doc.TotalErrors}")

Scoreboard Reports

[!NOTE]
TBD

Functional Coverage Reports

[!NOTE]
TBD

Requirement Reports

[!NOTE]
TBD

Use Cases

  • Reading OSVVM's project description from *.pro files.
    • Convert to other data or file format.
  • Reading OSVVM's reports from *.yaml files.
    • Convert to other data or file format.
    • Investigate reports.
    • Merge reports.

Examples

from pathlib import Path
from pyEDAA.OSVVM.Project.TCL import OsvvmProFileProcessor

def main() -> None:
  processor = OsvvmProFileProcessor()

  processor.LoadProFile(Path("OSVVM/OSVVMLibraries/OsvvmLibraries.pro"))
  processor.LoadProFile(Path("OSVVM/OSVVMLibraries/RunAllTests.pro"))

  for libraryName, lib in processor.Context.Libraries.items():
    print(f"Library: {libraryName} ({len(lib.Files)})")
    for file in lib.Files:
      print(f"  {file.Path}")

  print()
  for testsuiteName, ts in processor.Context.Testsuites.items():
    print(f"Testsuite: {testsuiteName} ({len(ts.Testcases)})")
    for tc in ts.Testcases.values():
      print(f"  {tc.Name}")

Consumers

References

Contributors

License

This Python package (source code) is licensed under Apache License 2.0.
The accompanying documentation is licensed under Creative Commons - Attribution 4.0 (CC-BY 4.0).


SPDX-License-Identifier: Apache-2.0

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pyedaa_osvvm-0.8.1.tar.gz (48.9 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

pyedaa_osvvm-0.8.1-py3-none-any.whl (55.2 kB view details)

Uploaded Python 3

File details

Details for the file pyedaa_osvvm-0.8.1.tar.gz.

File metadata

  • Download URL: pyedaa_osvvm-0.8.1.tar.gz
  • Upload date:
  • Size: 48.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.14.6

File hashes

Hashes for pyedaa_osvvm-0.8.1.tar.gz
Algorithm Hash digest
SHA256 ec4c33fe86e69246df9628133bea1d6049de9e6578a19944fc00b5ba0b428c76
MD5 0caf1621bfb78914508a47f1ea365a5b
BLAKE2b-256 944b601848a45385857b379bcdd5366787b3e22f3f6019e697a856d610b4e2ca

See more details on using hashes here.

File details

Details for the file pyedaa_osvvm-0.8.1-py3-none-any.whl.

File metadata

  • Download URL: pyedaa_osvvm-0.8.1-py3-none-any.whl
  • Upload date:
  • Size: 55.2 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.14.6

File hashes

Hashes for pyedaa_osvvm-0.8.1-py3-none-any.whl
Algorithm Hash digest
SHA256 05521c4e5a729a986ee8fb5a84dead03b14a7a70f1ca1c83d5cc4573a962fb1d
MD5 6b74a3e778f79050b06eda6bdd249044
BLAKE2b-256 7cadc4482794a9cf8a69b5594bc3433093c27f57ae0027ebde68b5256636b01a

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page