aboutsummaryrefslogtreecommitdiff
path: root/weed/filer/filechunk_group_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'weed/filer/filechunk_group_test.go')
-rw-r--r--weed/filer/filechunk_group_test.go36
1 files changed, 36 insertions, 0 deletions
diff --git a/weed/filer/filechunk_group_test.go b/weed/filer/filechunk_group_test.go
new file mode 100644
index 000000000..d24d66a49
--- /dev/null
+++ b/weed/filer/filechunk_group_test.go
@@ -0,0 +1,36 @@
+package filer
+
+import (
+ "github.com/stretchr/testify/assert"
+ "testing"
+)
+
+func TestChunkGroup_doSearchChunks(t *testing.T) {
+ type fields struct {
+ sections map[SectionIndex]*FileChunkSection
+ }
+ type args struct {
+ offset int64
+ fileSize int64
+ whence uint32
+ }
+ tests := []struct {
+ name string
+ fields fields
+ args args
+ wantFound bool
+ wantOut int64
+ }{
+ // TODO: Add test cases.
+ }
+ for _, tt := range tests {
+ t.Run(tt.name, func(t *testing.T) {
+ group := &ChunkGroup{
+ sections: tt.fields.sections,
+ }
+ gotFound, gotOut := group.doSearchChunks(tt.args.offset, tt.args.fileSize, tt.args.whence)
+ assert.Equalf(t, tt.wantFound, gotFound, "doSearchChunks(%v, %v, %v)", tt.args.offset, tt.args.fileSize, tt.args.whence)
+ assert.Equalf(t, tt.wantOut, gotOut, "doSearchChunks(%v, %v, %v)", tt.args.offset, tt.args.fileSize, tt.args.whence)
+ })
+ }
+}