aboutsummaryrefslogtreecommitdiffstats
path: root/catalog-be/src/test/java/org/openecomp/sdc/be/servlets/RepresentationUtilsTest.java
blob: f0843ed2ad7ae3a0fab1adbb67538f622304180c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
package org.openecomp.sdc.be.servlets;

import org.apache.tinkerpop.gremlin.structure.T;
import org.junit.Test;
import org.openecomp.sdc.be.model.ArtifactDefinition;
import org.openecomp.sdc.be.model.Operation;

import java.util.HashMap;

import static org.junit.Assert.*;

public class RepresentationUtilsTest  {

    private RepresentationUtils createTestSubject() {
        return new RepresentationUtils();
    }


    @Test
    public void testConvertJsonToArtifactDefinitionForUpdate() throws Exception {
        String content = "";
        Class<ArtifactDefinition> clazz = null;
        ArtifactDefinition result;

        // default test
        result = RepresentationUtils.convertJsonToArtifactDefinitionForUpdate(content, clazz);
    }


    @Test
    public void testToRepresentation() throws Exception {
        T elementToRepresent = null;
        Object result;

        // default test
        result = RepresentationUtils.toRepresentation(elementToRepresent);
    }




    @Test
    public void testConvertJsonToArtifactDefinition() throws Exception {
        String content = "";
        Class<ArtifactDefinition> clazz = null;
        ArtifactDefinition result;

        // default test
        result = RepresentationUtils.convertJsonToArtifactDefinition(content, clazz);
    }

    @Test
    public void checkIsEmptyFiltering() throws Exception {
        HashMap<String, Operation> op = new HashMap<>();
        Operation opValue = new Operation();
        opValue.setName("eee");
        opValue.setDescription("ccc");
        op.put("Bla", opValue);
        Object result = RepresentationUtils.toRepresentation(op);
        assertNotNull(result);
        assertTrue(result.toString(), result.toString().contains("empty"));
        result = RepresentationUtils.toFilteredRepresentation(op);
        assertNotNull(result);
        assertFalse(result.toString(), result.toString().contains("empty"));
    }
}