io.qameta.allure.retry.RetryTrendPlugin Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of allure-generator Show documentation
Show all versions of allure-generator Show documentation
Module allure-generator of Allure Framework.
/*
* Copyright 2016-2024 Qameta Software Inc
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package io.qameta.allure.retry;
import com.fasterxml.jackson.core.JsonProcessingException;
import com.fasterxml.jackson.databind.JsonNode;
import com.fasterxml.jackson.databind.ObjectMapper;
import io.qameta.allure.CommonJsonAggregator2;
import io.qameta.allure.Constants;
import io.qameta.allure.core.LaunchResults;
import io.qameta.allure.executor.ExecutorPlugin;
import io.qameta.allure.trend.AbstractTrendPlugin;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.List;
import java.util.Optional;
import java.util.stream.Collectors;
import java.util.stream.Stream;
/**
* Plugin that generates data for Retry-Trend graph.
*/
public class RetryTrendPlugin extends AbstractTrendPlugin {
private static final String JSON_FILE_NAME = "retry-trend.json";
public static final String RETRY_TREND_BLOCK_NAME = "retry-trend";
public RetryTrendPlugin() {
super(Arrays.asList(new JsonAggregator(), new WidgetAggregator()), JSON_FILE_NAME, RETRY_TREND_BLOCK_NAME);
}
@Override
protected Optional parseItem(final ObjectMapper mapper, final JsonNode child)
throws JsonProcessingException {
return Optional.ofNullable(mapper.treeToValue(child, RetryTrendItem.class));
}
@SuppressWarnings("PMD.DefaultPackage")
/* default */ static List getData(final List launchesResults) {
final RetryTrendItem item = createCurrent(launchesResults);
final List data = getHistoryItems(launchesResults);
return Stream.concat(Stream.of(item), data.stream())
.limit(20)
.collect(Collectors.toList());
}
private static List getHistoryItems(final List launchesResults) {
return launchesResults.stream()
.map(RetryTrendPlugin::getPreviousTrendData)
.reduce(new ArrayList<>(), (first, second) -> {
first.addAll(second);
return first;
});
}
private static List getPreviousTrendData(final LaunchResults results) {
return results.getExtra(RETRY_TREND_BLOCK_NAME, ArrayList::new);
}
private static RetryTrendItem createCurrent(final List launchesResults) {
final RetryTrendItem item = new RetryTrendItem();
ExecutorPlugin.getLatestExecutor(launchesResults).ifPresent(info -> {
item.setBuildOrder(info.getBuildOrder());
item.setReportName(info.getReportName());
item.setReportUrl(info.getReportUrl());
});
launchesResults.stream()
.flatMap(launch -> launch.getAllResults().stream())
.forEach(item::update);
return item;
}
/**
* Generates retries trend data.
*/
protected static class JsonAggregator extends CommonJsonAggregator2 {
JsonAggregator() {
super(Constants.HISTORY_DIR, JSON_FILE_NAME);
}
@Override
protected List getData(final List launches) {
return RetryTrendPlugin.getData(launches);
}
}
/**
* Generates widget data.
*/
private static class WidgetAggregator extends CommonJsonAggregator2 {
WidgetAggregator() {
super(Constants.WIDGETS_DIR, JSON_FILE_NAME);
}
@Override
public List getData(final List launches) {
return RetryTrendPlugin.getData(launches);
}
}
}