mirror of
https://github.com/TeaOSLab/EdgeCommon.git
synced 2025-12-25 03:26:36 +08:00
支持自动转换图像文件为WebP
This commit is contained in:
21
pkg/serverconfigs/image_webp_config_test.go
Normal file
21
pkg/serverconfigs/image_webp_config_test.go
Normal file
@@ -0,0 +1,21 @@
|
||||
// Copyright 2021 Liuxiangchao iwind.liu@gmail.com. All rights reserved.
|
||||
|
||||
package serverconfigs
|
||||
|
||||
import (
|
||||
"github.com/iwind/TeaGo/assert"
|
||||
"testing"
|
||||
)
|
||||
|
||||
func TestWebPImageConfig_MatchAccept(t *testing.T) {
|
||||
var a = assert.NewAssertion(t)
|
||||
{
|
||||
var c = &WebPImageConfig{}
|
||||
a.IsFalse(c.MatchAccept(""))
|
||||
a.IsTrue(c.MatchAccept("image/webp"))
|
||||
a.IsTrue(c.MatchAccept("image/webp,image/png"))
|
||||
a.IsTrue(c.MatchAccept("image/jpeg,image/webp,image/png"))
|
||||
a.IsFalse(c.MatchAccept("mimage/webp"))
|
||||
a.IsFalse(c.MatchAccept("image/webpm"))
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user