org.eolang.parser.Scenario Maven / Gradle / Ivy
The newest version!
/*
* The MIT License (MIT)
*
* Copyright (c) 2016-2021 Yegor Bugayenko
*
* 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 NON-INFRINGEMENT. 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 org.eolang.parser;
import com.jcabi.log.Logger;
import com.jcabi.xml.XML;
import com.jcabi.xml.XMLDocument;
import org.cactoos.io.InputOf;
import org.cactoos.io.OutputTo;
import org.yaml.snakeyaml.Yaml;
import java.io.ByteArrayOutputStream;
import java.io.IOException;
import java.util.Collection;
import java.util.LinkedList;
import java.util.Map;
/**
* One test scenario of parsing and post-processing.
*
* @since 1.0
* @checkstyle ClassDataAbstractionCouplingCheck (500 lines)
*/
public final class Scenario {
/**
* The scenario in plain text.
*/
private final String script;
/**
* Ctor.
* @param scrpt The script
*/
public Scenario(final String scrpt) {
this.script = scrpt;
}
/**
* Make a run and return the list of XPath expressions
* that don't pass after the run.
*
* @return List of XPath expressions that failed
* @throws IOException If fails
*/
@SuppressWarnings("unchecked")
public Collection failures() throws IOException {
final Yaml yaml = new Yaml();
final Map map = yaml.load(this.script);
final ByteArrayOutputStream baos = new ByteArrayOutputStream();
new Syntax(
"scenario",
new InputOf(String.format("%s\n", map.get("eo"))),
new OutputTo(baos)
).parse();
final XML xml = new XMLDocument(baos.toString());
baos.reset();
final Collection xsls = (Collection) map.get("xsls");
final Xsline xsline;
if (xsls == null) {
xsline = new Xsline(
xml,
new OutputTo(baos),
new Spy.Verbose()
);
} else {
xsline = new Xsline(
xml,
new OutputTo(baos),
new Spy.Verbose(),
xsls
);
}
xsline.pass();
final XML out = new XMLDocument(baos.toString());
Logger.debug(this, "Output XML:\n%s", out);
final Collection failures = new LinkedList<>();
for (final String xpath : (Iterable) map.get("tests")) {
if (out.nodes(xpath).isEmpty()) {
failures.add(xpath);
}
}
if (!failures.isEmpty()) {
Logger.info(this, "Broken XML:\n%s", out);
}
return failures;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy