#21 Umsetzung der API Rückgabe, erste version

This commit is contained in:
Andreas Penski (init) 2019-05-17 11:21:22 +02:00 committed by Andreas Penski
parent a424fbbcfe
commit ab31ed71b1
21 changed files with 532 additions and 147 deletions

View file

@ -50,7 +50,7 @@
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<version.jacoco>0.8.3</version.jacoco> <version.jacoco>0.8.3</version.jacoco>
<version.lombok>1.18.6</version.lombok> <version.lombok>1.18.6</version.lombok>
<version.saxon-he>9.9.1-1</version.saxon-he> <version.saxon-he>9.9.1-3</version.saxon-he>
<version.slf4j>1.7.25</version.slf4j> <version.slf4j>1.7.25</version.slf4j>
<docker.host>localhost</docker.host> <docker.host>localhost</docker.host>
</properties> </properties>

View file

@ -0,0 +1,21 @@
package de.kosit.validationtool.api;
/**
* Status der Empfehlung.
*/
public enum AcceptRecommendation {
/**
* Nicht definiert, weil eine Evaluierung nicht durchgeführt wurde, oder nicht durchgeführt werden konnte.
*/
UNDEFINED,
/**
* Das Dokument ist gemäß Konfiguration valide und kann akzeptiert werden.
*/
ACCEPTABLE,
/**
* Das Dokuemnt ist gemäß Konfiguration invalide und sollte NICHT akzeptiert werden.
*/
REJECT
}

View file

@ -24,9 +24,6 @@ import java.util.stream.Collectors;
import org.w3c.dom.Document; import org.w3c.dom.Document;
import net.sf.saxon.dom.NodeOverNodeInfo;
import net.sf.saxon.s9api.XdmNode;
/** /**
* Zentrale Schnittstellendefinition für das Prüf-Tool. * Zentrale Schnittstellendefinition für das Prüf-Tool.
@ -42,10 +39,10 @@ public interface Check {
* @param input die Resource / XML-Datei, die geprüft werden soll. * @param input die Resource / XML-Datei, die geprüft werden soll.
* @return ein Ergebnis-{@link Document} (readonly) * @return ein Ergebnis-{@link Document} (readonly)
*/ */
default Document check(Input input) { default Document check(final Input input) {
final XdmNode node = checkInput(input); final Result result = checkInput(input);
// readonly view of the document!!! // readonly view of the document!!!
return (Document) NodeOverNodeInfo.wrap(node.getUnderlyingNode()); return result.getReportDocument();
} }
/** /**
@ -54,7 +51,7 @@ public interface Check {
* @param input die Resource / XML-Datei, die geprüft werden soll. * @param input die Resource / XML-Datei, die geprüft werden soll.
* @return ein Ergebnis-{@link Document} * @return ein Ergebnis-{@link Document}
*/ */
XdmNode checkInput(Input input); Result checkInput(Input input);
/** /**
* Führt eine Prüfung im Batch-Mode durch. Die Default-Implementierung führt die Prüfung sequentiell aus. Die Ergebnis * Führt eine Prüfung im Batch-Mode durch. Die Default-Implementierung führt die Prüfung sequentiell aus. Die Ergebnis
@ -63,7 +60,7 @@ public interface Check {
* @param input die Eingabe * @param input die Eingabe
* @return Liste mit Ergebnis-Dokumenten (readonly) * @return Liste mit Ergebnis-Dokumenten (readonly)
*/ */
default List<Document> check(List<Input> input) { default List<Document> check(final List<Input> input) {
return input.stream().map(this::check).collect(Collectors.toList()); return input.stream().map(this::check).collect(Collectors.toList());
} }
@ -73,8 +70,9 @@ public interface Check {
* @param input die Eingabe * @param input die Eingabe
* @return Liste mit Ergebnis-Dokumenten * @return Liste mit Ergebnis-Dokumenten
*/ */
default List<XdmNode> checkInput(List<Input> input) { default List<Result> checkInput(final List<Input> input) {
return input.stream().map(this::checkInput).collect(Collectors.toList()); return input.stream().map(this::checkInput).collect(Collectors.toList());
} }
} }

View file

@ -0,0 +1,44 @@
package de.kosit.validationtool.api;
import org.w3c.dom.Document;
import lombok.Getter;
import lombok.RequiredArgsConstructor;
import net.sf.saxon.dom.NodeOverNodeInfo;
import net.sf.saxon.s9api.XdmNode;
/**
* API Rückgabe Objekt des Ergebnisses des Validierungsprozesses.
*
* @author Andreas Penski
*/
@Getter
@RequiredArgsConstructor
public class Result {
/** Der generierte Report. */
private final XdmNode report;
/** Das evaluierte Ergebnis. */
private final AcceptRecommendation acceptRecommendation;
/**
* Gibt den Report als W3C-{@link Document} zurück.
*
* @return der Report
*/
public Document getReportDocument() {
return (Document) NodeOverNodeInfo.wrap(getReport().getUnderlyingNode());
}
/**
* Schnellzugriff auf die Empfehlung zur Weiterverarbeitung des Dokuments.
*
* @return true wenn {@link AcceptRecommendation#ACCEPTABLE}
*/
public boolean isAcceptable() {
return AcceptRecommendation.ACCEPTABLE.equals(acceptRecommendation);
}
}

View file

@ -28,6 +28,7 @@ import java.util.ArrayList;
import java.util.Arrays; import java.util.Arrays;
import java.util.Collection; import java.util.Collection;
import java.util.Collections; import java.util.Collections;
import java.util.List;
import java.util.stream.Collectors; import java.util.stream.Collectors;
import org.apache.commons.cli.CommandLine; import org.apache.commons.cli.CommandLine;
@ -45,6 +46,7 @@ import lombok.extern.slf4j.Slf4j;
import de.kosit.validationtool.api.CheckConfiguration; import de.kosit.validationtool.api.CheckConfiguration;
import de.kosit.validationtool.api.Input; import de.kosit.validationtool.api.Input;
import de.kosit.validationtool.api.InputFactory; import de.kosit.validationtool.api.InputFactory;
import de.kosit.validationtool.api.Result;
import de.kosit.validationtool.cmd.assertions.Assertions; import de.kosit.validationtool.cmd.assertions.Assertions;
import de.kosit.validationtool.impl.ConversionService; import de.kosit.validationtool.impl.ConversionService;
import de.kosit.validationtool.impl.ObjectFactory; import de.kosit.validationtool.impl.ObjectFactory;
@ -101,7 +103,7 @@ public class CommandLineApplication {
* *
* @param args die Eingabe-Argumente * @param args die Eingabe-Argumente
*/ */
public static void main(String[] args) { public static void main(final String[] args) {
final int resultStatus = mainProgram(args); final int resultStatus = mainProgram(args);
if (DAEMON_SIGNAL != resultStatus) { if (DAEMON_SIGNAL != resultStatus) {
System.exit(resultStatus); System.exit(resultStatus);
@ -114,14 +116,14 @@ public class CommandLineApplication {
* *
* @param args die Eingabe-Argumente * @param args die Eingabe-Argumente
*/ */
static int mainProgram(String[] args) { static int mainProgram(final String[] args) {
int returnValue = 0; int returnValue = 0;
Options options = createOptions(); final Options options = createOptions();
if (isHelpRequested(args)) { if (isHelpRequested(args)) {
printHelp(options); printHelp(options);
} else { } else {
try { try {
CommandLineParser parser = new DefaultParser(); final CommandLineParser parser = new DefaultParser();
final CommandLine cmd = parser.parse(options, args); final CommandLine cmd = parser.parse(options, args);
if (cmd.hasOption(SERVER.getOpt())) { if (cmd.hasOption(SERVER.getOpt())) {
returnValue = startDaemonMode(cmd); returnValue = startDaemonMode(cmd);
@ -130,7 +132,7 @@ public class CommandLineApplication {
} else { } else {
returnValue = processActions(cmd); returnValue = processActions(cmd);
} }
} catch (ParseException e) { } catch (final ParseException e) {
log.error("Error processing command line arguments: " + e.getMessage()); log.error("Error processing command line arguments: " + e.getMessage());
printHelp(options); printHelp(options);
} }
@ -138,7 +140,7 @@ public class CommandLineApplication {
return returnValue; return returnValue;
} }
private static int determinePort(CommandLine cmd) { private static int determinePort(final CommandLine cmd) {
int port = 8080; int port = 8080;
if (checkOptionWithValue(PORT, cmd)) { if (checkOptionWithValue(PORT, cmd)) {
port = Integer.parseInt(cmd.getOptionValue(PORT.getOpt())); port = Integer.parseInt(cmd.getOptionValue(PORT.getOpt()));
@ -146,7 +148,7 @@ public class CommandLineApplication {
return port; return port;
} }
private static int determineThreads(CommandLine cmd) { private static int determineThreads(final CommandLine cmd) {
int threads = Runtime.getRuntime().availableProcessors(); int threads = Runtime.getRuntime().availableProcessors();
if (checkOptionWithValue(WORKER_COUNT, cmd)) { if (checkOptionWithValue(WORKER_COUNT, cmd)) {
threads = Integer.parseInt(cmd.getOptionValue(WORKER_COUNT.getOpt())); threads = Integer.parseInt(cmd.getOptionValue(WORKER_COUNT.getOpt()));
@ -154,7 +156,7 @@ public class CommandLineApplication {
return threads; return threads;
} }
private static String determineHost(CommandLine cmd) { private static String determineHost(final CommandLine cmd) {
String host = "localhost"; String host = "localhost";
if (checkOptionWithValue(HOST, cmd)) { if (checkOptionWithValue(HOST, cmd)) {
host = cmd.getOptionValue(HOST.getOpt()); host = cmd.getOptionValue(HOST.getOpt());
@ -162,15 +164,15 @@ public class CommandLineApplication {
return host; return host;
} }
private static int startDaemonMode(CommandLine cmd) { private static int startDaemonMode(final CommandLine cmd) {
Option[] unavailable = new Option[]{PRINT, CHECK_ASSERTIONS, DEBUG, OUTPUT, EXTRACT_HTML}; final Option[] unavailable = new Option[]{PRINT, CHECK_ASSERTIONS, DEBUG, OUTPUT, EXTRACT_HTML};
warnUnusedOptions(cmd, unavailable, true); warnUnusedOptions(cmd, unavailable, true);
Daemon validDaemon = new Daemon(determineDefinition(cmd), determineRepository(cmd), determineHost(cmd), determinePort(cmd), determineThreads(cmd)); final Daemon validDaemon = new Daemon(determineDefinition(cmd), determineRepository(cmd), determineHost(cmd), determinePort(cmd), determineThreads(cmd));
validDaemon.startServer(); validDaemon.startServer();
return DAEMON_SIGNAL; return DAEMON_SIGNAL;
} }
private static void warnUnusedOptions(CommandLine cmd, Option[] unavailable, boolean daemon) { private static void warnUnusedOptions(final CommandLine cmd, final Option[] unavailable, final boolean daemon) {
Arrays.stream(cmd.getOptions()).filter(o -> ArrayUtils.contains(unavailable, o)).map(o -> "The option " + o.getLongOpt() + " is not available in daemon mode").forEach(log::error); Arrays.stream(cmd.getOptions()).filter(o -> ArrayUtils.contains(unavailable, o)).map(o -> "The option " + o.getLongOpt() + " is not available in daemon mode").forEach(log::error);
if (daemon && !cmd.getArgList().isEmpty()) { if (daemon && !cmd.getArgList().isEmpty()) {
log.info("Ignoring test targets in daemon mode"); log.info("Ignoring test targets in daemon mode");
@ -178,30 +180,30 @@ public class CommandLineApplication {
} }
private static boolean isHelpRequested(String[] args) { private static boolean isHelpRequested(final String[] args) {
Options helpOptions = createHelpOptions(); final Options helpOptions = createHelpOptions();
try { try {
CommandLineParser parser = new DefaultParser(); final CommandLineParser parser = new DefaultParser();
CommandLine cmd = parser.parse(helpOptions, args, true); final CommandLine cmd = parser.parse(helpOptions, args, true);
if (cmd.hasOption(HELP.getOpt()) || args.length == 0) { if (cmd.hasOption(HELP.getOpt()) || args.length == 0) {
return true; return true;
} }
} catch (ParseException e) { } catch (final ParseException e) {
// we can ignore that, we just look for the help parameters // we can ignore that, we just look for the help parameters
} }
return false; return false;
} }
private static int processActions(CommandLine cmd) { private static int processActions(final CommandLine cmd) {
try { try {
long start = System.currentTimeMillis(); long start = System.currentTimeMillis();
Option[] unavailable = new Option[]{HOST, PORT, WORKER_COUNT}; final Option[] unavailable = new Option[]{HOST, PORT, WORKER_COUNT};
warnUnusedOptions(cmd, unavailable, false); warnUnusedOptions(cmd, unavailable, false);
CheckConfiguration d = new CheckConfiguration(determineDefinition(cmd)); final CheckConfiguration d = new CheckConfiguration(determineDefinition(cmd));
d.setScenarioRepository(determineRepository(cmd)); d.setScenarioRepository(determineRepository(cmd));
InternalCheck check = new InternalCheck(d); final InternalCheck check = new InternalCheck(d);
Path outputDirectory = determineOutputDirectory(cmd); final Path outputDirectory = determineOutputDirectory(cmd);
if (cmd.hasOption(EXTRACT_HTML.getOpt())) { if (cmd.hasOption(EXTRACT_HTML.getOpt())) {
check.getCheckSteps().add(new ExtractHtmlContentAction(check.getContentRepository(), outputDirectory)); check.getCheckSteps().add(new ExtractHtmlContentAction(check.getContentRepository(), outputDirectory));
@ -212,7 +214,7 @@ public class CommandLineApplication {
} }
if (cmd.hasOption(CHECK_ASSERTIONS.getOpt())) { if (cmd.hasOption(CHECK_ASSERTIONS.getOpt())) {
Assertions assertions = loadAssertions(cmd.getOptionValue(CHECK_ASSERTIONS.getOpt())); final Assertions assertions = loadAssertions(cmd.getOptionValue(CHECK_ASSERTIONS.getOpt()));
check.getCheckSteps().add(new CheckAssertionAction(assertions, ObjectFactory.createProcessor())); check.getCheckSteps().add(new CheckAssertionAction(assertions, ObjectFactory.createProcessor()));
} }
if (cmd.hasOption(PRINT_MEM_STATS.getOpt())) { if (cmd.hasOption(PRINT_MEM_STATS.getOpt())) {
@ -222,16 +224,17 @@ public class CommandLineApplication {
log.info("Setup completed in {}ms\n", System.currentTimeMillis() - start); log.info("Setup completed in {}ms\n", System.currentTimeMillis() - start);
final Collection<Path> targets = determineTestTargets(cmd); final Collection<Path> targets = determineTestTargets(cmd);
final List<Result> results = new ArrayList<>();
start = System.currentTimeMillis(); start = System.currentTimeMillis();
for (Path p : targets) { for (final Path p : targets) {
final Input input = InputFactory.read(p); final Input input = InputFactory.read(p);
check.checkInput(input); results.add(check.checkInput(input));
} }
boolean result = check.printAndEvaluate(); final boolean result = check.printAndEvaluate();
log.info("Processing {} object(s) completed in {}ms", targets.size(), System.currentTimeMillis() - start); log.info("Processing {} object(s) completed in {}ms", targets.size(), System.currentTimeMillis() - start);
return result ? 0 : 1; return result ? 0 : 1;
} catch (Exception e) { } catch (final Exception e) {
if (cmd.hasOption(DEBUG.getOpt())) { if (cmd.hasOption(DEBUG.getOpt())) {
log.error(e.getMessage(), e); log.error(e.getMessage(), e);
} else { } else {
@ -241,20 +244,20 @@ public class CommandLineApplication {
} }
} }
private static Assertions loadAssertions(String optionValue) { private static Assertions loadAssertions(final String optionValue) {
Path p = Paths.get(optionValue); final Path p = Paths.get(optionValue);
Assertions a = null; Assertions a = null;
if (Files.exists(p)) { if (Files.exists(p)) {
ConversionService c = new ConversionService(); final ConversionService c = new ConversionService();
c.initialize(de.kosit.validationtool.cmd.assertions.ObjectFactory.class.getPackage()); c.initialize(de.kosit.validationtool.cmd.assertions.ObjectFactory.class.getPackage());
a = c.readXml(p.toUri(), Assertions.class); a = c.readXml(p.toUri(), Assertions.class);
} }
return a; return a;
} }
private static Path determineOutputDirectory(CommandLine cmd) { private static Path determineOutputDirectory(final CommandLine cmd) {
final String value = cmd.getOptionValue(OUTPUT.getOpt()); final String value = cmd.getOptionValue(OUTPUT.getOpt());
Path fir; final Path fir;
if (StringUtils.isNotBlank(value)) { if (StringUtils.isNotBlank(value)) {
fir = Paths.get(value); fir = Paths.get(value);
if ((!Files.exists(fir) && !fir.toFile().mkdirs()) || !Files.isDirectory(fir)) { if ((!Files.exists(fir) && !fir.toFile().mkdirs()) || !Files.isDirectory(fir)) {
@ -266,8 +269,8 @@ public class CommandLineApplication {
return fir; return fir;
} }
private static Collection<Path> determineTestTargets(CommandLine cmd) { private static Collection<Path> determineTestTargets(final CommandLine cmd) {
Collection<Path> targets = new ArrayList<>(); final Collection<Path> targets = new ArrayList<>();
if (!cmd.getArgList().isEmpty()) { if (!cmd.getArgList().isEmpty()) {
cmd.getArgList().forEach(e -> targets.addAll(determineTestTarget(e))); cmd.getArgList().forEach(e -> targets.addAll(determineTestTarget(e)));
} }
@ -277,8 +280,8 @@ public class CommandLineApplication {
return targets; return targets;
} }
private static Collection<Path> determineTestTarget(String s) { private static Collection<Path> determineTestTarget(final String s) {
Path d = Paths.get(s); final Path d = Paths.get(s);
if (Files.isDirectory(d)) { if (Files.isDirectory(d)) {
return listDirectoryTargets(d); return listDirectoryTargets(d);
} else if (Files.exists(d)) { } else if (Files.exists(d)) {
@ -289,18 +292,18 @@ public class CommandLineApplication {
} }
private static Collection<Path> listDirectoryTargets(Path d) { private static Collection<Path> listDirectoryTargets(final Path d) {
try { try {
return Files.list(d).filter(path -> path.toString().endsWith(".xml")).collect(Collectors.toList()); return Files.list(d).filter(path -> path.toString().endsWith(".xml")).collect(Collectors.toList());
} catch (IOException e) { } catch (final IOException e) {
throw new IllegalStateException("IOException while list directory content. Can not determine test targets.", e); throw new IllegalStateException("IOException while list directory content. Can not determine test targets.", e);
} }
} }
private static URI determineRepository(CommandLine cmd) { private static URI determineRepository(final CommandLine cmd) {
if (checkOptionWithValue(REPOSITORY, cmd)) { if (checkOptionWithValue(REPOSITORY, cmd)) {
Path d = Paths.get(cmd.getOptionValue(REPOSITORY.getOpt())); final Path d = Paths.get(cmd.getOptionValue(REPOSITORY.getOpt()));
if (Files.isDirectory(d)) { if (Files.isDirectory(d)) {
return d.toUri(); return d.toUri();
} else { } else {
@ -311,9 +314,9 @@ public class CommandLineApplication {
return null; return null;
} }
private static URI determineDefinition(CommandLine cmd) { private static URI determineDefinition(final CommandLine cmd) {
checkOptionWithValue(SCENARIOS, cmd); checkOptionWithValue(SCENARIOS, cmd);
Path f = Paths.get(cmd.getOptionValue(SCENARIOS.getOpt())); final Path f = Paths.get(cmd.getOptionValue(SCENARIOS.getOpt()));
if (Files.isRegularFile(f)) { if (Files.isRegularFile(f)) {
return f.toAbsolutePath().toUri(); return f.toAbsolutePath().toUri();
} else { } else {
@ -322,10 +325,10 @@ public class CommandLineApplication {
} }
} }
private static boolean checkOptionWithValue(Option option, CommandLine cmd) { private static boolean checkOptionWithValue(final Option option, final CommandLine cmd) {
String opt = option.getOpt(); final String opt = option.getOpt();
if (cmd.hasOption(opt)) { if (cmd.hasOption(opt)) {
String value = cmd.getOptionValue(opt); final String value = cmd.getOptionValue(opt);
if (StringUtils.isNoneBlank(value)) { if (StringUtils.isNoneBlank(value)) {
return true; return true;
} else { } else {
@ -338,20 +341,20 @@ public class CommandLineApplication {
return false; return false;
} }
private static void printHelp(Options options) { private static void printHelp(final Options options) {
// automatically generate the help statement // automatically generate the help statement
HelpFormatter formatter = new HelpFormatter(); final HelpFormatter formatter = new HelpFormatter();
formatter.printHelp("check-tool -s <scenario-config-file> [OPTIONS] [FILE]... ", options, false); formatter.printHelp("check-tool -s <scenario-config-file> [OPTIONS] [FILE]... ", options, false);
} }
private static Options createHelpOptions() { private static Options createHelpOptions() {
Options options = new Options(); final Options options = new Options();
options.addOption(HELP); options.addOption(HELP);
return options; return options;
} }
private static Options createOptions() { private static Options createOptions() {
Options options = new Options(); final Options options = new Options();
options.addOption(HELP); options.addOption(HELP);
options.addOption(SERVER); options.addOption(SERVER);
options.addOption(HOST); options.addOption(HOST);

View file

@ -23,11 +23,10 @@ import lombok.extern.slf4j.Slf4j;
import de.kosit.validationtool.api.CheckConfiguration; import de.kosit.validationtool.api.CheckConfiguration;
import de.kosit.validationtool.api.Input; import de.kosit.validationtool.api.Input;
import de.kosit.validationtool.api.Result;
import de.kosit.validationtool.impl.DefaultCheck; import de.kosit.validationtool.impl.DefaultCheck;
import de.kosit.validationtool.impl.tasks.CheckAction; import de.kosit.validationtool.impl.tasks.CheckAction;
import net.sf.saxon.s9api.XdmNode;
/** /**
* Simple Erweiterung der Klasse {@link DefaultCheck} um das Ergebnis der Assertion-Prüfung auszwerten und auszugeben. * Simple Erweiterung der Klasse {@link DefaultCheck} um das Ergebnis der Assertion-Prüfung auszwerten und auszugeben.
* Diese Klasse stellt keine fachlicher Erweiterung des eigentlichen Prüfvorganges dar! * Diese Klasse stellt keine fachlicher Erweiterung des eigentlichen Prüfvorganges dar!
@ -46,7 +45,7 @@ class InternalCheck extends DefaultCheck {
* *
* @param configuration die Konfiguration * @param configuration die Konfiguration
*/ */
InternalCheck(CheckConfiguration configuration) { InternalCheck(final CheckConfiguration configuration) {
super(configuration); super(configuration);
} }
@ -56,23 +55,26 @@ class InternalCheck extends DefaultCheck {
* @param input die Prüflinge * @param input die Prüflinge
* @return false wenn es Assertion-Fehler gibt, sonst true * @return false wenn es Assertion-Fehler gibt, sonst true
*/ */
public XdmNode checkInput(Input input) { @Override
CheckAction.Bag bag = new CheckAction.Bag(input, createReport()); public Result checkInput(final Input input) {
XdmNode result = runCheckInternal(bag); final CheckAction.Bag bag = new CheckAction.Bag(input, createReport());
final Result result = runCheckInternal(bag);
if (bag.getAssertionResult() != null) { if (bag.getAssertionResult() != null) {
checkAssertions += bag.getAssertionResult().getObject(); this.checkAssertions += bag.getAssertionResult().getObject();
failedAssertions += bag.getAssertionResult().getErrors().size(); this.failedAssertions += bag.getAssertionResult().getErrors().size();
} }
return result; return result;
} }
boolean printAndEvaluate() { boolean printAndEvaluate() {
if (failedAssertions > 0) { if (this.failedAssertions > 0) {
log.error("Assertion check failed.\n\nAssertions run: {}, Assertions failed: {}\n", checkAssertions, failedAssertions); log.error("Assertion check failed.\n\nAssertions run: {}, Assertions failed: {}\n", this.checkAssertions,
} else if (checkAssertions > 0) { this.failedAssertions);
log.info("Assertion check successful.\n\nAssertions run: {}, Assertions failed: {}\n", checkAssertions, failedAssertions); } else if (this.checkAssertions > 0) {
log.info("Assertion check successful.\n\nAssertions run: {}, Assertions failed: {}\n", this.checkAssertions,
this.failedAssertions);
} }
return failedAssertions == 0; return this.failedAssertions == 0;
} }
} }

View file

@ -28,7 +28,9 @@ import lombok.extern.slf4j.Slf4j;
import de.kosit.validationtool.api.Check; import de.kosit.validationtool.api.Check;
import de.kosit.validationtool.api.CheckConfiguration; import de.kosit.validationtool.api.CheckConfiguration;
import de.kosit.validationtool.api.Input; import de.kosit.validationtool.api.Input;
import de.kosit.validationtool.api.Result;
import de.kosit.validationtool.impl.tasks.CheckAction; import de.kosit.validationtool.impl.tasks.CheckAction;
import de.kosit.validationtool.impl.tasks.ComputeAcceptanceAction;
import de.kosit.validationtool.impl.tasks.CreateReportAction; import de.kosit.validationtool.impl.tasks.CreateReportAction;
import de.kosit.validationtool.impl.tasks.DocumentParseAction; import de.kosit.validationtool.impl.tasks.DocumentParseAction;
import de.kosit.validationtool.impl.tasks.ScenarioSelectionAction; import de.kosit.validationtool.impl.tasks.ScenarioSelectionAction;
@ -41,7 +43,6 @@ import de.kosit.validationtool.model.reportInput.EngineType;
import de.kosit.validationtool.model.reportInput.ProcessingError; import de.kosit.validationtool.model.reportInput.ProcessingError;
import net.sf.saxon.s9api.Processor; import net.sf.saxon.s9api.Processor;
import net.sf.saxon.s9api.XdmNode;
/** /**
* Die Referenz-Implementierung für den Prüfprozess. Nach initialer Konfiguration ist diese Klasse threadsafe und kann * Die Referenz-Implementierung für den Prüfprozess. Nach initialer Konfiguration ist diese Klasse threadsafe und kann
@ -64,7 +65,6 @@ public class DefaultCheck implements Check {
private final ConversionService conversionService; private final ConversionService conversionService;
@Getter @Getter
private final List<CheckAction> checkSteps; private final List<CheckAction> checkSteps;
@ -88,6 +88,7 @@ public class DefaultCheck implements Check {
this.checkSteps.add(new ValidateReportInputAction(this.conversionService, this.contentRepository.getReportInputSchema())); this.checkSteps.add(new ValidateReportInputAction(this.conversionService, this.contentRepository.getReportInputSchema()));
this.checkSteps this.checkSteps
.add(new CreateReportAction(processor, this.conversionService, this.repository, configuration.getScenarioRepository())); .add(new CreateReportAction(processor, this.conversionService, this.repository, configuration.getScenarioRepository()));
this.checkSteps.add(new ComputeAcceptanceAction());
} }
protected static CreateReportInput createReport() { protected static CreateReportInput createReport() {
@ -101,12 +102,12 @@ public class DefaultCheck implements Check {
} }
@Override @Override
public XdmNode checkInput(final Input input) { public Result checkInput(final Input input) {
final CheckAction.Bag t = new CheckAction.Bag(input, createReport()); final CheckAction.Bag t = new CheckAction.Bag(input, createReport());
return runCheckInternal(t); return runCheckInternal(t);
} }
protected XdmNode runCheckInternal(final CheckAction.Bag t) { protected Result runCheckInternal(final CheckAction.Bag t) {
final long started = System.currentTimeMillis(); final long started = System.currentTimeMillis();
log.info("Checking content of {}", t.getInput().getName()); log.info("Checking content of {}", t.getInput().getName());
for (final CheckAction action : this.checkSteps) { for (final CheckAction action : this.checkSteps) {
@ -124,10 +125,10 @@ public class DefaultCheck implements Check {
} }
t.setFinished(true); t.setFinished(true);
log.info("Finished check of {} in {}ms\n", t.getInput().getName(), System.currentTimeMillis() - started); log.info("Finished check of {} in {}ms\n", t.getInput().getName(), System.currentTimeMillis() - started);
return t.getReport(); return new Result(t.getReport(), t.getAcceptStatus());
} }
private static boolean createDocumentIdentification(final CheckAction.Bag transporter) { private static void createDocumentIdentification(final CheckAction.Bag transporter) {
final DocumentIdentificationType i = new DocumentIdentificationType(); final DocumentIdentificationType i = new DocumentIdentificationType();
final DocumentIdentificationType.DocumentHash h = new DocumentIdentificationType.DocumentHash(); final DocumentIdentificationType.DocumentHash h = new DocumentIdentificationType.DocumentHash();
h.setHashAlgorithm(transporter.getInput().getDigestAlgorithm()); h.setHashAlgorithm(transporter.getInput().getDigestAlgorithm());
@ -135,6 +136,5 @@ public class DefaultCheck implements Check {
i.setDocumentHash(h); i.setDocumentHash(h);
i.setDocumentReference(transporter.getInput().getName()); i.setDocumentReference(transporter.getInput().getName());
transporter.getReportInput().setDocumentIdentification(i); transporter.getReportInput().setDocumentIdentification(i);
return true;
} }
} }

View file

@ -36,7 +36,11 @@ import lombok.Setter;
import de.kosit.validationtool.impl.ContentRepository; import de.kosit.validationtool.impl.ContentRepository;
import de.kosit.validationtool.impl.ScenarioRepository; import de.kosit.validationtool.impl.ScenarioRepository;
import de.kosit.validationtool.model.scenarios.*; import de.kosit.validationtool.model.scenarios.CreateReportType;
import de.kosit.validationtool.model.scenarios.NamespaceType;
import de.kosit.validationtool.model.scenarios.ResourceType;
import de.kosit.validationtool.model.scenarios.ValidateWithSchematron;
import de.kosit.validationtool.model.scenarios.ValidateWithXmlSchema;
import net.sf.saxon.s9api.XPathExecutable; import net.sf.saxon.s9api.XPathExecutable;
import net.sf.saxon.s9api.XPathSelector; import net.sf.saxon.s9api.XPathSelector;
@ -50,50 +54,63 @@ import net.sf.saxon.s9api.XsltExecutable;
*/ */
public abstract class BaseScenario { public abstract class BaseScenario {
private XPathExecutable xPathExecutable; /**
* Laufzeitinformationen über eine Transformation.
*/
@Getter
@Setter
@AllArgsConstructor
public class Transformation {
private XsltExecutable executable;
private ResourceType resourceType;
}
private XPathExecutable matchExecutable;
private XPathExecutable acceptExecutable;
private Schema schema; private Schema schema;
private List<Transformation> schematronValidations; private List<Transformation> schematronValidations;
private ContentRepository repository; private ContentRepository repository;
private Transformation reportTransformation; private Transformation reportTransformation;
/** /**
* Gibt eine Transformation zurück. * Gibt eine Transformation zurück.
*
* @return initialisierte Transformation * @return initialisierte Transformation
*/ */
public Transformation getReportTransformation() { public Transformation getReportTransformation() {
if (reportTransformation == null) { if (this.reportTransformation == null) {
final ResourceType resource = getCreateReport().getResource(); final ResourceType resource = getCreateReport().getResource();
final XsltExecutable executable = repository.loadXsltScript(URI.create(resource.getLocation())); final XsltExecutable executable = this.repository.loadXsltScript(URI.create(resource.getLocation()));
reportTransformation = new Transformation(executable, resource); this.reportTransformation = new Transformation(executable, resource);
} }
return reportTransformation; return this.reportTransformation;
} }
/** /**
* Lieferrt das Schema zu diesem Szenario. * Lieferrt das Schema zu diesem Szenario.
*
* @return das passende Schema * @return das passende Schema
*/ */
public Schema getSchema() { public Schema getSchema() {
if (schema == null) { if (this.schema == null) {
final List<String> schemaResources = getValidateWithXmlSchema().getResource().stream().map(ResourceType::getLocation) final List<String> schemaResources = getValidateWithXmlSchema().getResource().stream().map(ResourceType::getLocation)
.collect(Collectors.toList()); .collect(Collectors.toList());
schema = repository.createSchema(schemaResources); this.schema = this.repository.createSchema(schemaResources);
} }
return schema; return this.schema;
} }
/** /**
* Initialisiert das Szenario auf Basis eines [@link ContentRepository} * Initialisiert das Szenario auf Basis eines [@link ContentRepository}
*
* @param repository das Repository mit den Szenario-Artefakten * @param repository das Repository mit den Szenario-Artefakten
* @param lazy optionales lazy loading der XML-Artefakte * @param lazy optionales lazy loading der XML-Artefakte
* @return true wenn erfolgreich * @return true wenn erfolgreich
*/ */
public boolean initialize(ContentRepository repository, boolean lazy) { public boolean initialize(final ContentRepository repository, final boolean lazy) {
this.repository = repository; this.repository = repository;
if (!lazy) { if (!lazy) {
getSchema(); getSchema();
@ -106,20 +123,21 @@ public abstract class BaseScenario {
/** /**
* Liefer eine Liste mit Schematron Validierungs-Transformationen * Liefer eine Liste mit Schematron Validierungs-Transformationen
*
* @return liste mit initialisierten Transformationsinformationen * @return liste mit initialisierten Transformationsinformationen
*/ */
public List<Transformation> getSchematronValidations() { public List<Transformation> getSchematronValidations() {
if (schematronValidations == null) { if (this.schematronValidations == null) {
schematronValidations = new ArrayList<>(); this.schematronValidations = new ArrayList<>();
getValidateWithSchematron().forEach(v -> { getValidateWithSchematron().forEach(v -> {
if (v.isPsvi()) { if (v.isPsvi()) {
throw new NotImplementedException("This implemenation does not support PSVI usage"); throw new NotImplementedException("This implemenation does not support PSVI usage");
} }
final XsltExecutable xsltExecutable = repository.loadXsltScript(URI.create(v.getResource().getLocation())); final XsltExecutable xsltExecutable = this.repository.loadXsltScript(URI.create(v.getResource().getLocation()));
schematronValidations.add(new Transformation(xsltExecutable, v.getResource())); this.schematronValidations.add(new Transformation(xsltExecutable, v.getResource()));
}); });
} }
return schematronValidations; return this.schematronValidations;
} }
/** /**
@ -129,11 +147,28 @@ public abstract class BaseScenario {
* @see {@link ScenarioRepository#selectScenario(Document)}. * @see {@link ScenarioRepository#selectScenario(Document)}.
*/ */
public XPathSelector getSelector() { public XPathSelector getSelector() {
if (xPathExecutable == null) { if (this.matchExecutable == null) {
final Map<String, String> namespaces = getNamespace().stream().collect(Collectors.toMap(NamespaceType::getPrefix, NamespaceType::getValue)); this.matchExecutable = this.repository.createXPath(getMatch(), prepareNamespaces());
xPathExecutable = repository.createXPath(getMatch(), namespaces);
} }
return xPathExecutable.load(); return this.matchExecutable.load();
}
/**
* Liefert einen neuen XPath-Selector zur Evaluierung der {@link de.kosit.validationtool.api.AcceptRecommendation}.
*
* @return neuer Selector
*/
public XPathSelector getAcceptSelector() {
if (this.acceptExecutable == null) {
System.out.println(getAcceptMatch());
System.out.println(prepareNamespaces());
this.acceptExecutable = this.repository.createXPath(getAcceptMatch(), prepareNamespaces());
}
return this.acceptExecutable.load();
}
private Map<String, String> prepareNamespaces() {
return getNamespace().stream().collect(Collectors.toMap(NamespaceType::getPrefix, NamespaceType::getValue));
} }
/** /**
@ -143,6 +178,8 @@ public abstract class BaseScenario {
*/ */
public abstract String getMatch(); public abstract String getMatch();
public abstract String getAcceptMatch();
/** /**
* Getter aus dem schema. * Getter aus dem schema.
* *
@ -171,17 +208,4 @@ public abstract class BaseScenario {
*/ */
public abstract CreateReportType getCreateReport(); public abstract CreateReportType getCreateReport();
/**
* Laufzeitinformationen über eine Transformation.
*/
@Getter
@Setter
@AllArgsConstructor
public class Transformation {
private XsltExecutable executable;
private ResourceType resourceType;
}
} }

View file

@ -25,6 +25,7 @@ import java.util.regex.Pattern;
import lombok.Getter; import lombok.Getter;
import lombok.Setter; import lombok.Setter;
import de.kosit.validationtool.api.AcceptRecommendation;
import de.kosit.validationtool.api.Input; import de.kosit.validationtool.api.Input;
import de.kosit.validationtool.impl.model.Result; import de.kosit.validationtool.impl.model.Result;
import de.kosit.validationtool.model.reportInput.CreateReportInput; import de.kosit.validationtool.model.reportInput.CreateReportInput;
@ -43,25 +44,6 @@ import net.sf.saxon.s9api.XdmNode;
@FunctionalInterface @FunctionalInterface
public interface CheckAction { public interface CheckAction {
/**
* Ausfürhung des Prüfschrittes und Erweiterung der gesammelten Informationen.
*
* @param results die Informationssammlung
*/
void check(Bag results);
/**
* Ermittlung, ob ein Schritt u.U. ausgelassen werden kann. Die Funktion wird vor der eigentlichen Prüfaktion aufgerufen
* und kann somit eine Ausführung des Prüfschrittes verhindern. Entwickler können diese Funktion überschreiben, um den
* Prüfschritt bedingt auszuführen.
*
* @param results die bisher gesammelten Information
* @return <tt>true</tt> wenn der Schritt ausgelassen werden soll
*/
default boolean isSkipped(Bag results) {
return false;
}
/** /**
* Transport-Klasse für Eingabe und Ausgabe-Objekte für die einzelnen Prüfschritte. * Transport-Klasse für Eingabe und Ausgabe-Objekte für die einzelnen Prüfschritte.
*/ */
@ -80,6 +62,8 @@ public interface CheckAction {
private boolean stopped; private boolean stopped;
private AcceptRecommendation acceptStatus = AcceptRecommendation.UNDEFINED;
/** Das zu prüfende Dokument */ /** Das zu prüfende Dokument */
private Input input; private Input input;
@ -89,15 +73,16 @@ public interface CheckAction {
private Result<Boolean, XMLSyntaxError> schemaValidationResult; private Result<Boolean, XMLSyntaxError> schemaValidationResult;
public Bag(Input input) { public Bag(final Input input) {
this(input, new CreateReportInput()); this(input, new CreateReportInput());
} }
public Bag(Input input, CreateReportInput reportInput) { public Bag(final Input input, final CreateReportInput reportInput) {
this.input = input; this.input = input;
this.reportInput = reportInput; this.reportInput = reportInput;
} }
/** /**
* Signalisiert einen vorzeitigen Stop der Vearbeitung. * Signalisiert einen vorzeitigen Stop der Vearbeitung.
*/ */
@ -107,7 +92,7 @@ public interface CheckAction {
/** /**
* Gibt den Namen des Prüflings zurück, dabei werden etwaige Pfadinformationen abgeschnitten. * Gibt den Namen des Prüflings zurück, dabei werden etwaige Pfadinformationen abgeschnitten.
* *
* @return der Name des Prüflings * @return der Name des Prüflings
*/ */
public String getName() { public String getName() {
@ -119,4 +104,24 @@ public interface CheckAction {
return fileName; return fileName;
} }
} }
/**
* Ausfürhung des Prüfschrittes und Erweiterung der gesammelten Informationen.
*
* @param results die Informationssammlung
*/
void check(Bag results);
/**
* Ermittlung, ob ein Schritt u.U. ausgelassen werden kann. Die Funktion wird vor der eigentlichen Prüfaktion aufgerufen
* und kann somit eine Ausführung des Prüfschrittes verhindern. Entwickler können diese Funktion überschreiben, um den
* Prüfschritt bedingt auszuführen.
*
* @param results die bisher gesammelten Information
* @return <tt>true</tt> wenn der Schritt ausgelassen werden soll
*/
default boolean isSkipped(final Bag results) {
return false;
}
} }

View file

@ -0,0 +1,42 @@
package de.kosit.validationtool.impl.tasks;
import static org.apache.commons.lang3.StringUtils.isNotBlank;
import lombok.RequiredArgsConstructor;
import lombok.extern.slf4j.Slf4j;
import de.kosit.validationtool.api.AcceptRecommendation;
import net.sf.saxon.s9api.XPathSelector;
/**
* Berechnet die Akzeptanz-Empfehlung gemäß konfigurierten 'acceptMatch' des aktuellen Szenarios.
*
* @author Andreas Penski
*/
@RequiredArgsConstructor
@Slf4j
public class ComputeAcceptanceAction implements CheckAction {
@Override
public void check(final Bag results) {
final String acceptMatch = results.getScenarioSelectionResult().getObject().getAcceptMatch();
if (isNotBlank(acceptMatch)) {
try {
final XPathSelector selector = results.getScenarioSelectionResult().getObject().getAcceptSelector();
selector.setContextItem(results.getReport());
results.setAcceptStatus(selector.effectiveBooleanValue() ? AcceptRecommendation.ACCEPTABLE : AcceptRecommendation.REJECT);
} catch (final Exception e) {
log.error("Fehler bei Evaluierung des Accept-Status: {}", e.getMessage(), e);
}
}
}
@Override
public boolean isSkipped(final Bag results) {
return results.getScenarioSelectionResult().isInvalid();
}
}

View file

@ -20,7 +20,8 @@
<!-- $Id$ --> <!-- $Id$ -->
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:s="http://www.xoev.de/de/validator/framework/1/scenarios" <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:s="http://www.xoev.de/de/validator/framework/1/scenarios"
targetNamespace="http://www.xoev.de/de/validator/framework/1/scenarios" version="1.0.0" elementFormDefault="qualified" attributeFormDefault="unqualified"> targetNamespace="http://www.xoev.de/de/validator/framework/1/scenarios" version="1.1.0" elementFormDefault="qualified"
attributeFormDefault="unqualified">
<xs:element name="scenarios"> <xs:element name="scenarios">
<xs:complexType> <xs:complexType>
@ -86,6 +87,8 @@
<xs:element name="validateWithXmlSchema" type="s:ValidateWithXmlSchema"/> <xs:element name="validateWithXmlSchema" type="s:ValidateWithXmlSchema"/>
<xs:element name="validateWithSchematron" maxOccurs="unbounded" minOccurs="0" type="s:ValidateWithSchematron"/> <xs:element name="validateWithSchematron" maxOccurs="unbounded" minOccurs="0" type="s:ValidateWithSchematron"/>
<xs:element name="createReport" type="s:CreateReportType"/> <xs:element name="createReport" type="s:CreateReportType"/>
<!-- Optional da nachträglich eingeführt -->
<xs:element name="acceptMatch" type="xs:string" minOccurs="0" />
</xs:sequence> </xs:sequence>
</xs:complexType> </xs:complexType>

View file

@ -33,17 +33,17 @@ import org.junit.Before;
import org.junit.Test; import org.junit.Test;
import org.w3c.dom.Document; import org.w3c.dom.Document;
import de.kosit.validationtool.api.AcceptRecommendation;
import de.kosit.validationtool.api.CheckConfiguration; import de.kosit.validationtool.api.CheckConfiguration;
import de.kosit.validationtool.api.Input; import de.kosit.validationtool.api.Input;
import de.kosit.validationtool.api.Result;
import net.sf.saxon.s9api.XdmNode;
/** /**
* Test das Check-Interface * Test das Check-Interface
* *
* @author Andreas Penski * @author Andreas Penski
*/ */
public class DefaultCheckTest { public class DefaultCheckTest extends CheckTest {
private static final URL SCENARIO_DEFINITION = ScenarioRepositoryTest.class.getResource("/examples/UBLReady/scenarios-2.xml"); private static final URL SCENARIO_DEFINITION = ScenarioRepositoryTest.class.getResource("/examples/UBLReady/scenarios-2.xml");
@ -62,27 +62,30 @@ public class DefaultCheckTest {
} }
@Test @Test
public void testHappyCase() throws Exception { public void testHappyCase() {
final XdmNode doc = this.implementation.checkInput(read(VALID_EXAMPLE)); final Result doc = this.implementation.checkInput(read(VALID_EXAMPLE));
assertThat(doc).isNotNull(); assertThat(doc).isNotNull();
assertThat(doc.getReport()).isNotNull();
assertThat(doc.isAcceptable()).isFalse();
assertThat(doc.getAcceptRecommendation()).isEqualTo(AcceptRecommendation.UNDEFINED);
} }
@Test @Test
public void testHappyCaseDocument() throws Exception { public void testHappyCaseDocument() {
final Document doc = this.implementation.check(read(VALID_EXAMPLE)); final Document doc = this.implementation.check(read(VALID_EXAMPLE));
assertThat(doc).isNotNull(); assertThat(doc).isNotNull();
} }
@Test @Test
public void testMultipleCase() throws Exception { public void testMultipleCase() {
final List<Input> input = IntStream.range(0, MULTI_COUNT).mapToObj(i -> read(VALID_EXAMPLE)).collect(Collectors.toList()); final List<Input> input = IntStream.range(0, MULTI_COUNT).mapToObj(i -> read(VALID_EXAMPLE)).collect(Collectors.toList());
final List<XdmNode> docs = this.implementation.checkInput(input); final List<Result> docs = this.implementation.checkInput(input);
assertThat(docs).isNotNull(); assertThat(docs).isNotNull();
assertThat(docs).hasSize(MULTI_COUNT); assertThat(docs).hasSize(MULTI_COUNT);
} }
@Test @Test
public void testMultipleCaseDocument() throws Exception { public void testMultipleCaseDocument() {
final List<Input> input = IntStream.range(0, MULTI_COUNT).mapToObj(i -> read(VALID_EXAMPLE)).collect(Collectors.toList()); final List<Input> input = IntStream.range(0, MULTI_COUNT).mapToObj(i -> read(VALID_EXAMPLE)).collect(Collectors.toList());
final List<Document> docs = this.implementation.check(input); final List<Document> docs = this.implementation.check(input);
assertThat(docs).isNotNull(); assertThat(docs).isNotNull();

View file

@ -39,6 +39,23 @@ import net.sf.saxon.s9api.XdmNode;
*/ */
public class Helper { public class Helper {
public static class Simple {
public static final URI ROOT = EXAMPLES_DIR.resolve("simple/");
public static final URI SIMPLE_VALID = Simple.ROOT.resolve("input/simple.xml");
public static final URI FOO = Simple.ROOT.resolve("input/foo.xml");
public static final URI SCENARIOS = ROOT.resolve("scenarios.xml");
public static final URI REPOSITORY = ROOT.resolve("repository/");
public static final URI INVALID = ROOT.resolve("input/simple-invalid.xml");
public static final URI UNKNOWN = ROOT.resolve("input/unknown.xml");
}
public static final URI SOURCE_ROOT = Paths.get("src/main/resources").toUri(); public static final URI SOURCE_ROOT = Paths.get("src/main/resources").toUri();
public static final URI MODEL_ROOT = Paths.get("src/main/model").toUri(); public static final URI MODEL_ROOT = Paths.get("src/main/model").toUri();

View file

@ -0,0 +1,60 @@
package de.kosit.validationtool.impl;
import static org.assertj.core.api.Assertions.assertThat;
import java.net.MalformedURLException;
import java.net.URISyntaxException;
import org.junit.Before;
import org.junit.Test;
import de.kosit.validationtool.api.AcceptRecommendation;
import de.kosit.validationtool.api.CheckConfiguration;
import de.kosit.validationtool.api.InputFactory;
import de.kosit.validationtool.api.Result;
import de.kosit.validationtool.impl.Helper.Simple;
/**
* Prüft die Funktionen des Validator auf Basis eines reduzierten Szenarios.
*
* @author Andreas Penski
*/
public class SimpleScenarioCheck {
private DefaultCheck implementation;
@Before
public void setup() throws URISyntaxException {
final CheckConfiguration d = new CheckConfiguration(Simple.SCENARIOS);
d.setScenarioRepository(Simple.REPOSITORY);
this.implementation = new DefaultCheck(d);
}
@Test
public void testSimple() throws MalformedURLException {
final Result result = this.implementation.checkInput(InputFactory.read(Simple.SIMPLE_VALID.toURL()));
assertThat(result).isNotNull();
assertThat(result.getAcceptRecommendation()).isEqualTo(AcceptRecommendation.ACCEPTABLE);
}
@Test
public void testInvalid() throws MalformedURLException {
final Result result = this.implementation.checkInput(InputFactory.read(Simple.INVALID.toURL()));
assertThat(result).isNotNull();
assertThat(result.getAcceptRecommendation()).isEqualTo(AcceptRecommendation.REJECT);
}
@Test
public void testUnknown() throws MalformedURLException {
final Result result = this.implementation.checkInput(InputFactory.read(Simple.UNKNOWN.toURL()));
assertThat(result).isNotNull();
assertThat(result.getAcceptRecommendation()).isEqualTo(AcceptRecommendation.UNDEFINED);
}
@Test
public void testWithoutAcceptMatch() throws MalformedURLException {
final Result result = this.implementation.checkInput(InputFactory.read(Simple.FOO.toURL()));
assertThat(result).isNotNull();
assertThat(result.getAcceptRecommendation()).isEqualTo(AcceptRecommendation.UNDEFINED);
}
}

View file

@ -0,0 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?>
<foo xmlns="http://validator.kosit.de/test-sample">
<inner>asldkfj</inner>
</foo>

View file

@ -0,0 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<simple xmlns="http://validator.kosit.de/test-sample">
<inner>asldkfj</inner>
<notAllowed />
</simple>

View file

@ -0,0 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?>
<simple xmlns="http://validator.kosit.de/test-sample">
<inner>asldkfj</inner>
</simple>

View file

@ -0,0 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?>
<existiertNicht xmlns="http://validator.kosit.de/unbekannt">
<inner>asldkfj</inner>
</existiertNicht>

View file

@ -0,0 +1,44 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
~ Licensed to the Koordinierungsstelle für IT-Standards (KoSIT) under
~ one or more contributor license agreements. See the NOTICE file
~ distributed with this work for additional information
~ regarding copyright ownership. KoSIT 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.
-->
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:xs="http://www.w3.org/2001/XMLSchema"
xmlns:in="http://www.xoev.de/de/validator/framework/1/createreportinput"
exclude-result-prefixes="xs"
version="2.0">
<xsl:output method="xml" indent="yes" />
<xsl:param name="input-document" as="document-node(element())" required="yes" />
<xsl:template match="in:createReportInput">
<report xmlns="http://validator.kosit.de/test-report">
<input>
<xsl:copy-of select="$input-document" />
</input>
<result>
<xsl:copy-of select="." />
</result>
</report>
</xsl:template>
</xsl:stylesheet>

View file

@ -0,0 +1,14 @@
<?xml version="1.0" encoding="UTF-8"?>
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:tns="http://validator.kosit.de/test-sample" version="1.0" xml:lang="en"
targetNamespace="http://validator.kosit.de/test-sample"
xmlns="http://www.w3.org/1999/xhtml" elementFormDefault="qualified">
<xs:element name="simple" type="tns:SimpleType" />
<xs:element name="foo" type="tns:SimpleType" />
<xs:complexType name="SimpleType">
<xs:sequence>
<xs:element name="inner" type="xs:string" />
</xs:sequence>
</xs:complexType>
</xs:schema>

View file

@ -0,0 +1,84 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
~ Licensed to the Koordinierungsstelle für IT-Standards (KoSIT) under
~ one or more contributor license agreements. See the NOTICE file
~ distributed with this work for additional information
~ regarding copyright ownership. KoSIT 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.
-->
<scenarios xmlns="http://www.xoev.de/de/validator/framework/1/scenarios" frameworkVersion="1.1.2">
<name>HTML-TestSuite</name>
<date>2017-08-08</date>
<description>
<p>Szenario für Tests</p>
</description>
<scenario>
<name>Simple</name>
<description>
<p>Nur Schemaprüfung.</p>
</description>
<namespace prefix="cri">http://www.xoev.de/de/validator/framework/1/createreportinput</namespace>
<namespace prefix="test">http://validator.kosit.de/test-sample</namespace>
<namespace prefix="rpt">http://validator.kosit.de/test-report</namespace>
<match>/test:simple</match>
<validateWithXmlSchema>
<resource>
<name>Sample Schema</name>
<location>simple.xsd</location>
</resource>
</validateWithXmlSchema>
<createReport>
<resource>
<name>Report für eRechnung</name>
<location>report.xsl</location>
</resource>
</createReport>
<acceptMatch>count(//cri:xmlSyntaxError) = 0</acceptMatch>
</scenario>
<scenario>
<name>NoAcceptMatch</name>
<description>
<p>Nur Schemaprüfung. Keine AcceptMatch deklaration</p>
<p>Testen, ob auch alte Konfiguration funktionioeren</p>
</description>
<namespace prefix="test">http://validator.kosit.de/test-sample</namespace>
<match>/test:foo</match>
<validateWithXmlSchema>
<resource>
<name>Sample Schema</name>
<location>simple.xsd</location>
</resource>
</validateWithXmlSchema>
<createReport>
<resource>
<name>Report für eRechnung</name>
<location>report.xsl</location>
</resource>
</createReport>
</scenario>
<noScenarioReport>
<resource>
<name>default</name>
<location>report.xsl</location>
</resource>
</noScenarioReport>
</scenarios>