845155f7f095d5ab8b191fc18b7346cb87d875b9
[so.git] / adapters / mso-openstack-adapters / src / test / java / org / onap / so / adapters / network / BpelRestClientTest.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP - SO
4  * ================================================================================
5  * Copyright (C) 2017 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.so.adapters.network;
22
23 import static org.junit.Assert.assertEquals;
24
25 import javax.inject.Provider;
26
27 import org.junit.Test;
28 import org.onap.so.adapters.vnf.BaseRestTestUtils;
29 import org.springframework.beans.factory.annotation.Autowired;
30 import org.springframework.beans.factory.annotation.Qualifier;
31 import org.springframework.boot.context.embedded.LocalServerPort;
32
33 public class BpelRestClientTest extends BaseRestTestUtils {
34
35         
36         @LocalServerPort
37         private int port;
38         @Autowired
39         @Qualifier("NetworkBpel")
40         private Provider<BpelRestClient> clientProvider;
41
42         @Test
43         public void verifyPropertiesRead() {
44                 BpelRestClient client = clientProvider.get();
45                 
46                 assertEquals(5, client.getRetryCount());
47                 assertEquals(5, client.getConnectTimeout());
48                 assertEquals("test:test", client.getCredentials());
49                 assertEquals(5, client.getSocketTimeout());
50                 assertEquals("408, 429, 500, 502, 503, 504, 900", client.getRetryList());
51                 assertEquals(-15, client.getRetryInterval());
52                 
53         }
54
55 }