All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.qameta.allure.environment.Allure1EnvironmentPlugin Maven / Gradle / Ivy

There is a newer version: 2.30.0
Show newest version
package io.qameta.allure.environment;

import io.qameta.allure.CommonJsonAggregator;
import io.qameta.allure.core.LaunchResults;
import io.qameta.allure.entity.EnvironmentItem;

import java.util.HashMap;
import java.util.List;
import java.util.Map;
import java.util.function.Supplier;

import static io.qameta.allure.allure1.Allure1Plugin.ENVIRONMENT_BLOCK_NAME;
import static java.util.stream.Collectors.groupingBy;
import static java.util.stream.Collectors.toList;

/**
 * @author Egor Borisov [email protected]
 */
public class Allure1EnvironmentPlugin extends CommonJsonAggregator {

    public Allure1EnvironmentPlugin() {
        super("widgets", "environment.json");
    }


    protected List getData(final List launches) {
        final List> launchEnvironments = launches.stream()
                .flatMap(launch -> launch.getExtra(ENVIRONMENT_BLOCK_NAME,
                        (Supplier>) HashMap::new).entrySet().stream())
                .collect(toList());

        return launchEnvironments.stream()
                .collect(groupingBy(Map.Entry::getKey, toList()))
                .entrySet().stream().map(Allure1EnvironmentPlugin::aggregateItem).collect(toList());
    }

    private static EnvironmentItem aggregateItem(final Map.Entry>> entry) {
        return new EnvironmentItem()
                .setName(entry.getKey())
                .setValues(entry.getValue().stream().map(Map.Entry::getValue).collect(toList()));
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy