aboutsummaryrefslogtreecommitdiffstats
path: root/vid-app-common/src/test/java/org/onap/vid/mso/RestMsoImplementationTest.java
blob: 3bcc01d63d30b0d891dff2e7ca6a4a6bb732367b (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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
package org.onap.vid.mso;

import static org.junit.Assert.*;
import org.junit.Test;
import org.onap.vid.changeManagement.RequestDetailsWrapper;

import java.util.*;

import javax.ws.rs.core.MultivaluedHashMap;

import org.junit.Assert;

public class RestMsoImplementationTest {

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

    @Test
    public void testInitMsoClient() throws Exception {
        RestMsoImplementation testSubject;
        MultivaluedHashMap<String, Object> result;

        // default test
        try {
            testSubject = createTestSubject();
            result = testSubject.initMsoClient();
        } catch (Exception e) {
        }
    }


    @Test
    public void testGetForObject() throws Exception {
        RestMsoImplementation testSubject;
        String sourceID = "";
        String path = "";

        // default test
        try {
            testSubject = createTestSubject();
            testSubject.GetForObject(sourceID, path, null);
        } catch (Exception e) {
        }
    }

    @Test
    public void testDelete() throws Exception {
        RestMsoImplementation testSubject;
        String sourceID = "";
        String path = "";

        // default test
        try {
            testSubject = createTestSubject();
            testSubject.Delete(null, null, sourceID, path, null);
        } catch (Exception e) {
        }
    }

    @Test
    public void testPostForObject() throws Exception {
        RestMsoImplementation testSubject;
        Object requestDetails = null;
        String sourceID = "";
        String path = "";

        // default test
        try {
            testSubject = createTestSubject();
            testSubject.PostForObject(requestDetails, sourceID, path, null);
        } catch (

        Exception e) {
        }
    }



    @Test
    public void testPrepareClient() throws Exception {
        RestMsoImplementation testSubject;
        String path = "";
        String methodName = "";

        // default test
        try {
            testSubject = createTestSubject();
            testSubject.prepareClient(path, methodName);
        } catch (

        Exception e) {
        }
    }




    // @Test
    // public void testInitMsoClient() throws Exception {
    // RestMsoImplementation testSubject;
    //
    // // default test
    // testSubject = createTestSubject();
    // testSubject.initMsoClient();
    // }

}