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