-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathutilzip_test.go
72 lines (69 loc) · 2.07 KB
/
utilzip_test.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
// Copyright (c) 2023 gpress Authors.
//
// This file is part of gpress.
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU Affero General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// This program is distributed in the hope that it will be useful
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU Affero General Public License for more details.
//
// You should have received a copy of the GNU Affero General Public License
// along with this program. If not, see <http://www.gnu.org/licenses/>.
package main
import (
"os"
"testing"
)
func Test_unzip(t *testing.T) {
type args struct {
zipPath string
destDir string
}
tests := []struct {
name string
args args
wantExistDir bool
wantDir string
}{
{
name: "解压成功 -> 创建或者覆盖目录和文件成功",
args: args{
zipPath: "./gpressdatadir/gpress-geekdoc-master.zip",
destDir: "gpressdatadir/",
},
wantExistDir: true,
wantDir: "./gpressdatadir/gpress-geekdoc-master/",
},
{
name: "解压失败-原目录存在 -> 不进行任何处理",
args: args{
zipPath: "./gpressdatadir/gpress-geekdoc-master2.zip",
destDir: "gpressdatadir/",
},
wantExistDir: true,
wantDir: "./gpressdatadir/gpress-geekdoc-master/",
},
{
name: "解压失败-原目录不存在 -> 删除原目录",
args: args{
zipPath: "./gpressdatadir/gpress-geekdoc-master_副本.zip", // 这个副本 把里面的一个.html后缀的改成.zip 然后压缩
destDir: "tmp/",
},
wantExistDir: false,
wantDir: "./tmp/gpress-geekdoc-master/",
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
_ = unzip(tt.args.zipPath, tt.args.destDir)
if _, err := os.Stat(tt.wantDir); (err == nil) != tt.wantExistDir {
t.Errorf("unzip() error = %v, wantExistDir %v", err, tt.wantExistDir)
}
})
}
}