Log full URL for REST calls
[policy/models.git] / models-interactions / model-actors / actor.sdnc / src / test / java / org / onap / policy / controlloop / actor / sdnc / SdncOperationTest.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP
4  * ================================================================================
5  * Copyright (C) 2020 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.onap.policy.controlloop.actor.sdnc;
22
23 import static org.junit.Assert.assertEquals;
24 import static org.junit.Assert.assertFalse;
25 import static org.junit.Assert.assertNotNull;
26 import static org.junit.Assert.assertTrue;
27
28 import java.util.Map;
29 import java.util.TreeMap;
30 import org.junit.Before;
31 import org.junit.Test;
32 import org.onap.policy.sdnc.SdncRequest;
33
34 public class SdncOperationTest extends BasicSdncOperation {
35
36     private static final String MY_URI = "my-uri";
37
38     private SdncRequest request;
39     private SdncOperation oper;
40
41     /**
42      * Sets up.
43      */
44     @Before
45     public void setUp() throws Exception {
46         super.setUp();
47
48         request = new SdncRequest();
49         request.setUrl(MY_URI);
50
51         oper = new SdncOperation(params, config) {
52             @Override
53             protected SdncRequest makeRequest(int attempt) {
54                 return request;
55             }
56         };
57     }
58
59     @Test
60     public void testSdncOperator() {
61         assertEquals(DEFAULT_ACTOR, oper.getActorName());
62         assertEquals(DEFAULT_OPERATION, oper.getName());
63     }
64
65     @Test
66     public void testStartPreprocessorAsync() {
67         assertNotNull(oper.startPreprocessorAsync());
68     }
69
70     @Test
71     public void testStartOperationAsync_testStartRequestAsync() throws Exception {
72         verifyOperation(oper);
73     }
74
75     @Test
76     public void testIsSuccess() {
77         // success case
78         response.getResponseOutput().setResponseCode("200");
79         assertTrue(oper.isSuccess(null, response));
80
81         // failure code
82         response.getResponseOutput().setResponseCode("555");
83         assertFalse(oper.isSuccess(null, response));
84
85         // null code
86         response.getResponseOutput().setResponseCode(null);
87         assertFalse(oper.isSuccess(null, response));
88
89         // null output
90         response.setResponseOutput(null);
91         assertFalse(oper.isSuccess(null, response));
92     }
93
94     @Override
95     protected Map<String, String> makeEnrichment() {
96         return new TreeMap<>();
97     }
98 }