catalog-be servlets refactoring
[sdc.git] / catalog-be / src / test / java / org / openecomp / sdc / be / servlets / ResourceArtifactDownloadServletTest.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.sdc.be.servlets;
22
23 import static org.mockito.Mockito.mock;
24
25 import javax.servlet.http.HttpServletRequest;
26 import javax.ws.rs.core.Response;
27
28 import org.junit.Test;
29
30 import ch.qos.logback.classic.Logger;
31 import org.openecomp.sdc.be.components.impl.ComponentInstanceBusinessLogic;
32 import org.openecomp.sdc.be.components.impl.GroupBusinessLogic;
33 import org.openecomp.sdc.be.impl.ComponentsUtils;
34 import org.openecomp.sdc.be.impl.DownloadArtifactLogic;
35 import org.openecomp.sdc.be.resources.api.IResourceUploader;
36 import org.openecomp.sdc.be.user.UserBusinessLogic;
37
38 public class ResourceArtifactDownloadServletTest {
39
40         private ResourceArtifactDownloadServlet createTestSubject() {
41                 UserBusinessLogic userBusinessLogic = mock(UserBusinessLogic.class);
42                 ComponentsUtils componentsUtils = mock(ComponentsUtils.class);
43                 IResourceUploader resourceUploader = mock(IResourceUploader.class);
44                 DownloadArtifactLogic downloadArtifactLogic = mock(DownloadArtifactLogic.class);
45
46                 return new ResourceArtifactDownloadServlet(userBusinessLogic,  componentsUtils,
47                         resourceUploader, downloadArtifactLogic);
48         }
49
50         
51         @Test
52         public void testGetResourceArtifactByName() throws Exception {
53                 ResourceArtifactDownloadServlet testSubject;
54                 String resourceName = "";
55                 String resourceVersion = "";
56                 String artifactName = "";
57                 HttpServletRequest request = null;
58                 Response result;
59
60                 // default test
61                 testSubject = createTestSubject();
62         }
63
64         
65         @Test
66         public void testGetResourceArtifactMetadata() throws Exception {
67                 ResourceArtifactDownloadServlet testSubject;
68                 String resourceName = "";
69                 String resourceVersion = "";
70                 String artifactName = "";
71                 HttpServletRequest request = null;
72                 Response result;
73
74                 // default test
75                 testSubject = createTestSubject();
76         }
77
78         
79         @Test
80         public void testGetLogger() throws Exception {
81                 ResourceArtifactDownloadServlet testSubject;
82                 Logger result;
83
84                 // default test
85                 testSubject = createTestSubject();
86         }
87 }