Skip to content
Snippets Groups Projects
Commit 9333f899 authored by Stefan Herrnleben's avatar Stefan Herrnleben
Browse files

add parser for adaptation points metamodel including junit test

parent 2bc47d9d
No related branches found
No related tags found
No related merge requests found
......@@ -6,4 +6,5 @@
</nodes>
</repositories>
<groups/>
<networkInfrastructure href="scenario0B.dni#_YRLUIOlEEeWVGvgYicTWCQ"/>
</dnimm3ap:AdaptationPoints>
......@@ -23,6 +23,13 @@ public class ParserTest {
Assert.assertTrue(adaptationPoints.getRepositories().getNodes().size() > 0);
}
@Test
public void shouldConvertFileToModelWithNetworkStructure() {
File file = new File("resources-test/scenario0B.dniap");
AdaptationPointsImpl adaptationPoints = Parser.convertToModel(file);
Assert.assertEquals(6, adaptationPoints.getNetworkInfrastructure().getStructure().getNodes().size());
}
@Test
public void shouldConvertModelToFile() throws IOException {
DNIAPFactoryImpl factory = new DNIAPFactoryImpl();
......
......@@ -23,7 +23,7 @@ public class Parser {
resourceSet.getResourceFactoryRegistry().getExtensionToFactoryMap()
.put(Resource.Factory.Registry.DEFAULT_EXTENSION, new XMIResourceFactoryImpl());
resourceSet.getPackageRegistry().put(DNIAPPackage.eNS_URI, DNIAPPackage.eINSTANCE);
Resource resource = resourceSet.getResource(URI.createFileURI(file.getPath()), true);
Resource resource = resourceSet.getResource(URI.createFileURI(file.getAbsolutePath()), true);
return (AdaptationPointsImpl) resource.getContents().get(0);
}
......@@ -54,7 +54,7 @@ public class Parser {
resourceSet.getResourceFactoryRegistry().getExtensionToFactoryMap()
.put(Resource.Factory.Registry.DEFAULT_EXTENSION, new XMIResourceFactoryImpl());
resourceSet.getPackageRegistry().put(DNIAPPackage.eNS_URI, DNIAPPackage.eINSTANCE);
Resource resource = resourceSet.createResource(URI.createFileURI(file.toURI().getPath()));
Resource resource = resourceSet.createResource(URI.createFileURI(file.getAbsolutePath()));
resource.getContents().add(adaptationPoints);
resource.save(Collections.EMPTY_MAP);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment