Tests: Add tests for internal/query

This commit is contained in:
theresa
2021-03-03 11:49:32 +01:00
parent 10983e73d4
commit 3f68c2f6e4
10 changed files with 325 additions and 8 deletions

View File

@@ -1,13 +1,26 @@
package query
import (
"github.com/stretchr/testify/assert"
"testing"
)
//TODO find duplicates
func TestDuplicates(t *testing.T) {
if files, err := Duplicates(10, 0, ""); err != nil {
t.Fatal(err)
} else if files == nil {
t.Fatal("files must not be nil")
}
t.Run("success", func(t *testing.T) {
if files, err := Duplicates(10, 0, ""); err != nil {
t.Fatal(err)
} else if files == nil {
t.Fatal("files must not be nil")
}
})
t.Run("pathname not empty", func(t *testing.T) {
files, err := Duplicates(10, 0, "/holiday/sea.jpg")
if err != nil {
t.Fatal(err)
}
assert.Empty(t, files)
})
}