mirror of
https://github.com/octoleo/syncthing.git
synced 2024-11-09 14:50:56 +00:00
43 lines
1.1 KiB
Go
43 lines
1.1 KiB
Go
package main
|
|
|
|
import (
|
|
"fmt"
|
|
"testing"
|
|
"time"
|
|
)
|
|
|
|
var testdata = []struct {
|
|
name string
|
|
size int
|
|
hash string
|
|
}{
|
|
{"bar", 10, "2f72cc11a6fcd0271ecef8c61056ee1eb1243be3805bf9a9df98f92f7636b05c"},
|
|
{"baz/quux", 9, "c154d94e94ba7298a6adb0523afe34d1b6a581d6b893a763d45ddc5e209dcb83"},
|
|
{"foo", 7, "aec070645fe53ee3b3763059376134f058cc337247c978add178b6ccdfb0019f"},
|
|
}
|
|
|
|
func TestWalk(t *testing.T) {
|
|
m := new(Model)
|
|
files := Walk("testdata", m, false)
|
|
|
|
if l1, l2 := len(files), len(testdata); l1 != l2 {
|
|
t.Fatalf("Incorrect number of walked files %d != %d", l1, l2)
|
|
}
|
|
|
|
for i := range testdata {
|
|
if n1, n2 := testdata[i].name, files[i].Name; n1 != n2 {
|
|
t.Errorf("Incorrect file name %q != %q for case #%d", n1, n2, i)
|
|
}
|
|
|
|
if h1, h2 := fmt.Sprintf("%x", files[i].Blocks[0].Hash), testdata[i].hash; h1 != h2 {
|
|
t.Errorf("Incorrect hash %q != %q for case #%d", h1, h2, i)
|
|
}
|
|
|
|
t0 := time.Date(2010, 1, 1, 0, 0, 0, 0, time.UTC).Unix()
|
|
t1 := time.Date(2020, 1, 1, 0, 0, 0, 0, time.UTC).Unix()
|
|
if mt := files[i].Modified; mt < t0 || mt > t1 {
|
|
t.Errorf("Unrealistic modtime %d for test %d", mt, i)
|
|
}
|
|
}
|
|
}
|