Increase timeout for Selenium tests
[sdc.git] / openecomp-be / lib / openecomp-tosca-lib / src / test / java / org / openecomp / sdc / tosca / services / impl / ToscaValidationServiceImplTest.java
1 /*
2  * Copyright © 2016-2018 European Support Limited
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *      http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 package org.openecomp.sdc.tosca.services.impl;
18
19 import org.apache.commons.io.IOUtils;
20 import org.junit.Test;
21 import org.openecomp.core.utilities.file.FileContentHandler;
22 import org.openecomp.core.utilities.orchestration.OnboardingTypesEnum;
23 import org.openecomp.sdc.common.utils.CommonUtil;
24 import org.openecomp.sdc.datatypes.error.ErrorMessage;
25 import org.openecomp.sdc.tosca.services.ToscaValidationService;
26
27 import java.io.IOException;
28 import java.util.List;
29 import java.util.Map;
30
31 import static org.junit.Assert.assertFalse;
32
33 public class ToscaValidationServiceImplTest {
34
35   @Test
36   public void validateCSARContentErrorHandling() throws IOException {
37     String resName = "/mock/validationService/csar/resource-Spgw-csar-ZTE.csar";
38     byte[] uploadedFileData = IOUtils.toByteArray(this.getClass().getResource(resName));
39     FileContentHandler contentMap =
40         CommonUtil.validateAndUploadFileContent(OnboardingTypesEnum.CSAR, uploadedFileData);
41     ToscaValidationService handler = new ToscaValidationServiceImpl();
42     Map<String, List<ErrorMessage>> errors = handler.validate(contentMap);
43     assertFalse(errors.isEmpty());
44   }
45
46 }