Fix gvnfm juju compile problem
[vfc/nfvo/driver/vnfm/gvnfm.git] / juju / juju-vnfmadapter / Juju-vnfmadapterService / service / src / test / java / org / onap / vfc / nfvo / vnfm / gvnfm / jujuvnfmadapter / common / UnCompressUtilTest.java
1 /*
2  * Copyright 2017 Huawei Technologies Co., Ltd.
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.onap.vfc.nfvo.vnfm.gvnfm.jujuvnfmadapter.common;
18
19 import java.io.FileInputStream;
20 import java.util.ArrayList;
21 import java.util.List;
22
23 import org.junit.Before;
24 import org.junit.Ignore;
25 import org.junit.Test;
26 import org.onap.vfc.nfvo.vnfm.gvnfm.jujuvnfmadapter.common.UnCompressUtil;
27
28 public class UnCompressUtilTest {
29
30     UnCompressUtil util;
31
32     FileInputStream fis;
33
34     @Before
35     public void setUp(){
36          util = new UnCompressUtil();
37
38     }
39
40     @Test
41
42     public void unCompressGzipTest() {
43         String zipfileName = "";
44         String outputDirectory = "";
45         List<String> fileNames = new ArrayList<String>();
46         //fileNames.add("test1");
47         util.unCompressGzip(zipfileName, outputDirectory, fileNames);
48     }
49
50     @Test
51
52     public void unCompressZipTest() {
53         String zipfileName = "";
54         String outputDirectory = "";
55         List<String> fileNames = new ArrayList<String>();
56         util.unCompressZip(zipfileName, outputDirectory, fileNames);
57     }
58
59
60     @Test
61
62     public void unCompressTarXZTest() {
63         String zipfileName = "";
64         String outputDirectory = "";
65         List<String> fileNames = new ArrayList<String>();
66         util.unCompressTarXZ(zipfileName, outputDirectory, fileNames);
67     }
68
69     @Test
70
71     public void unCompressTest() {
72         String zipfileName = "";
73         String outputDirectory = "src//test//resources";
74         List<String> fileNames = new ArrayList<String>();
75         util.unCompress(zipfileName, outputDirectory, fileNames);
76     }
77
78
79 }