use of org.contextmapper.dsl.generator.mdsl.MDSLAPIDescriptionCreator in project context-mapper-dsl by ContextMapper.
the class MDSLAPIDescriptionCreatorTest method canCreateCommentInCaseThereIsNoOperationInAnAPI.
@Test
void canCreateCommentInCaseThereIsNoOperationInAnAPI() throws IOException {
// given
String baseFilename = "mdsl-no-operation-in-one-api";
String inputModelName = baseFilename + ".cml";
CMLResource input = getResourceCopyOfTestCML(inputModelName);
MDSLModelCreator mdslCreator = new MDSLModelCreator(input.getContextMappingModel());
// when
List<ServiceSpecification> serviceSpecifications = mdslCreator.createServiceSpecifications();
MDSLAPIDescriptionCreator dslTextCreator = new TestMDSLAPIDescriptionCreator(new ProtectedRegionContextFactory().createProtectedRegionContextForNewMDSLFile(), input.getURI().toFileString());
ServiceSpecification spec = serviceSpecifications.stream().filter(s -> s.getName().equals("MyBoundedContextAPI")).findFirst().get();
String dslText = dslTextCreator.createText(spec);
// then
File expectedResultFile = new File(Paths.get("").toAbsolutePath().toString(), "/integ-test-files/mdsl/" + baseFilename + ".mdsl");
String expectedResult = FileUtils.readFileToString(expectedResultFile, Charset.forName("UTF-8"));
assertEquals(expectedResult, dslText);
}
use of org.contextmapper.dsl.generator.mdsl.MDSLAPIDescriptionCreator in project context-mapper-dsl by ContextMapper.
the class MDSLContractsGenerator method generateFromContextMappingModel.
@Override
protected void generateFromContextMappingModel(ContextMappingModel model, IFileSystemAccess2 fsa, URI inputFileURI) {
MDSLModelCreator mdslModelCreator = new MDSLModelCreator(model);
for (ServiceSpecification serviceSpecification : mdslModelCreator.createServiceSpecifications()) {
String mdslFileName = inputFileURI.trimFileExtension().lastSegment() + "_" + serviceSpecification.getName() + "." + MDSL_FILE_EXT;
ProtectedRegionContext protectedRegionContext = createProtectedRegionContext(mdslFileName, fsa);
MDSLAPIDescriptionCreator dslCreator = new MDSLAPIDescriptionCreator(protectedRegionContext, inputFileURI.lastSegment());
fsa.generateFile(mdslFileName, dslCreator.createText(serviceSpecification));
}
}
use of org.contextmapper.dsl.generator.mdsl.MDSLAPIDescriptionCreator in project context-mapper-dsl by ContextMapper.
the class MDSLAPIDescriptionCreatorTest method testCMLInputAndMDSLOutputFiles.
private void testCMLInputAndMDSLOutputFiles(String baseFilename, boolean overwriteExistingFile) throws IOException {
// given
String inputModelName = baseFilename + ".cml";
CMLResource input = getResourceCopyOfTestCML(inputModelName);
EcoreUtil2.resolveAll(input);
MDSLModelCreator mdslCreator = new MDSLModelCreator(input.getContextMappingModel());
// when
List<ServiceSpecification> serviceSpecifications = mdslCreator.createServiceSpecifications();
MDSLAPIDescriptionCreator dslTextCreator;
if (overwriteExistingFile) {
File existingFile = new File(Paths.get("").toAbsolutePath().toString(), "/integ-test-files/mdsl/" + baseFilename + "-existing.mdsl");
String existingFileContent = FileUtils.readFileToString(existingFile, Charset.forName("UTF-8"));
dslTextCreator = new TestMDSLAPIDescriptionCreator(new ProtectedRegionContextFactory().createProtectedRegionContextForExistingMDSLFile(existingFileContent), input.getURI().toFileString());
} else {
dslTextCreator = new TestMDSLAPIDescriptionCreator(new ProtectedRegionContextFactory().createProtectedRegionContextForNewMDSLFile(), input.getURI().toFileString());
}
String dslText = dslTextCreator.createText(serviceSpecifications.get(0));
// then
File expectedResultFile = new File(Paths.get("").toAbsolutePath().toString(), "/integ-test-files/mdsl/" + baseFilename + ".mdsl");
String expectedResult = FileUtils.readFileToString(expectedResultFile, Charset.forName("UTF-8"));
assertEquals(expectedResult, dslText);
}
Aggregations