parent
e8d21b1e9b
commit
534e127f87
@ -1,38 +0,0 @@
|
|||||||
package qiniu
|
|
||||||
|
|
||||||
import (
|
|
||||||
"io"
|
|
||||||
)
|
|
||||||
|
|
||||||
// FileStream 用户传来的文件
|
|
||||||
type FileStream struct {
|
|
||||||
File io.ReadCloser
|
|
||||||
Size uint64
|
|
||||||
VirtualPath string
|
|
||||||
Name string
|
|
||||||
MIMEType string
|
|
||||||
}
|
|
||||||
|
|
||||||
func (file FileStream) Read(p []byte) (n int, err error) {
|
|
||||||
return file.File.Read(p)
|
|
||||||
}
|
|
||||||
|
|
||||||
func (file FileStream) GetMIMEType() string {
|
|
||||||
return file.MIMEType
|
|
||||||
}
|
|
||||||
|
|
||||||
func (file FileStream) GetSize() uint64 {
|
|
||||||
return file.Size
|
|
||||||
}
|
|
||||||
|
|
||||||
func (file FileStream) Close() error {
|
|
||||||
return file.File.Close()
|
|
||||||
}
|
|
||||||
|
|
||||||
func (file FileStream) GetFileName() string {
|
|
||||||
return file.Name
|
|
||||||
}
|
|
||||||
|
|
||||||
func (file FileStream) GetVirtualPath() string {
|
|
||||||
return file.VirtualPath
|
|
||||||
}
|
|
@ -0,0 +1,42 @@
|
|||||||
|
package qiniu
|
||||||
|
|
||||||
|
import (
|
||||||
|
"context"
|
||||||
|
model "github.com/HFO4/cloudreve/models"
|
||||||
|
"github.com/HFO4/cloudreve/pkg/cache"
|
||||||
|
"github.com/HFO4/cloudreve/pkg/filesystem/fsctx"
|
||||||
|
"github.com/stretchr/testify/assert"
|
||||||
|
"testing"
|
||||||
|
)
|
||||||
|
|
||||||
|
func TestHandler_Token(t *testing.T) {
|
||||||
|
asserts := assert.New(t)
|
||||||
|
handler := Handler{
|
||||||
|
Policy: &model.Policy{
|
||||||
|
MaxSize: 10,
|
||||||
|
OptionsSerialized: model.PolicyOption{
|
||||||
|
MimeType: "ss",
|
||||||
|
},
|
||||||
|
AccessKey: "ak",
|
||||||
|
SecretKey: "sk",
|
||||||
|
Server: "http://test.com",
|
||||||
|
},
|
||||||
|
}
|
||||||
|
ctx := context.Background()
|
||||||
|
|
||||||
|
// 成功
|
||||||
|
{
|
||||||
|
cache.Set("setting_siteURL", "http://test.cloudreve.org", 0)
|
||||||
|
ctx = context.WithValue(ctx, fsctx.SavePathCtx, "/123")
|
||||||
|
_, err := handler.Token(ctx, 10, "123")
|
||||||
|
asserts.NoError(err)
|
||||||
|
}
|
||||||
|
|
||||||
|
// 上下文无存储路径
|
||||||
|
{
|
||||||
|
ctx = context.Background()
|
||||||
|
cache.Set("setting_siteURL", "http://test.cloudreve.org", 0)
|
||||||
|
_, err := handler.Token(ctx, 10, "123")
|
||||||
|
asserts.Error(err)
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in new issue