aboutsummaryrefslogtreecommitdiffstats
path: root/model/basic-model/src/test/java/org/onap/apex/model/basicmodel/handling/TestModelFileWriter.java
diff options
context:
space:
mode:
Diffstat (limited to 'model/basic-model/src/test/java/org/onap/apex/model/basicmodel/handling/TestModelFileWriter.java')
-rw-r--r--model/basic-model/src/test/java/org/onap/apex/model/basicmodel/handling/TestModelFileWriter.java131
1 files changed, 131 insertions, 0 deletions
diff --git a/model/basic-model/src/test/java/org/onap/apex/model/basicmodel/handling/TestModelFileWriter.java b/model/basic-model/src/test/java/org/onap/apex/model/basicmodel/handling/TestModelFileWriter.java
new file mode 100644
index 000000000..c2116a1d2
--- /dev/null
+++ b/model/basic-model/src/test/java/org/onap/apex/model/basicmodel/handling/TestModelFileWriter.java
@@ -0,0 +1,131 @@
+/*
+ * ============LICENSE_START=======================================================
+ * Copyright (C) 2016-2018 Ericsson. All rights reserved.
+ * ================================================================================
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ *
+ * SPDX-License-Identifier: Apache-2.0
+ * ============LICENSE_END=========================================================
+ */
+
+package org.onap.apex.model.basicmodel.handling;
+
+import static org.junit.Assert.assertTrue;
+import static org.junit.Assert.fail;
+
+import java.io.File;
+import java.io.IOException;
+
+import org.junit.Test;
+import org.onap.apex.model.basicmodel.concepts.ApexException;
+import org.onap.apex.model.basicmodel.concepts.AxModel;
+import org.onap.apex.model.basicmodel.handling.ApexModelFileWriter;
+
+/**
+ * @author Liam Fallon (liam.fallon@ericsson.com)
+ */
+public class TestModelFileWriter {
+
+ @Test
+ public void testModelFileWriter() throws IOException, ApexException {
+ AxModel model = new TestApexBasicModelCreator().getModel();
+
+ ApexModelFileWriter<AxModel> modelFileWriter = new ApexModelFileWriter<>(true);
+
+ modelFileWriter.setValidateFlag(true);
+ assertTrue(modelFileWriter.isValidateFlag());
+
+ File tempFile = File.createTempFile("ApexFileWriterTest", "test");
+ File tempDir = tempFile.getParentFile();
+ tempFile.delete();
+
+ File jsonTempFile = new File(tempDir.getAbsolutePath() + "/aaa/ApexFileWriterTest.json");
+ File xmlTempFile = new File(tempDir.getAbsolutePath() + "/ccc/ApexFileWriterTest.xml");
+
+ modelFileWriter.apexModelWriteJSONFile(model, AxModel.class, jsonTempFile.getAbsolutePath());
+
+ modelFileWriter.apexModelWriteXMLFile(model, AxModel.class, xmlTempFile.getAbsolutePath());
+
+ jsonTempFile.delete();
+ xmlTempFile.delete();
+ new File(tempDir.getAbsolutePath() + "/aaa").delete();
+ new File(tempDir.getAbsolutePath() + "/ccc").delete();
+
+ jsonTempFile = new File(tempDir.getAbsolutePath() + "/aaa/bbb/ApexFileWriterTest.json");
+ xmlTempFile = new File(tempDir.getAbsolutePath() + "/ccc/ddd/ApexFileWriterTest.xml");
+
+ modelFileWriter.apexModelWriteJSONFile(model, AxModel.class, jsonTempFile.getAbsolutePath());
+ modelFileWriter.apexModelWriteXMLFile(model, AxModel.class, xmlTempFile.getAbsolutePath());
+
+ jsonTempFile.delete();
+ xmlTempFile.delete();
+
+ new File(tempDir.getAbsolutePath() + "/aaa/bbb").delete();
+ new File(tempDir.getAbsolutePath() + "/aaa").delete();
+ new File(tempDir.getAbsolutePath() + "/ccc/ddd").delete();
+ new File(tempDir.getAbsolutePath() + "/ccc").delete();
+
+ File dirA = new File(tempDir.getAbsolutePath() + "/aaa");
+ //File dirB = new File(tempDir.getAbsolutePath() + "/aaa/bbb");
+ dirA.createNewFile();
+ //dirB.createNewFile();
+
+ jsonTempFile = new File(tempDir.getAbsolutePath() + "/aaa/bbb/ApexFileWriterTest.json");
+ jsonTempFile = new File(tempDir.getAbsolutePath() + "/aaa/bbb/ApexFileWriterTest.xml");
+
+ try {
+ modelFileWriter.apexModelWriteJSONFile(model, AxModel.class, jsonTempFile.getAbsolutePath());
+ fail("this test should throw an exception here");
+ }
+ catch (Exception e) {
+ assertTrue(e.getMessage().contains("could not create directory "));
+ }
+
+ try {
+ modelFileWriter.apexModelWriteXMLFile(model, AxModel.class, jsonTempFile.getAbsolutePath());
+ fail("this test should throw an exception here");
+ }
+ catch (Exception e) {
+ assertTrue(e.getMessage().contains("could not create directory "));
+ }
+
+ dirA.delete();
+
+ dirA = new File(tempDir.getAbsolutePath() + "/aaa");
+ File fileB = new File(tempDir.getAbsolutePath() + "/aaa/bbb");
+ dirA.mkdir();
+ fileB.createNewFile();
+
+ jsonTempFile = new File(tempDir.getAbsolutePath() + "/aaa/bbb/ApexFileWriterTest.json");
+ jsonTempFile = new File(tempDir.getAbsolutePath() + "/aaa/bbb/ApexFileWriterTest.xml");
+
+ try {
+ modelFileWriter.apexModelWriteJSONFile(model, AxModel.class, jsonTempFile.getAbsolutePath());
+ fail("this test should throw an exception here");
+ }
+ catch (Exception e) {
+ assertTrue(e.getMessage().contains("error processing file "));
+ }
+
+ try {
+ modelFileWriter.apexModelWriteXMLFile(model, AxModel.class, jsonTempFile.getAbsolutePath());
+ fail("this test should throw an exception here");
+ }
+ catch (Exception e) {
+ assertTrue(e.getMessage().contains("error processing file "));
+ }
+
+ fileB.delete();
+ dirA.delete();
+ }
+}