summaryrefslogtreecommitdiffstats
path: root/datacollector/src/test/java/org/onap/rapp/datacollector/service/VesParserImplTest.java
diff options
context:
space:
mode:
Diffstat (limited to 'datacollector/src/test/java/org/onap/rapp/datacollector/service/VesParserImplTest.java')
-rw-r--r--datacollector/src/test/java/org/onap/rapp/datacollector/service/VesParserImplTest.java56
1 files changed, 56 insertions, 0 deletions
diff --git a/datacollector/src/test/java/org/onap/rapp/datacollector/service/VesParserImplTest.java b/datacollector/src/test/java/org/onap/rapp/datacollector/service/VesParserImplTest.java
new file mode 100644
index 0000000..f6cd0e5
--- /dev/null
+++ b/datacollector/src/test/java/org/onap/rapp/datacollector/service/VesParserImplTest.java
@@ -0,0 +1,56 @@
+/*
+ * Copyright (C) 2021 Samsung Electronics
+ * 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
+ */
+
+
+package org.onap.rapp.datacollector.service;
+
+import static org.junit.Assert.assertEquals;
+
+import java.io.BufferedReader;
+import java.io.InputStream;
+import java.io.InputStreamReader;
+import java.util.stream.Collectors;
+import org.junit.Before;
+import org.junit.Test;
+import com.google.gson.JsonParseException;
+import org.onap.rapp.datacollector.entity.ves.Event;
+
+public class VesParserImplTest {
+ String testVesContent;
+ VesParser parser = new VesParserImpl();
+
+ @Before
+ public void setUp() throws Exception {
+ InputStream in = this.getClass().getResourceAsStream("/sample-ves.json");
+ try (in) {
+ BufferedReader inr = new BufferedReader(new InputStreamReader(in));
+ testVesContent = inr.lines().collect(Collectors.joining(" "));
+ }
+ }
+
+ @Test
+ public void parse() {
+ Event actual = parser.parse(testVesContent);
+ assertEquals("4.0.1", actual.commonEventHeader.version);
+ assertEquals(1413378172000000L, (long) actual.commonEventHeader.lastEpochMicrosec);
+ assertEquals(1413378172000000L, (long) actual.commonEventHeader.startEpochMicrosec);
+ assertEquals(3, (int) actual.commonEventHeader.sequence);
+ assertEquals("measurement", actual.commonEventHeader.domain);
+ assertEquals("UTC-05:30", actual.commonEventHeader.timeZoneOffset);
+ }
+
+ @Test(expected = JsonParseException.class)
+ public void parseEmpty() {
+ Event actual = parser.parse("{\"event\":{}}");
+ }
+} \ No newline at end of file