Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'tests/junit/plugins/uml/alf/org.eclipse.papyrus.uml.alf.tests/src/org/eclipse/papyrus/uml/alf/tests/mapper/MappingTest.xtend')
-rw-r--r--tests/junit/plugins/uml/alf/org.eclipse.papyrus.uml.alf.tests/src/org/eclipse/papyrus/uml/alf/tests/mapper/MappingTest.xtend98
1 files changed, 98 insertions, 0 deletions
diff --git a/tests/junit/plugins/uml/alf/org.eclipse.papyrus.uml.alf.tests/src/org/eclipse/papyrus/uml/alf/tests/mapper/MappingTest.xtend b/tests/junit/plugins/uml/alf/org.eclipse.papyrus.uml.alf.tests/src/org/eclipse/papyrus/uml/alf/tests/mapper/MappingTest.xtend
new file mode 100644
index 00000000000..6b7e0792b8c
--- /dev/null
+++ b/tests/junit/plugins/uml/alf/org.eclipse.papyrus.uml.alf.tests/src/org/eclipse/papyrus/uml/alf/tests/mapper/MappingTest.xtend
@@ -0,0 +1,98 @@
+/*****************************************************************************
+ * Copyright (c) 2013, 2014 CEA LIST.
+ *
+ *
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ * IJI - Initial implementation
+ *
+ *****************************************************************************/
+
+package org.eclipse.papyrus.uml.alf.tests.mapper
+
+import org.eclipse.xtext.junit4.XtextRunner
+import org.junit.runner.RunWith
+
+import static org.junit.Assert.*
+
+import org.junit.Test
+import org.junit.BeforeClass
+import java.io.IOException
+import org.eclipse.emf.common.util.BasicDiagnostic
+import java.io.File
+import org.eclipse.papyrus.uml.alf.tests.mapper.AlfMapper
+import org.eclipse.papyrus.uml.alf.MappingError
+import org.eclipse.papyrus.uml.alf.tests.ParserTest
+import org.eclipse.papyrus.uml.alf.impl.ModelNamespaceImpl
+import org.eclipse.papyrus.uml.alf.tests.utils.ContextModelArea
+
+@RunWith(XtextRunner)
+class MappingTest extends ParserTest {
+
+ static final public String TEST_DIRECTORY = "./tests"
+ static final public String UML_DIRECTORY = System.getProperty("user.dir") + "/UML"
+
+ static protected AlfMapper mapper;
+ static protected String testDirectory;
+ static protected String testFile;
+
+ @BeforeClass
+ static def void setUp() {
+ mapper = new AlfMapper()
+ testDirectory = System.getProperty("test.directory", TEST_DIRECTORY)
+ testFile = System.getProperty("test.file");
+ var modelArea = new ContextModelArea("Model");
+ ModelNamespaceImpl.setContext(modelArea.getModel);
+ }
+
+ @Test
+ def void testMapping() {
+ var failures = 0
+ var File[] files
+ if (testFile == null) {
+ System.out.println("[MappingTest] Directory " + testDirectory + ":")
+ files = new File(testDirectory).listFiles()
+ } else {
+ System.out.println("[MappingTest] File " + testDirectory + "/" + testFile + ":")
+ files = #{new File(testDirectory + "/" + testFile)}
+ }
+ for (file : files) {
+ val name = file.name;
+ val l = name.length
+ if (name.substring(l - 4, l).equals(".alf")) {
+ System.out.print(name + ": ")
+ val resource = mapper.getResource(file.path)
+ val parseFailures = parseResource(resource, false)
+ if (parseFailures > 0) {
+ failures = failures + parseFailures
+ } else {
+ try {
+ val uml = mapper.map(resource.getContents())
+ mapper.save(UML_DIRECTORY + "/" + name.substring(0, l - 4) + ".uml", uml)
+
+ } catch (MappingError e) {
+ val status = BasicDiagnostic.toIStatus(e.diagnostic)
+ System.out.println(" " + status)
+ failures = failures + 1
+
+ } catch (IOException e) {
+ e.printStackTrace()
+ }
+
+ catch (Exception e) {
+ e.printStackTrace()
+ failures = failures + 1
+ }
+ }
+ resource.unload()
+ }
+ }
+ System.out.println()
+ assertEquals(0, failures)
+ }
+
+}

Back to the top