add test case
[vfc/nfvo/driver/ems.git] / ems / boco / src / test / java / org / onap / vfc / nfvo / emsdriver / commons / utils / ZipTest.java
1 /**
2  * Copyright 2017 BOCO Corporation.  CMCC 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 package org.onap.vfc.nfvo.emsdriver.commons.utils;
17
18 import static org.junit.Assert.assertTrue;
19
20 import java.io.File;
21 import java.io.IOException;
22
23 import org.junit.After;
24 import org.junit.Before;
25 import org.junit.Test;
26 import org.onap.vfc.nfvo.emsdriver.commons.utils.Zip;
27
28 public class ZipTest {
29         
30         private String file = "./test.txt";
31         private String tofile1 = "./test.zip";
32         private Zip zip = null;
33         @Before
34     public void setUp() throws IOException {
35                 new File(file).createNewFile();
36                 zip = new Zip(file,tofile1);
37     }
38         
39         @Test
40         public void compress() throws IOException{
41                 zip.compress();
42                 
43                 assertTrue(tofile1.endsWith(".zip"));
44                 
45         }
46         
47
48         @After
49     public void setDown() throws IOException {
50                 new File(file).delete();
51                 new File(tofile1).delete();
52                 
53     }
54 }