This repository has been archived by the owner on Apr 14, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 50
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1688 from matthewdunsdon/feature/improveErrorMess…
…ages Improve validation messages identified
- Loading branch information
Showing
68 changed files
with
3,495 additions
and
746 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
87 changes: 87 additions & 0 deletions
87
.../java/com/scottlogic/datahelix/generator/core/builders/GenerationConfigSourceBuilder.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,87 @@ | ||
/* | ||
* Copyright 2019 Scott Logic Ltd | ||
* | ||
* 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 com.scottlogic.datahelix.generator.core.builders; | ||
|
||
import com.scottlogic.datahelix.generator.core.config.detail.CombinationStrategyType; | ||
import com.scottlogic.datahelix.generator.core.config.detail.DataGenerationType; | ||
import com.scottlogic.datahelix.generator.core.config.detail.MonitorType; | ||
import com.scottlogic.datahelix.generator.core.config.detail.VisualiserLevel; | ||
import com.scottlogic.datahelix.generator.core.generation.GenerationConfigSource; | ||
import com.scottlogic.datahelix.generator.core.generation.TestGenerationConfigSource; | ||
|
||
import java.io.File; | ||
import java.nio.file.Path; | ||
|
||
public class GenerationConfigSourceBuilder | ||
{ | ||
private final DataGenerationType generationType; | ||
private final CombinationStrategyType combinationStrategyType; | ||
private final Long maxRows; | ||
private final boolean infiniteOutput; | ||
private final MonitorType monitorType; | ||
private final VisualiserLevel visualiserLevel; | ||
private final Path visualiserOutputFolder; | ||
|
||
private GenerationConfigSourceBuilder(DataGenerationType generationType, | ||
CombinationStrategyType combinationStrategyType, | ||
Long maxRows, | ||
boolean infiniteOutput, | ||
MonitorType monitorType, | ||
VisualiserLevel visualiserLevel, | ||
Path visualiserOutputFolder) | ||
{ | ||
this.generationType = generationType; | ||
this.combinationStrategyType = combinationStrategyType; | ||
this.maxRows = maxRows; | ||
this.infiniteOutput = infiniteOutput; | ||
this.monitorType = monitorType; | ||
this.visualiserLevel = visualiserLevel; | ||
this.visualiserOutputFolder = visualiserOutputFolder; | ||
} | ||
|
||
public GenerationConfigSourceBuilder() | ||
{ | ||
this(DataGenerationType.RANDOM, | ||
CombinationStrategyType.MINIMAL, | ||
null, | ||
false, | ||
MonitorType.QUIET, | ||
VisualiserLevel.OFF, | ||
new File("mockFilePath").toPath()); | ||
} | ||
|
||
public GenerationConfigSource build() | ||
{ | ||
return new TestGenerationConfigSource(generationType, | ||
combinationStrategyType, | ||
maxRows, | ||
infiniteOutput, | ||
monitorType, | ||
visualiserLevel, | ||
visualiserOutputFolder); | ||
} | ||
|
||
public GenerationConfigSourceBuilder withCombinationStrategyType(CombinationStrategyType combinationStrategyType) | ||
{ | ||
return new GenerationConfigSourceBuilder(generationType, | ||
combinationStrategyType, | ||
maxRows, | ||
infiniteOutput, | ||
monitorType, | ||
visualiserLevel, | ||
visualiserOutputFolder); | ||
} | ||
} |
94 changes: 94 additions & 0 deletions
94
...t/java/com/scottlogic/datahelix/generator/core/generation/TestGenerationConfigSource.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,94 @@ | ||
/* | ||
* Copyright 2019 Scott Logic Ltd | ||
* | ||
* 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 com.scottlogic.datahelix.generator.core.generation; | ||
|
||
import com.scottlogic.datahelix.generator.core.config.detail.CombinationStrategyType; | ||
import com.scottlogic.datahelix.generator.core.config.detail.DataGenerationType; | ||
import com.scottlogic.datahelix.generator.core.config.detail.MonitorType; | ||
import com.scottlogic.datahelix.generator.core.config.detail.VisualiserLevel; | ||
|
||
import java.nio.file.Path; | ||
|
||
public class TestGenerationConfigSource implements GenerationConfigSource | ||
{ | ||
|
||
private DataGenerationType generationType; | ||
private CombinationStrategyType combinationStrategyType; | ||
private Long maxRows; | ||
private boolean infiniteOutput; | ||
private MonitorType monitorType; | ||
private VisualiserLevel visualiserLevel; | ||
private Path visualiserOutputFolder; | ||
|
||
public TestGenerationConfigSource(DataGenerationType generationType, | ||
CombinationStrategyType combinationStrategyType, | ||
Long maxRows, | ||
boolean infiniteOutput, | ||
MonitorType monitorType, | ||
VisualiserLevel visualiserLevel, | ||
Path visualiserOutputFolder) | ||
{ | ||
this.generationType = generationType; | ||
this.combinationStrategyType = combinationStrategyType; | ||
this.maxRows = maxRows; | ||
this.infiniteOutput = infiniteOutput; | ||
this.monitorType = monitorType; | ||
this.visualiserLevel = visualiserLevel; | ||
this.visualiserOutputFolder = visualiserOutputFolder; | ||
} | ||
|
||
@Override | ||
public DataGenerationType getGenerationType() | ||
{ | ||
return generationType; | ||
} | ||
|
||
@Override | ||
public CombinationStrategyType getCombinationStrategyType() | ||
{ | ||
return combinationStrategyType; | ||
} | ||
|
||
@Override | ||
public Long getMaxRows() | ||
{ | ||
return maxRows; | ||
} | ||
|
||
@Override | ||
public boolean getInfiniteOutput() | ||
{ | ||
return infiniteOutput; | ||
} | ||
|
||
@Override | ||
public MonitorType getMonitorType() | ||
{ | ||
return monitorType; | ||
} | ||
|
||
@Override | ||
public VisualiserLevel getVisualiserLevel() | ||
{ | ||
return visualiserLevel; | ||
} | ||
|
||
@Override | ||
public Path getVisualiserOutputFolder() | ||
{ | ||
return visualiserOutputFolder; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.