-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmvpls_test.go
166 lines (133 loc) · 4.55 KB
/
mvpls_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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
package main
import (
"fmt"
"io/ioutil"
"os"
"path/filepath"
"regexp"
"testing"
)
func TestMoveFile(t *testing.T) {
testDir := createTestDir()
defer os.RemoveAll(testDir)
oldFile := filepath.Join(testDir, "file11.png")
newFile := filepath.Join(testDir, "file11.new")
MoveFile(oldFile, newFile)
if _, err := os.Stat(newFile); err != nil && os.IsNotExist(err) {
t.Error("File Not Moved")
}
if _, err := os.Stat(oldFile); err == nil && os.IsExist(err) {
t.Error("Old file location still present")
}
oldFile = filepath.Join(testDir, "level2/file22.png")
newFile = filepath.Join(testDir, "file22.png")
MoveFile(oldFile, newFile)
if _, err := os.Stat(newFile); err != nil && os.IsNotExist(err) {
t.Error("file not moved to directory")
}
if _, err := os.Stat(oldFile); err == nil && os.IsExist(err) {
t.Error("Old file location still present")
}
os.Remove("testingDir/beforeDirMove")
oldFile = filepath.Join(testDir, "file11.jpg")
newFile = filepath.Join(testDir, "level2/file11.png")
MoveFile(oldFile, newFile)
if _, err := os.Stat(newFile); err != nil && os.IsNotExist(err) {
t.Error("file not moved to directory")
}
oldFile = filepath.Join(testDir, "level2")
newFile = filepath.Join(testDir, "level2.moved")
MoveFile(oldFile, newFile)
if _, err := os.Stat(newFile); err != nil && os.IsNotExist(err) {
t.Error("Test directory not moved")
}
if _, err := os.Stat(oldFile); err == nil && os.IsExist(err) {
t.Error("Old test directory still present")
}
}
func TestRemoveFile(t *testing.T) {
testDir := createTestDir()
defer os.RemoveAll(testDir)
oldFile := filepath.Join(testDir, "file11.png")
RemoveFile(oldFile, "")
if _, err := os.Stat(oldFile); err != nil && os.IsExist(err) {
t.Error("File Not Removed")
}
oldFile = filepath.Join(testDir, "level2/file22.png")
RemoveFile(oldFile, "")
if _, err := os.Stat(oldFile); err != nil && os.IsExist(err) {
t.Error("file within directory not removed")
}
}
func TestCopyFile(t *testing.T) {
testDir := createTestDir()
defer os.RemoveAll(testDir)
oldFile := filepath.Join(testDir, "file11.png")
newFile := filepath.Join(testDir, "file11.new")
CopyFile(oldFile, newFile)
if _, err := os.Stat(newFile); err != nil && os.IsNotExist(err) {
t.Error("File Not Copied")
}
if _, err := os.Stat(oldFile); err == nil && os.IsExist(err) {
t.Error("File original location not present")
}
oldFile = filepath.Join(testDir, "level2/file22.png")
newFile = filepath.Join(testDir, "file22.png")
CopyFile(oldFile, newFile)
if _, err := os.Stat(newFile); err != nil && os.IsNotExist(err) {
t.Error("file not copied to directory")
}
if _, err := os.Stat(oldFile); err == nil && os.IsExist(err) {
t.Error("Original file not present")
}
os.Remove("testingDir/beforeDirMove")
oldFile = filepath.Join(testDir, "file11.jpg")
newFile = filepath.Join(testDir, "level2/file11.png")
CopyFile(oldFile, newFile)
if _, err := os.Stat(newFile); err != nil && os.IsNotExist(err) {
t.Error("file not copied to directory")
}
if _, err := os.Stat(oldFile); err == nil && os.IsExist(err) {
t.Error("Original file not present")
}
}
func TestProbeDirectory(t *testing.T) {
testDir := createTestDir()
target := filepath.Join(testDir, "moved")
movedDir := filepath.Join(testDir, "moved")
defer os.RemoveAll(testDir)
regex, _ := regexp.Compile(".*\\.png")
ProbeDirectory(testDir, target, regex, MoveFile)
path := testDir
var full string
for i := 1; i < 4; i++ {
for j := 1; j < 3; j++ {
full = filepath.Join(movedDir, fmt.Sprintf("file%d%d.png", i, j))
if _, err := os.Stat(full); err != nil && os.IsNotExist(err) {
t.Error(fmt.Sprintf("Test file %s is not present", full))
}
full = filepath.Join(path, fmt.Sprintf("file%d%d.jpg", i, j))
if _, err := os.Stat(full); err != nil && os.IsNotExist(err) {
t.Error(fmt.Sprintf("Test file %s should not have moved", full))
}
}
path = filepath.Join(path, fmt.Sprintf("level%d", i+1))
}
}
func createTestDir() (testDir string) {
pdir := os.TempDir()
testDir, _ = ioutil.TempDir(pdir, "*-mvplsTest")
movedDir := filepath.Join(testDir, "moved")
os.Mkdir(movedDir, 0777)
testSubs := filepath.Join(testDir, "level2/level3/level4")
os.MkdirAll(testSubs, 0777)
subs := [...]string{"file11.jpg", "file12.jpg", "file11.png", "file12.png", "level2/file21.jpg",
"level2/file22.jpg", "level2/file21.png", "level2/file22.png", "level2/level3/file31.jpg",
"level2/level3/file32.jpg", "level2/level3/file31.png", "level2/level3/file32.png"}
var sub string
for i := 0; i < len(subs); i++ {
sub = filepath.Join(testDir, subs[i])
os.Create(sub)
}
return
}