summaryrefslogtreecommitdiffstats
path: root/src/test/java/org/onap/aai/validation/test/util/TestEntity.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/java/org/onap/aai/validation/test/util/TestEntity.java')
-rw-r--r--src/test/java/org/onap/aai/validation/test/util/TestEntity.java88
1 files changed, 88 insertions, 0 deletions
diff --git a/src/test/java/org/onap/aai/validation/test/util/TestEntity.java b/src/test/java/org/onap/aai/validation/test/util/TestEntity.java
new file mode 100644
index 0000000..e42873a
--- /dev/null
+++ b/src/test/java/org/onap/aai/validation/test/util/TestEntity.java
@@ -0,0 +1,88 @@
+/*
+ * ============LICENSE_START===================================================
+ * Copyright (c) 2018 Amdocs
+ * ============================================================================
+ * 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.
+ * ============LICENSE_END=====================================================
+ */
+package org.onap.aai.validation.test.util;
+
+import com.google.gson.JsonSyntaxException;
+import java.io.File;
+import java.io.IOException;
+import java.net.URI;
+import java.net.URISyntaxException;
+import java.nio.file.NoSuchFileException;
+import java.nio.file.Path;
+import org.onap.aai.validation.result.ValidationResult;
+
+public class TestEntity {
+
+ public File inputFile;
+ public String expectedResultsFile;
+
+ public TestEntity(Path root, Path inputFilePath, String inputEventsPath, String outputEventsPath) {
+ String rootUri = root.toUri().toString();
+ String resultsRoot = rootUri.replaceAll(inputEventsPath + "/$", outputEventsPath + "/");
+ String inputFileUri = inputFilePath.toUri().toString();
+ this.inputFile = inputFilePath.toFile();
+ this.expectedResultsFile = inputFileUri.replace(rootUri, resultsRoot).replaceAll("\\.json$", ".exp.json");
+ }
+
+ public String getJson() throws URISyntaxException, IOException {
+ return TestUtil.getFileAsString(inputFile.getPath());
+ }
+
+ /**
+ * @return the contents of the file that stores the expected JSON, or an empty string if there is no expected JSON
+ * @throws URISyntaxException
+ * @throws IOException
+ */
+ public String getExpectedJson() throws URISyntaxException, IOException {
+ try {
+ return TestUtil.getFileAsString(new URI(expectedResultsFile).getPath());
+ } catch (NoSuchFileException e) {
+ return "";
+ }
+ }
+
+ public ValidationResult getExpectedValidationResult() throws JsonSyntaxException, URISyntaxException, IOException {
+ return ValidationResult.fromJson(getExpectedJson());
+ }
+
+ @Override
+ public String toString() {
+ return "TestEntity [inputFile=" + inputFile + ", expectedResultsFile=" + expectedResultsFile + "]";
+ }
+
+ public boolean expectsError() throws URISyntaxException, IOException {
+ try {
+ getErrorFileContents();
+ } catch (NoSuchFileException e) {
+ return false;
+ }
+ return true;
+ }
+
+ public String getExpectedErrorMessage() throws URISyntaxException, IOException {
+ return getErrorFileContents().trim();
+ }
+
+ private String getErrorFileContents() throws URISyntaxException, IOException {
+ return TestUtil.getFileAsString(new URI(getErrorFileURI()).getPath());
+ }
+
+ private String getErrorFileURI() {
+ return expectedResultsFile.replaceAll("\\.exp\\.json$", ".error");
+ }
+}