com.regnosys.testing.transform.TransformExpectationUtil Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of rosetta-testing Show documentation
Show all versions of rosetta-testing Show documentation
Rune Testing is a java library that is utilised by Rosetta Code Generators and models expressed in the Rosetta DSL.
package com.regnosys.testing.transform;
/*-
* ===============
* Rune Testing
* ===============
* Copyright (C) 2022 - 2024 REGnosys
* ===============
* 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.
* ===============
*/
import com.fasterxml.jackson.core.JsonProcessingException;
import com.fasterxml.jackson.databind.ObjectMapper;
import com.fasterxml.jackson.databind.ObjectWriter;
import com.google.common.collect.Multimap;
import com.regnosys.rosetta.common.serialisation.RosettaObjectMapper;
import com.regnosys.rosetta.common.transform.TestPackModel;
import com.regnosys.rosetta.common.transform.TestPackModel.SampleModel;
import com.regnosys.testing.TestingExpectationUtil;
import com.regnosys.testing.reports.ObjectMapperGenerator;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import java.net.URL;
import java.nio.file.Files;
import java.nio.file.Path;
import java.util.Collection;
import java.util.Comparator;
import java.util.List;
import java.util.stream.Collectors;
import static com.regnosys.rosetta.common.transform.TestPackUtils.findPaths;
import static com.regnosys.rosetta.common.transform.TestPackUtils.readFile;
public class TransformExpectationUtil {
private static final Logger LOGGER = LoggerFactory.getLogger(TransformExpectationUtil.class);
private final static ObjectWriter CONFIG_WRITER =
ObjectMapperGenerator.createWriterMapper().writerWithDefaultPrettyPrinter();
public static void writeExpectations(Multimap actualExpectation, Path testPackConfigPath) throws JsonProcessingException {
if (!TestingExpectationUtil.WRITE_EXPECTATIONS) {
LOGGER.info("WRITE_EXPECTATIONS is set to false, not updating expectations.");
return;
}
for (var entry : actualExpectation.asMap().entrySet()) {
String testPackId = entry.getKey();
TestPackModel model = getTestPackModel(testPackId, TransformExpectationUtil.class.getClassLoader(), testPackConfigPath);
Collection transformTestResults = entry.getValue();
List sampleModelList = transformTestResults.stream()
.map(TransformTestResult::getSampleModel)
.sorted(Comparator.comparing(SampleModel::getId))
.collect(Collectors.toList());
TestPackModel testPackModel = new TestPackModel(model.getId(), model.getPipelineId(), model.getName(), sampleModelList);
String configFileContent = CONFIG_WRITER.writeValueAsString(testPackModel);
// Add environment variable TEST_WRITE_BASE_PATH to override the base write path, e.g.
// TEST_WRITE_BASE_PATH=/repo-location/src/main/resources/
TestingExpectationUtil.TEST_WRITE_BASE_PATH
.filter(Files::exists)
.ifPresent(writeBasePath -> {
// 1. write new test pack config file
Path configFileWritePath = writeBasePath.resolve(testPackConfigPath).resolve(testPackModel.getId() + ".json");
TestingExpectationUtil.writeFile(configFileWritePath, configFileContent, TestingExpectationUtil.CREATE_EXPECTATION_FILES);
// 2. write new output json/xml
transformTestResults.stream()
.forEach(r -> TestingExpectationUtil.writeFile(writeBasePath.resolve(r.getSampleModel().getOutputPath()), r.getOutput(), TestingExpectationUtil.CREATE_EXPECTATION_FILES));
});
}
}
private static TestPackModel getTestPackModel(String testPackId, ClassLoader classLoader, Path resourcePath) {
List testPackUrls = findPaths(resourcePath, classLoader, "test-pack-.*\\.json");
ObjectMapper mapper = RosettaObjectMapper.getNewRosettaObjectMapper();
return testPackUrls.stream()
.map(url -> readFile(url, mapper, TestPackModel.class))
.filter(testPackModel -> testPackModel.getId() != null)
.filter(testPackModel -> testPackModel.getId().equals(testPackId))
.findFirst()
.orElseThrow();
}
}