unit test for tca-gen2
[dcaegen2/analytics/tca-gen2.git] / dcae-analytics / dcae-analytics-tca-web / src / test / java / org / onap / dcae / analytics / tca / web / TcaAppPropertiesTest.java
1 /*
2  * ================================================================================
3  * Copyright (c) 2020 ChinaMobile. All rights reserved.
4  * ================================================================================
5  * Copyright Copyright (c) 2019 IBM
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.dcae.analytics.tca.web;
22
23 import org.junit.jupiter.api.Assertions;
24 import org.junit.jupiter.api.Test;
25 import org.onap.dcae.analytics.model.AnalyticsProfile;
26 import org.onap.dcae.analytics.test.BaseAnalyticsSpringBootIT;
27 import org.springframework.beans.factory.annotation.Autowired;
28 import org.springframework.core.env.Environment;
29 import org.springframework.test.context.ActiveProfiles;
30
31 @ActiveProfiles({AnalyticsProfile.DEV_PROFILE_NAME})
32 public class TcaAppPropertiesTest extends BaseAnalyticsSpringBootIT{
33
34     @Autowired
35     Environment environment;
36     
37     @Test
38     void TestTcaAppProperties() {
39         TcaAppProperties properties = new TcaAppProperties(environment);
40         Assertions.assertNotNull(properties.getTca());
41         Assertions.assertNotNull(properties.getStreamsPublishes());
42         Assertions.assertNotNull(properties.getStreamsSubscribes());
43         Assertions.assertNotNull(properties.getTca().getAai());
44         Assertions.assertEquals(true, properties.getTca().getEnableAbatement());
45         Assertions.assertEquals(false, properties.isConfigBindingServiceProfileActive());
46     }
47 }