Fix: failed unit test due to setting name change
This commit is contained in:
parent
90f82100cf
commit
098aa0a0c0
3 changed files with 8 additions and 6 deletions
|
@ -4,6 +4,6 @@ go:
|
||||||
git:
|
git:
|
||||||
depth: 1
|
depth: 1
|
||||||
script:
|
script:
|
||||||
- go test -v -race -coverprofile=coverage.txt -covermode=atomic ./...
|
- go test -race -coverprofile=coverage.txt -covermode=atomic ./...
|
||||||
after_success:
|
after_success:
|
||||||
- bash <(curl -s https://codecov.io/bash)
|
- bash <(curl -s https://codecov.io/bash)
|
||||||
|
|
|
@ -36,16 +36,18 @@ type FileHeader interface {
|
||||||
|
|
||||||
// Handler 存储策略适配器
|
// Handler 存储策略适配器
|
||||||
type Handler interface {
|
type Handler interface {
|
||||||
// 上传文件
|
// 上传文件, dst为文件存储路径,size 为文件大小。上下文关闭
|
||||||
|
// 时,应取消上传并清理临时文件
|
||||||
Put(ctx context.Context, file io.ReadCloser, dst string, size uint64) error
|
Put(ctx context.Context, file io.ReadCloser, dst string, size uint64) error
|
||||||
|
|
||||||
// 删除一个或多个文件
|
// 删除一个或多个给定路径的文件,返回删除失败的文件路径列表及错误
|
||||||
Delete(ctx context.Context, files []string) ([]string, error)
|
Delete(ctx context.Context, files []string) ([]string, error)
|
||||||
|
|
||||||
// 获取文件
|
// 获取文件内容
|
||||||
Get(ctx context.Context, path string) (response.RSCloser, error)
|
Get(ctx context.Context, path string) (response.RSCloser, error)
|
||||||
|
|
||||||
// 获取缩略图
|
// 获取缩略图,可直接在ContentResponse中返回文件数据流,也可指
|
||||||
|
// 定为重定向
|
||||||
Thumb(ctx context.Context, path string) (*response.ContentResponse, error)
|
Thumb(ctx context.Context, path string) (*response.ContentResponse, error)
|
||||||
|
|
||||||
// 获取外链/下载地址,
|
// 获取外链/下载地址,
|
||||||
|
|
|
@ -347,7 +347,7 @@ func TestHandler_Thumb(t *testing.T) {
|
||||||
AuthInstance: auth.HMACAuth{},
|
AuthInstance: auth.HMACAuth{},
|
||||||
}
|
}
|
||||||
ctx := context.Background()
|
ctx := context.Background()
|
||||||
asserts.NoError(cache.Set("preview_timeout", "60", 0))
|
asserts.NoError(cache.Set("setting_preview_timeout", "60", 0))
|
||||||
resp, err := handler.Thumb(ctx, "/1.txt")
|
resp, err := handler.Thumb(ctx, "/1.txt")
|
||||||
asserts.NoError(err)
|
asserts.NoError(err)
|
||||||
asserts.True(resp.Redirect)
|
asserts.True(resp.Redirect)
|
||||||
|
|
Loading…
Add table
Reference in a new issue