Skip to content
New issue

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

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

Already on GitHub? # to your account

[SUREFIRE-2249] - Update doc for parameter 'properties' to include JUnit #750

Closed
wants to merge 1 commit into from

Conversation

bdemers
Copy link
Member

@bdemers bdemers commented Jun 18, 2024

The Surefire and Failsafe 'properties' field works with JUnit and TestNG

Following this checklist to help us incorporate your
contribution quickly and easily:

  • Make sure there is a JIRA issue filed
    for the change (usually before you start working on it). Trivial changes like typos do not
    require a JIRA issue. Your pull request should address just this issue, without
    pulling in other changes.
  • Each commit in the pull request should have a meaningful subject line and body.
  • Format the pull request title like [SUREFIRE-XXX] - Fixes bug in ApproximateQuantiles,
    where you replace SUREFIRE-XXX with the appropriate JIRA issue. Best practice
    is to use the JIRA issue title in the pull request title and in the first line of the
    commit message.
  • Write a pull request description that is detailed enough to understand what the pull request does, how, and why.
  • Run mvn clean install to make sure basic checks pass. A more thorough check will
    be performed on your pull request automatically.
  • You have run the integration tests successfully (mvn -Prun-its clean install).

If your pull request is about ~20 lines of code you don't need to sign an
Individual Contributor License Agreement if you are unsure
please ask on the developers list.

To make clear that you license your contribution under
the Apache License Version 2.0, January 2004
you have to acknowledge this by using the following check-box.

@bdemers bdemers changed the title [SUREFIRE-2249] Update doc for parameter 'properties' to include JUnit [SUREFIRE-2249] - Update doc for parameter 'properties' to include JUnit Jun 18, 2024
@bdemers
Copy link
Member Author

bdemers commented Jun 18, 2024

Proposed doc:

image

@bdemers
Copy link
Member Author

bdemers commented Jun 18, 2024

Open question, does anyone know the history of this property, why are the formats different?

@michael-o
Copy link
Member

Open question, does anyone know the history of this property, why are the formats different?

I must admit that I am confused as well...

@michael-o
Copy link
Member

Darn, looking at AbstractSurefireMojo there is zero indication, but looking at JUnitPlatformProvider you are totally right.

@michael-o
Copy link
Member

It simply does not make sense to me to wrap properties into properties:

    private Map<String, String> newConfigurationParameters() {
        String content = parameters.getProviderProperties().get(CONFIGURATION_PARAMETERS);
        if (content == null) {
            return emptyMap();
        }
        try (StringReader reader = new StringReader(content)) {
            Map<String, String> result = new HashMap<>();
            Properties props = new Properties();
            props.load(reader);
            props.stringPropertyNames().forEach(key -> result.put(key, props.getProperty(key)));
            return result;
        } catch (IOException e) {
            throw new UncheckedIOException("Error reading " + CONFIGURATION_PARAMETERS, e);
        }
    }

The Surefire and Failsafe 'properties' field works with JUnit and TestNG

This closes #750
@asfgit asfgit closed this in d626ced Jun 26, 2024
@michael-o michael-o deleted the SUREFIRE-2249-bdemers branch June 26, 2024 21:23
@michael-o
Copy link
Member

Thanks @bdemers, I took the liberty to apply some improvements and merge it right away.

@michael-o
Copy link
Member

Final result:
grafik

asfgit pushed a commit that referenced this pull request Jun 27, 2024
The Surefire and Failsafe 'properties' field works with JUnit and TestNG

This closes #750
# for free to join this conversation on GitHub. Already have an account? # to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants