forked from jeffaco/duplicacy-util
-
Notifications
You must be signed in to change notification settings - Fork 0
/
backup-ops_test.go
234 lines (208 loc) · 6.44 KB
/
backup-ops_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
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
// Copyright © 2018 Jeff Coffler <jeff@taltos.com>
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package main
import (
"bufio"
"fmt"
"io/ioutil"
"log"
"os"
"os/exec"
"path"
"strings"
"testing"
)
// Set up logging for test purposes
func setupLogging() (*log.Logger, *os.File, error) {
// Create output log file
file, err := ioutil.TempFile("", "taltos_log")
if err != nil {
logError(nil, fmt.Sprint("Error: ", err))
return nil, nil, err
}
logger := log.New(file, "", 0 /* log.Ltime */)
return logger, file, nil
}
// Set up arguments for testing of os/exec calls
func fakeBackupOpsCommand(command string, args ...string) *exec.Cmd {
cs := []string{"-test.run=TestBackupOpsHelperProcess", "--", command}
cs = append(cs, args...)
cmd := exec.Command(os.Args[0], cs...)
cmd.Env = []string{"GO_WANT_HELPER_PROCESS=1"}
return cmd
}
func TestRunDuplicacyBackup(t *testing.T) {
tests := []struct {
assetInputFragment string
resultsFile string
backupInfo []map[string]string
}{
// Dupicacy Error: Enter Backblaze Account ID:Enter Backblaze Application Key:Failed to load the Backblaze B2 storage at b2://hidden-bucket: Authorization failure
{
"account_id.log", "account_id.log_results_backup",
[]map[string]string{
{"name": "b2", "threads": "10", "vss": "false"},
},
},
// Duplicacy Error: Enter storage password:Failed to read the password: EOF
{
"storagepw.log", "storagepw.log_results_backup",
[]map[string]string{
{"name": "b2", "threads": "5", "vss": "false"},
},
},
// Test of long, very involved backup
{"taltos.log", "taltos.log_results_backup",
[]map[string]string{
{"name": "gcd", "threads": "5", "vss": "false"},
{"name": "azure-direct", "threads": "10", "vss": "false"},
},
},
}
for _, test := range tests {
// Set up logging infrastructure
logger, file, err := setupLogging()
if err != nil {
t.Errorf("unexpected error creating log file, got %#v", err)
}
loggingSystemDisplayTime = false
quietFlag = true
defer func() {
file.Close()
os.Remove(file.Name()) // For debugging, might need to leave log file around for perusal
loggingSystemDisplayTime = true
quietFlag = false
}()
// Initialize data structures for test
configFile.backupInfo = test.backupInfo
mailBody = nil
//defer os.Remove(file.Name())
execCommand = fakeBackupOpsCommand
defer func() { execCommand = exec.Command }()
if err := performDuplicacyBackup(logger, []string{"testbackup", test.assetInputFragment}); err != nil {
t.Errorf("expected nil error, got %v", err)
}
// Check results of anon function
expectedOutputInBytes, err := ioutil.ReadFile(path.Join("test/assets", test.resultsFile))
if err != nil {
t.Errorf("unable to read backup results file %s", err)
return
}
expectedOutput := string(expectedOutputInBytes)
actualOutput := strings.Join(mailBody, "\n") + "\n"
if actualOutput != expectedOutput {
t.Errorf("result was incorrect, got\n=====\n%s=====\nexpected\n=====\n%s=====", actualOutput, expectedOutput)
}
}
}
func TestRunDuplicacyCopy(t *testing.T) {
tests := []struct {
assetInputFragment string
resultsFile string
copyInfo []map[string]string
}{
// Test of long, very involved copy operation
{"taltos.log", "taltos.log_results_copy",
[]map[string]string{
{"from": "gcd", "to": "azure", "threads": "5"},
},
},
}
for _, test := range tests {
// Set up logging infrastructure
logger, file, err := setupLogging()
if err != nil {
t.Errorf("unexpected error creating log file, got %#v", err)
}
loggingSystemDisplayTime = false
quietFlag = true
defer func() {
file.Close()
os.Remove(file.Name()) // For debugging, might need to leave log file around for perusal
loggingSystemDisplayTime = true
quietFlag = false
}()
// Initialize data structures for test
configFile.copyInfo = test.copyInfo
mailBody = nil
//defer os.Remove(file.Name())
execCommand = fakeBackupOpsCommand
defer func() { execCommand = exec.Command }()
if err := performDuplicacyCopy(logger, []string{"testbackup", test.assetInputFragment}); err != nil {
t.Errorf("expected nil error, got %v", err)
}
// Check results of anon function
expectedOutputInBytes, err := ioutil.ReadFile(path.Join("test/assets", test.resultsFile))
if err != nil {
t.Errorf("unable to read backup results file %s", err)
return
}
expectedOutput := string(expectedOutputInBytes)
actualOutput := strings.Join(mailBody, "\n") + "\n"
if actualOutput != expectedOutput {
t.Errorf("result was incorrect, got\n=====\n%s=====\nexpected\n=====\n%s=====", actualOutput, expectedOutput)
}
}
}
// Read a file, dumping to stdout. Helper function for TestBackupOpsHelperProcess
func readFileToStdout(logFile string) error {
file, err := os.OpenFile(logFile, os.O_RDONLY, os.ModePerm)
if err != nil {
return err
}
defer file.Close()
scanner := bufio.NewScanner(file)
for scanner.Scan() {
fmt.Println(scanner.Text())
}
return scanner.Err()
}
// TestBackupOpsHelperProcess isn't a real test; it's a helper process for TestRunDuplicacy*
func TestBackupOpsHelperProcess(t *testing.T) {
if os.Getenv("GO_WANT_HELPER_PROCESS") != "1" {
return
}
args := os.Args
for len(args) > 0 {
if args[0] == "--" {
args = args[1:]
break
}
args = args[1:]
}
if len(args) == 0 {
fmt.Fprintf(os.Stderr, "No command\n")
os.Exit(2)
}
cmd, args := args[0], args[1:]
if cmd != "" {
// For test, we don't pass a command. If one is found, just return a failure.
fmt.Fprintf(os.Stderr, "Unknown command %q\n", cmd)
os.Exit(2)
}
switch args[0] {
case "testbackup":
backupFile := args[1]
backupFile = path.Join("test/assets", backupFile)
fmt.Fprintf(os.Stdout, "Processing backup file: %q\n", backupFile)
if err := readFileToStdout(backupFile); err != nil {
fmt.Printf("error opening assets file: %s\n", err)
os.Exit(1)
}
default:
fmt.Fprintf(os.Stderr, "Unknown argument %q\n", args)
os.Exit(2)
}
os.Exit(0)
}