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 / validation / TcaPolicyValidateTest.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.validation;
22
23 import org.junit.jupiter.api.Assertions;
24 import org.junit.jupiter.api.Test;
25 import org.mockito.Mockito;
26 import org.onap.dcae.analytics.model.AnalyticsProfile;
27 import org.onap.dcae.analytics.tca.model.policy.TcaPolicy;
28 import org.onap.dcae.analytics.tca.web.TcaAppProperties;
29 import org.onap.dcae.analytics.tca.web.domain.TcaPolicyWrapper;
30 import org.onap.dcae.analytics.test.BaseAnalyticsSpringBootIT;
31 import org.springframework.beans.factory.annotation.Autowired;
32 import org.springframework.core.env.Environment;
33 import org.springframework.test.context.ActiveProfiles;
34 import org.springframework.validation.Errors;
35
36 @ActiveProfiles({AnalyticsProfile.DEV_PROFILE_NAME})
37 public class TcaPolicyValidateTest extends BaseAnalyticsSpringBootIT {
38
39     @Autowired
40     Environment environment;
41     
42     @Test
43     void TestTcaAppPropertiesValidator() {
44         TcaAppProperties properties = new TcaAppProperties(environment);
45         TcaPolicyValidator validate = new TcaPolicyValidator();
46         Errors errors = Mockito.mock(Errors.class);
47         TcaPolicyWrapper tcaPolicyWrapper = new TcaPolicyWrapper(properties);
48         tcaPolicyWrapper.getConfigSource();
49         TcaPolicy tcaPolicy = tcaPolicyWrapper.getTcaPolicy();
50         validate.validate(tcaPolicy, errors);        
51         validate.apply(tcaPolicy);
52         Assertions.assertEquals("version-0", tcaPolicyWrapper.getPolicyVersion());
53     }
54 }