StorageHelper.java
package com.soebes.itf.jupiter.extension;
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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.soebes.itf.jupiter.maven.MavenCacheResult;
import com.soebes.itf.jupiter.maven.MavenExecutionResult;
import com.soebes.itf.jupiter.maven.MavenLog;
import com.soebes.itf.jupiter.maven.MavenProjectResult;
import org.junit.jupiter.api.extension.ExtensionContext;
import org.junit.jupiter.api.extension.ExtensionContext.Namespace;
import org.junit.jupiter.api.extension.ExtensionContext.Store;
import java.nio.file.Path;
/**
* @author Karl Heinz Marbaise
*/
final class StorageHelper {
private static final Namespace NAMESPACE_MAVEN_IT = Namespace.create(MavenITExtension.class);
private final Store nameSpace;
private final ExtensionContext context;
StorageHelper(ExtensionContext context) {
this.nameSpace = context.getStore(NAMESPACE_MAVEN_IT);
this.context = context;
}
<V> V get(Storage storage, Class<V> requiredType) {
return nameSpace.get(storage, requiredType);
}
<V> V get(Object key, Class<V> requiredType) {
return nameSpace.get(key, requiredType);
}
void put(Object key, Object value) {
nameSpace.put(key, value);
}
void save(Path targetTestClassesDirectory, Path mavenItTestCaseBaseDirectory, Path targetDirectory) {
StorageHelper sh = new StorageHelper(context);
sh.put(Storage.TARGET_MAVEN_IT_DIRECTORY, targetTestClassesDirectory);
sh.put(Storage.MAVEN_IT_TESTCASE_BASEDIRECTORY, mavenItTestCaseBaseDirectory);
sh.put(Storage.TARGET_DIRECTORY, targetDirectory);
}
void save(MavenExecutionResult result, MavenLog log, MavenCacheResult mavenCacheResult,
MavenProjectResult mavenProjectResult) {
put(ParameterType.ExecutionResult + context.getUniqueId(), result);
put(ParameterType.LogResult + context.getUniqueId(), log);
put(ParameterType.CacheResult + context.getUniqueId(), mavenCacheResult);
put(ParameterType.ProjectResult + context.getUniqueId(), mavenProjectResult);
}
}