Merge 'origin/casablanca' into master
[so.git] / asdc-controller / src / test / java / org / onap / so / asdc / client / ASDCConfigurationTest.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.asdc.client;
22
23
24
25 import static org.junit.Assert.assertTrue;
26
27 import javax.transaction.Transactional;
28
29 import org.junit.Test;
30 import org.onap.so.asdc.BaseTest;
31 import org.springframework.beans.factory.annotation.Autowired;
32
33 /**
34  * THis class tests the ASDC Controller by using the ASDC Mock CLient
35  * 
36  *
37  */
38 public class ASDCConfigurationTest extends BaseTest {
39         
40     @Autowired
41     private ASDCConfiguration config;
42     
43     @Test
44         @Transactional
45         public void testInitASDCConfiguration() throws Exception {      
46                 assertTrue("msopreist".equals(config.getUser()));
47                 assertTrue("msoasdc-id-local".equals(config.getConsumerGroup()));
48                 assertTrue("msoasdc-id-local".equals(config.getConsumerID()));
49                 assertTrue("Pre-IST".equals(config.getEnvironmentName()));
50                 assertTrue("localhost:8443".equals(config.getAsdcAddress()));
51                 assertTrue("msopreist".equals(config.getPassword()));
52                 assertTrue(config.getPollingInterval() == 30);
53                 assertTrue(config.getPollingTimeout() == 30);
54                 assertTrue(config.getRelevantArtifactTypes().size() == config.SUPPORTED_ARTIFACT_TYPES_LIST.size());
55                 assertTrue(config.getWatchDogTimeout() == 1); 
56                 assertTrue(config.isUseHttpsWithDmaap() == true);   
57     }
58     
59 }