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

Improve TemplateMatching for SystemTests #3402

Open
hamidonos opened this issue Sep 3, 2024 · 0 comments
Open

Improve TemplateMatching for SystemTests #3402

hamidonos opened this issue Sep 3, 2024 · 0 comments

Comments

@hamidonos
Copy link
Collaborator

hamidonos commented Sep 3, 2024

Situation

Inside the TestTemplateSupport there is a method

        public boolean isMatching() {
            return transformedTemplate.equals(transformedContent);
        }

which is used to assert SecHub reports. This will only work if both strings are exactly the same.

Wanted

A more sophisticated solution which does not depend on the equality of two strings.

Solution

Make the comparison more sophisticated by parsing both strings into the object using object mapper.
Call the equals method on the objects to compare the result.
(Make sure equals is up-to-date)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant