use of net.jangaroo.jooc.api.CompileLog in project jangaroo-tools by CoreMedia.
the class ExmlValidatorTest method testValidateExmlFile.
@SuppressWarnings("ThrowableResultOfMethodCallIgnored")
@Test
public void testValidateExmlFile() throws Exception {
setUp("testNamespace.config");
ExmlConfiguration exmlConfiguration = getExmlc().getConfig();
File testExmlFile = getFile("/exmlparser/TestValidation.exml");
exmlConfiguration.setSourceFiles(Collections.singletonList(testExmlFile));
exmlConfiguration.setResourceOutputDirectory(getFile("/"));
exmlConfiguration.setValidationMode(ValidationMode.ERROR);
final Map<FilePosition, String> validationErrors = new LinkedHashMap<FilePosition, String>();
exmlConfiguration.setLog(new CompileLog() {
@Override
public void error(FilePosition position, String msg) {
System.out.printf("%s(%d): %s%n", position.getFileName(), position.getLine(), msg);
validationErrors.put(position, msg);
}
@Override
public void error(String msg) {
Assert.fail("should never be called");
}
@Override
public void warning(FilePosition position, String msg) {
Assert.fail("should never be called");
}
@Override
public void warning(String msg) {
Assert.fail("should never be called");
}
@Override
public boolean hasErrors() {
return !validationErrors.isEmpty();
}
});
new ExmlValidator(exmlConfiguration).validateExmlFile(testExmlFile);
String testExmlFilename = testExmlFile.getAbsolutePath();
Assert.assertEquals(4, validationErrors.size());
Iterator<Map.Entry<FilePosition, String>> validationErrorIterator = validationErrors.entrySet().iterator();
// "cvc-datatype-valid.1.2.3: 'wrongType' is not a valid value of union type 'Number'."
assertValidationErrorEquals(testExmlFilename, 4, new String[] { "cvc-datatype-valid.1.2.3:", "wrongType", "Number" }, validationErrorIterator.next());
// "cvc-attribute.3: The value 'wrongType' of attribute 'x' on element 'panel' is not valid with respect to its type, 'Number'."
assertValidationErrorEquals(testExmlFilename, 4, new String[] { "cvc-attribute.3:", "wrongType", "x", "panel", "Number" }, validationErrorIterator.next());
// "cvc-complex-type.3.2.2: Attribute 'wrongAttribute' is not allowed to appear in element 'panel'."
assertValidationErrorEquals(testExmlFilename, 4, new String[] { "cvc-complex-type.3.2.2:", "wrongAttribute", "panel" }, validationErrorIterator.next());
// "cvc-complex-type.3.2.2: Attribute 'anotherWrongAttribute' is not allowed to appear in element 'baseAction'."
assertValidationErrorEquals(testExmlFilename, 5, new String[] { "cvc-complex-type.3.2.2:", "anotherWrongAttribute", "baseAction" }, validationErrorIterator.next());
}
use of net.jangaroo.jooc.api.CompileLog in project jangaroo-tools by CoreMedia.
the class AbstractExmlCompileMojo method execute.
public void execute() throws MojoExecutionException, MojoFailureException {
File gSourcesDirectory = getGeneratedSourcesDirectory();
if (!gSourcesDirectory.exists()) {
getLog().info("generating sources into: " + gSourcesDirectory.getPath());
getLog().debug("created " + gSourcesDirectory.mkdirs());
}
if (!generatedResourcesDirectory.exists()) {
getLog().info("generating resources into: " + generatedResourcesDirectory.getPath());
getLog().debug("created " + generatedResourcesDirectory.mkdirs());
}
List<File> sourcePath = getSourcePath();
ExmlConfiguration exmlConfiguration = createExmlConfiguration(getActionScriptClassPath(), sourcePath, gSourcesDirectory);
exmlConfiguration.setResourceOutputDirectory(generatedResourcesDirectory);
exmlConfiguration.setSourceFiles(getMavenPluginHelper().computeStaleSources(sourcePath, includes, excludes, gSourcesDirectory, Exmlc.EXML_SUFFIX, Jooc.AS_SUFFIX, staleMillis));
if (StringUtils.isNotEmpty(validationMode)) {
try {
exmlConfiguration.setValidationMode(ValidationMode.valueOf(validationMode.toUpperCase()));
} catch (IllegalArgumentException e) {
throw new MojoFailureException("The specified EXML validation mode '" + validationMode + "' is unsupported. " + "Legal values are 'error', 'warn', and 'off'.");
}
}
CompileLog compileLog = new MavenCompileLog();
exmlConfiguration.setLog(compileLog);
Exmlc exmlc;
try {
getLog().debug("Exmlc configuration: " + exmlConfiguration);
exmlc = new Exmlc(exmlConfiguration);
executeExmlc(exmlc);
} catch (ExmlcException e) {
throw new MojoFailureException(e.toString(), e);
}
if (compileLog.hasErrors()) {
throw new MojoFailureException("There were EXML compiler errors, see log for details.");
}
getProject().addCompileSourceRoot(gSourcesDirectory.getPath());
}
Aggregations