d88b3e9772ec793795d9fe158f4ddf2da75ea4b0
[sdc.git] / openecomp-be / api / openecomp-sdc-rest-webapp / validation-rest / validation-rest-services / src / test / java / org / openecomp / sdcrests / validation / rest / service / ValidationImplTest.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * SDC
4  * ================================================================================
5  * Copyright (C) 2019 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.sdcrests.validation.rest.service;
22
23 import org.junit.Before;
24 import org.junit.Test;
25 import org.mockito.InjectMocks;
26 import org.mockito.Mock;
27 import org.openecomp.sdc.validation.UploadValidationManager;
28 import org.openecomp.sdc.validation.types.ValidationFileResponse;
29 import org.openecomp.sdcrests.validation.rest.services.ValidationImpl;
30
31 import javax.ws.rs.core.Response;
32 import java.io.ByteArrayInputStream;
33 import java.io.IOException;
34
35 import static org.junit.Assert.assertEquals;
36 import static org.mockito.ArgumentMatchers.any;
37 import static org.mockito.Mockito.when;
38 import static org.mockito.MockitoAnnotations.initMocks;
39
40 public class ValidationImplTest {
41
42     @Mock
43     private UploadValidationManager uploadValidationManager;
44     @InjectMocks
45     private ValidationImpl validation;
46
47     @Before
48     public void setUp(){
49         initMocks(this);
50     }
51
52     @Test
53     public void validateFileTest() throws IOException {
54         when(uploadValidationManager.validateFile(any(), any())).thenReturn(new ValidationFileResponse());
55         Response response = validation.validateFile("", new ByteArrayInputStream("".getBytes()));
56         assertEquals(response.getStatus(), Response.Status.OK.getStatusCode());
57     }
58
59     @Test(expected = RuntimeException.class)
60     public void validateFileExceptionTest() throws IOException {
61         when(uploadValidationManager.validateFile(any(), any())).thenThrow(new IOException());
62         Response response = validation.validateFile("", new ByteArrayInputStream("".getBytes()));
63    }
64 }