Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Allow test checks for the shell discover step #3620

Open
lukaszachy opened this issue Mar 24, 2025 · 3 comments · May be fixed by #3643
Open

Allow test checks for the shell discover step #3620

lukaszachy opened this issue Mar 24, 2025 · 3 comments · May be fixed by #3643
Assignees
Labels
area | check Test check implementation plugin | shell The shell discover plugin priority | must high priority, must be included in the next release size | hour Takes up to an hour to implement, test & review step | discover Stuff related to the discover step
Milestone

Comments

@lukaszachy
Copy link
Collaborator

Checks have no effect, for example:

discover:
    how: shell
    tests:
    - test: echo
      name: /
      check:
      - how: avc
@lukaszachy lukaszachy added step | execute Stuff related to the execute step step | discover Stuff related to the discover step area | check Test check implementation and removed step | execute Stuff related to the execute step labels Mar 24, 2025
@psss psss added the plugin | shell The shell discover plugin label Mar 24, 2025
@psss
Copy link
Collaborator

psss commented Mar 24, 2025

I guess this should be relatively easy to implement. Mainly extending the TestDescription class:

class TestDescription(
SpecBasedContainer[dict[str, Any], dict[str, Any]],
tmt.utils.NormalizeKeysMixin,
SerializableContainer,
):

With the check key definition:

tmt/tmt/base.py

Lines 1183 to 1189 in d3497b5

check: list[Check] = field(
default_factory=list,
normalize=tmt.checks.normalize_test_checks,
serialize=lambda checks: [check.to_spec() for check in checks],
unserialize=lambda serialized: [Check.from_spec(**check) for check in serialized],
exporter=lambda value: [check.to_minimal_spec() for check in value],
)

Plus extending the schema.

@psss psss added the size | hour Takes up to an hour to implement, test & review label Mar 24, 2025
@psss
Copy link
Collaborator

psss commented Mar 26, 2025

Prerequisite for the global avc check, blocking users which have tests defined in the discover step. Let's fix this as fast as possible. The proper solution to prevent the duplication to be added to the backlog.

@psss psss added priority | must high priority, must be included in the next release status | backlog Defined, prioritized, we plan to work on it. labels Mar 26, 2025
@happz
Copy link
Collaborator

happz commented Mar 26, 2025

Prerequisite for the global avc check, blocking users which have tests defined in the discover step. Let's fix this as fast as possible. The proper solution to prevent the duplication to be added to the backlog.

#3621

@bajertom bajertom added this to the 1.46 milestone Apr 1, 2025
@psss psss changed the title Allow test checks for discover how:shell Allow test checks for the shell discover step Apr 2, 2025
@psss psss removed the status | backlog Defined, prioritized, we plan to work on it. label Apr 2, 2025
@therazix therazix self-assigned this Apr 2, 2025
@therazix therazix linked a pull request Apr 3, 2025 that will close this issue
8 tasks
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
area | check Test check implementation plugin | shell The shell discover plugin priority | must high priority, must be included in the next release size | hour Takes up to an hour to implement, test & review step | discover Stuff related to the discover step
Projects
None yet
Development

Successfully merging a pull request may close this issue.

5 participants