2019-06-11 16:23:20 +00:00
|
|
|
package handler
|
2016-03-11 19:46:34 +00:00
|
|
|
|
|
|
|
import (
|
|
|
|
"io"
|
|
|
|
"testing"
|
|
|
|
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
|
|
)
|
|
|
|
|
|
|
|
type zeroStore struct{}
|
|
|
|
|
|
|
|
func (store zeroStore) NewUpload(info FileInfo) (string, error) {
|
|
|
|
return "", nil
|
|
|
|
}
|
|
|
|
func (store zeroStore) WriteChunk(id string, offset int64, src io.Reader) (int64, error) {
|
|
|
|
return 0, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (store zeroStore) GetInfo(id string) (FileInfo, error) {
|
|
|
|
return FileInfo{}, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestConfig(t *testing.T) {
|
|
|
|
a := assert.New(t)
|
|
|
|
|
2019-08-20 14:16:05 +00:00
|
|
|
composer := NewStoreComposer()
|
|
|
|
composer.UseCore(zeroStore{})
|
|
|
|
|
2016-03-11 19:46:34 +00:00
|
|
|
config := Config{
|
2019-08-20 14:16:05 +00:00
|
|
|
StoreComposer: composer,
|
|
|
|
BasePath: "files",
|
2016-03-11 19:46:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
a.Nil(config.validate())
|
|
|
|
a.NotNil(config.Logger)
|
|
|
|
a.NotNil(config.StoreComposer)
|
|
|
|
a.Equal("/files/", config.BasePath)
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestConfigEmptyCore(t *testing.T) {
|
|
|
|
a := assert.New(t)
|
|
|
|
|
|
|
|
config := Config{
|
|
|
|
StoreComposer: NewStoreComposer(),
|
|
|
|
}
|
|
|
|
|
|
|
|
a.Error(config.validate())
|
|
|
|
}
|