summaryrefslogtreecommitdiffstats
path: root/appc-oam/appc-oam-bundle/src/test/java/org/onap/appc/oam/OAMCommandStatusTest.java
blob: 269c4f81128ff6241e205d3f9201752acaaa7717 (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
/*-
 * ============LICENSE_START=======================================================
 * ONAP : APPC
 * ================================================================================
 * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
 * ================================================================================
 * Copyright (C) 2017 Amdocs
 * =============================================================================
 * 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.
 * 
 * ECOMP is a trademark and service mark of AT&T Intellectual Property.
 * ============LICENSE_END=========================================================
 */

package org.onap.appc.oam;

import org.junit.Assert;
import org.junit.Test;
import org.onap.appc.executor.objects.Params;

import java.util.HashMap;
import java.util.Map;

public class OAMCommandStatusTest {
    private Map<OAMCommandStatus, Integer> CODE_MAP = new HashMap<OAMCommandStatus, Integer>() {
        {
            put(OAMCommandStatus.ABORT,             304);
            put(OAMCommandStatus.ACCEPTED,          100);
            put(OAMCommandStatus.INVALID_PARAMETER, 302);
            put(OAMCommandStatus.REJECTED,          300);
            put(OAMCommandStatus.SUCCESS,           400);
            put(OAMCommandStatus.TIMEOUT,           303);
            put(OAMCommandStatus.UNEXPECTED_ERROR,  200);
        }
    };
    private Map<OAMCommandStatus, String> MSG_MAP = new HashMap<OAMCommandStatus, String>() {
        {
            put(OAMCommandStatus.ABORT,             "OPERATION ABORT - ${errorMsg}");
            put(OAMCommandStatus.ACCEPTED,          "ACCEPTED - request accepted");
            put(OAMCommandStatus.INVALID_PARAMETER, "INVALID PARAMETER - ${errorMsg}");
            put(OAMCommandStatus.REJECTED,          "REJECTED - ${errorMsg}");
            put(OAMCommandStatus.SUCCESS,           "SUCCESS - request has been processed successfully");
            put(OAMCommandStatus.TIMEOUT,           "OPERATION TIMEOUT REACHED - ${errorMsg}");
            put(OAMCommandStatus.UNEXPECTED_ERROR,  "UNEXPECTED ERROR - ${errorMsg}");
        }
    };

    @Test
    public void testGetResponseMessage() throws Exception {
        for (OAMCommandStatus oamCommandStatus : OAMCommandStatus.values()) {
            String expectedMsg = MSG_MAP.get(oamCommandStatus);
            Assert.assertEquals(String.format("Should have message (%s).", expectedMsg),
                    expectedMsg, oamCommandStatus.getResponseMessage());
        }
    }

    @Test
    public void testGetResponseCode() throws Exception {
        for (OAMCommandStatus oamCommandStatus : OAMCommandStatus.values()) {
            Integer expectedCode = CODE_MAP.get(oamCommandStatus);
            Assert.assertEquals(String.format("Should have code (%d).", expectedCode),
                    expectedCode, Integer.valueOf(oamCommandStatus.getResponseCode()));
        }
    }

    @Test
    public void testGetFormattedMessage() throws Exception {
        String message = "test message";
        Params params = new Params().addParam("errorMsg", message);
        for (OAMCommandStatus oamCommandStatus : OAMCommandStatus.values()) {
            String expectedMsg1 = MSG_MAP.get(oamCommandStatus);
            String expectedMsg2 = expectedMsg1.replaceAll("\\$\\{errorMsg\\}", message);
            Assert.assertEquals("Should returned " + expectedMsg1,
                    expectedMsg1, oamCommandStatus.getFormattedMessage(null));
            Assert.assertEquals("Should returned " + expectedMsg2,
                    expectedMsg2, oamCommandStatus.getFormattedMessage(params));
        }
    }

    @Test
    public void testToString() throws Exception {
        for (OAMCommandStatus oamCommandStatus : OAMCommandStatus.values()) {
            String expectedString = String.format(oamCommandStatus.TO_STRING_FORMAT,
                    CODE_MAP.get(oamCommandStatus), MSG_MAP.get(oamCommandStatus));
            Assert.assertEquals(String.format("Should have string (%s).", expectedString),
                    expectedString, oamCommandStatus.toString());
        }
    }
}