Catalog alignment
[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.assertFalse;
31 import static org.junit.Assert.assertNotNull;
32 import static org.junit.Assert.assertTrue;
33
34 public class RepresentationUtilsTest  {
35
36     private RepresentationUtils createTestSubject() {
37         return new RepresentationUtils();
38     }
39
40
41     @Test
42     public void testConvertJsonToArtifactDefinitionForUpdate() throws Exception {
43         String content = "";
44         Class<ArtifactDefinition> clazz = null;
45         ArtifactDefinition result;
46
47         // default test
48         result = RepresentationUtils.convertJsonToArtifactDefinitionForUpdate(content, clazz);
49     }
50
51
52     @Test
53     public void testToRepresentation() throws Exception {
54         T elementToRepresent = null;
55         Object result;
56
57         // default test
58         result = RepresentationUtils.toRepresentation(elementToRepresent);
59     }
60
61     @Test
62     public void checkIsEmptyFiltering() throws Exception {
63         HashMap<String, Operation> op = new HashMap<>();
64         Operation opValue = new Operation();
65         opValue.setName("eee");
66         opValue.setDescription("ccc");
67         op.put("Bla", opValue);
68         Object result = RepresentationUtils.toRepresentation(op);
69         assertNotNull(result);
70         assertTrue(result.toString(), result.toString().contains("empty"));
71         result = RepresentationUtils.toFilteredRepresentation(op);
72         assertNotNull(result);
73         assertFalse(result.toString(), result.toString().contains("empty"));
74     }
75 }