All Downloads are FREE. Search and download functionalities are using the official Maven repository.
Please wait. This can take some minutes ...
Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance.
Project price only 1 $
You can buy this project and download/modify it how often you want.
com.adobe.campaign.tests.integro.phased.permutational.ScenarioStepDependencies Maven / Gradle / Ivy
/*
* MIT License
*
* © Copyright 2020 Adobe. All rights reserved.
*
* Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
package com.adobe.campaign.tests.integro.phased.permutational;
import java.util.*;
import java.util.stream.Collectors;
public class ScenarioStepDependencies {
private Map stepDependencies;
private String scenarioName;
public ScenarioStepDependencies(String in_scenarioName) {
this.setScenarioName(in_scenarioName);
this.setStepDependencies(new HashMap<>());
}
public Map getStepDependencies() {
return stepDependencies;
}
public void setStepDependencies(
Map stepDependencies) {
this.stepDependencies = stepDependencies;
}
public String getScenarioName() {
return scenarioName;
}
public void setScenarioName(String scenarioName) {
this.scenarioName = scenarioName;
}
/**
* This method adds a "produce" dependency entry for a given step
*
* @param stepName The name of the step
* @param in_key The key that is produced
*/
public void putProduce(String stepName, String in_key) {
initializeStep(stepName);
stepDependencies.get(stepName).produce(in_key);
}
/**
* This method adds a "produce" dependency entry for a given step
*
* @param stepName The name of the step
* @param in_key The key that is produced
* @param in_lineNr The line number of the occurence
*/
public void putProduce(String stepName, String in_key, int in_lineNr) {
initializeStep(stepName);
stepDependencies.get(stepName).produce(in_key);
stepDependencies.get(stepName).setStepLine(in_lineNr);
}
/**
* Initializes a step entry when the step is new
*
* @param stepName
*/
private void initializeStep(String stepName) {
int l_lastStep = this.fetchLastStepPosition();
if (!stepDependencies.containsKey(stepName)) {
stepDependencies.put(stepName, new StepDependencies(stepName, l_lastStep+1));
}
}
/**
* This method adds a "consume" dependency entry for a given step
*
* @param stepName The name of the step
* @param in_key The key that is consumed
*/
public void putConsume(String stepName, String in_key) {
initializeStep(stepName);
stepDependencies.get(stepName).consume(in_key);
}
/**
* This method adds a "consume" dependency entry for a given step
*
* @param stepName The name of the step
* @param in_key The key that is consumed
* @param in_lineNr The line number of the occurence
*/
public void putConsume(String stepName, String in_key, int in_lineNr) {
initializeStep(stepName);
stepDependencies.get(stepName).consume(in_key);
stepDependencies.get(stepName).setStepLine(in_lineNr);
}
/**
* Returns a list of step dependencies ordered by line numbers. In this method we only consder the tests
*
* @return A list of dependencies sorted by their line numbers
*/
public List fetchExecutionOrderList() {
List lr_orderedSteps = new ArrayList<>();
lr_orderedSteps.addAll(stepDependencies.values().stream().filter(f -> !f.isConfigMethod()).collect(Collectors.toSet()));
lr_orderedSteps.sort(Comparator.comparing(StepDependencies::getStepLine));
return lr_orderedSteps;
}
/**
* Given a step name it returns the step dependency information related to that step.
*
* @param in_stepName The name of the step
* @return The step dependency information related to that step.
*/
public StepDependencies getStep(String in_stepName) {
return this.stepDependencies.get(in_stepName);
}
/**
* Given a step name, a step is added to the scenario dependencies. This step will have empty produces and consumes.
* If the step exists it is over-written
*
* @param in_stepName The name of the step
*/
public void addStep(String in_stepName) {
initializeStep(in_stepName);
//this.stepDependencies.put(in_stepName, new StepDependencies(in_stepName));
}
/**
* Returns the step with the largest line number
* @return the step with the largest line number. Null if empty
*/
public StepDependencies fetchLastStep() {
if (getStepDependencies().isEmpty()) {
return null;
}
return Collections.max(getStepDependencies().values(),
Comparator.comparing(StepDependencies::getStepLine));
}
/**
* Returns the location of the last step in the file.
* @return the line number of the last step
*/
public int fetchLastStepPosition() {
if (getStepDependencies().isEmpty()) {
return StepDependencies.DEFAULT_LINE_LOCATION;
}
return fetchLastStep().getStepLine();
}
}