Initial TCA commit into DCAEGEN2
[dcaegen2/analytics/tca.git] / dcae-analytics-cdap-common / src / test / java / org / openecomp / dcae / apod / analytics / cdap / common / settings / CDAPBaseAppConfigTest.java
1 /*
2  * ===============================LICENSE_START======================================
3  *  dcae-analytics
4  * ================================================================================
5  *    Copyright © 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.openecomp.dcae.apod.analytics.cdap.common.settings;
22
23 import org.hamcrest.CoreMatchers;
24 import org.junit.Before;
25 import org.junit.Test;
26 import org.openecomp.dcae.apod.analytics.cdap.common.BaseAnalyticsCDAPCommonUnitTest;
27 import org.openecomp.dcae.apod.analytics.cdap.common.CDAPComponentsConstants;
28
29 import static org.hamcrest.CoreMatchers.is;
30 import static org.junit.Assert.assertThat;
31
32 /**
33  * @author Rajiv Singla . Creation Date: 12/12/2016.
34  */
35 public class CDAPBaseAppConfigTest extends BaseAnalyticsCDAPCommonUnitTest {
36
37     private CDAPBaseAppConfigImp cdapBaseAppConfigImp = null;
38
39     @Before
40     public void before() {
41         cdapBaseAppConfigImp = new CDAPBaseAppConfigImp();
42     }
43
44     @Test
45     public void testGetAppName() throws Exception {
46         assertThat("Common Default Name must match",
47                 cdapBaseAppConfigImp.getAppName(),
48                 CoreMatchers.is(CDAPComponentsConstants.COMMON_DEFAULT_DCAE_CDAP_NAME_APP));
49     }
50
51     @Test
52     public void testGetAppDescription() throws Exception {
53         assertThat("Default App Description must match",
54                 cdapBaseAppConfigImp.getAppDescription(),
55                 is(CDAPComponentsConstants.COMMON_DEFAULT_DCAE_CDAP_DESCRIPTION_APP));
56     }
57
58 }