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
 
  11  *      http://www.apache.org/licenses/LICENSE-2.0
 
  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=========================================================
 
  21 package org.onap.dcae.analytics.tca.web.validation;
 
  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;
 
  36 @ActiveProfiles({AnalyticsProfile.DEV_PROFILE_NAME})
 
  37 public class TcaPolicyValidateTest extends BaseAnalyticsSpringBootIT {
 
  40     Environment environment;
 
  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());