diff options
author | shiria <shiri.amichai@amdocs.com> | 2018-10-22 14:19:24 +0300 |
---|---|---|
committer | Vitaly Emporopulo <Vitaliy.Emporopulo@amdocs.com> | 2018-10-22 11:57:01 +0000 |
commit | 0e4ec678478fa791a9e4841f984b3968496b77c0 (patch) | |
tree | 48befc7df05abdb1f9aa18634f15b1c35a5b59fc /openecomp-be/lib/openecomp-sdc-enrichment-lib/openecomp-sdc-enrichment-api/src/test | |
parent | 776213b26ad024101a464c169273c05129af226f (diff) |
Update datatypes using lombok
Issue-ID: SDC-1859
Change-Id: Ia7cfc86c9a0faa20a2fdbba08181b285ea3c7eef
Signed-off-by: shiria <shiri.amichai@amdocs.com>
Diffstat (limited to 'openecomp-be/lib/openecomp-sdc-enrichment-lib/openecomp-sdc-enrichment-api/src/test')
2 files changed, 73 insertions, 0 deletions
diff --git a/openecomp-be/lib/openecomp-sdc-enrichment-lib/openecomp-sdc-enrichment-api/src/test/java/org/openecomp/core/enrichment/types/ComponentProcessInfoTest.java b/openecomp-be/lib/openecomp-sdc-enrichment-lib/openecomp-sdc-enrichment-api/src/test/java/org/openecomp/core/enrichment/types/ComponentProcessInfoTest.java new file mode 100644 index 0000000000..ca00400d38 --- /dev/null +++ b/openecomp-be/lib/openecomp-sdc-enrichment-lib/openecomp-sdc-enrichment-api/src/test/java/org/openecomp/core/enrichment/types/ComponentProcessInfoTest.java @@ -0,0 +1,37 @@ +/* + * Copyright © 2018 European Support Limited + * + * 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.openecomp.core.enrichment.types; + + +import java.io.IOException; +import java.io.InputStream; +import java.nio.charset.StandardCharsets; +import org.apache.commons.io.IOUtils; +import org.junit.Assert; +import org.junit.Test; + +public class ComponentProcessInfoTest { + + @Test + public void verifiedContentValue() throws IOException { + ComponentProcessInfo componentProcessInfo = new ComponentProcessInfo(); + String contentData = "my test content data"; + componentProcessInfo.setContent(contentData.getBytes()); + InputStream getterContent = componentProcessInfo.getContent(); + Assert.assertEquals(contentData, IOUtils.toString(getterContent, StandardCharsets.UTF_8.name())); + + } +}
\ No newline at end of file diff --git a/openecomp-be/lib/openecomp-sdc-enrichment-lib/openecomp-sdc-enrichment-api/src/test/java/org/openecomp/core/enrichment/types/MonitoringArtifactInfoTest.java b/openecomp-be/lib/openecomp-sdc-enrichment-lib/openecomp-sdc-enrichment-api/src/test/java/org/openecomp/core/enrichment/types/MonitoringArtifactInfoTest.java new file mode 100644 index 0000000000..eb6983f6dc --- /dev/null +++ b/openecomp-be/lib/openecomp-sdc-enrichment-lib/openecomp-sdc-enrichment-api/src/test/java/org/openecomp/core/enrichment/types/MonitoringArtifactInfoTest.java @@ -0,0 +1,36 @@ +/* + * Copyright © 2018 European Support Limited + * + * 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.openecomp.core.enrichment.types; + +import java.io.IOException; +import java.io.InputStream; +import java.nio.charset.StandardCharsets; +import org.apache.commons.io.IOUtils; +import org.junit.Assert; +import org.junit.Test; + +public class MonitoringArtifactInfoTest { + + @Test + public void verifiedContentValue() throws IOException { + MonitoringArtifactInfo monitoringArtifactInfo = new MonitoringArtifactInfo(); + String contentData = "my test content data"; + monitoringArtifactInfo.setContent(contentData.getBytes()); + InputStream getterContent = monitoringArtifactInfo.getContent(); + Assert.assertEquals(contentData, IOUtils.toString(getterContent, StandardCharsets.UTF_8.name())); + + } +}
\ No newline at end of file |