Added oparent to sdc main
[sdc.git] / catalog-be / src / test / java / org / openecomp / sdc / be / servlets / RepresentationUtilsTest.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * SDC
4  * ================================================================================
5  * Copyright (C) 2019 AT&T Intellectual Property. All rights reserved.
6  * ================================================================================
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  * 
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  * 
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  * ============LICENSE_END=========================================================
19  */
20
21 package org.openecomp.sdc.be.servlets;
22
23 import org.apache.tinkerpop.gremlin.structure.T;
24 import org.junit.Test;
25 import org.openecomp.sdc.be.model.ArtifactDefinition;
26 import org.openecomp.sdc.be.model.Operation;
27
28 import java.util.HashMap;
29
30 import static org.junit.Assert.*;
31
32 public class RepresentationUtilsTest  {
33
34     private RepresentationUtils createTestSubject() {
35         return new RepresentationUtils();
36     }
37
38
39     @Test
40     public void testConvertJsonToArtifactDefinitionForUpdate() throws Exception {
41         String content = "";
42         Class<ArtifactDefinition> clazz = null;
43         ArtifactDefinition result;
44
45         // default test
46         result = RepresentationUtils.convertJsonToArtifactDefinitionForUpdate(content, clazz);
47     }
48
49
50     @Test
51     public void testToRepresentation() throws Exception {
52         T elementToRepresent = null;
53         Object result;
54
55         // default test
56         result = RepresentationUtils.toRepresentation(elementToRepresent);
57     }
58
59
60
61
62     @Test
63     public void testConvertJsonToArtifactDefinition() throws Exception {
64         String content = "";
65         Class<ArtifactDefinition> clazz = null;
66         ArtifactDefinition result;
67
68         // default test
69         result = RepresentationUtils.convertJsonToArtifactDefinition(content, clazz);
70     }
71
72     @Test
73     public void checkIsEmptyFiltering() throws Exception {
74         HashMap<String, Operation> op = new HashMap<>();
75         Operation opValue = new Operation();
76         opValue.setName("eee");
77         opValue.setDescription("ccc");
78         op.put("Bla", opValue);
79         Object result = RepresentationUtils.toRepresentation(op);
80         assertNotNull(result);
81         assertTrue(result.toString(), result.toString().contains("empty"));
82         result = RepresentationUtils.toFilteredRepresentation(op);
83         assertNotNull(result);
84         assertFalse(result.toString(), result.toString().contains("empty"));
85     }
86 }