lolly/internal/mimeutil/detect_test.go
xfy f1dd8cbeb0 fix: complete Stage 1 deep review fixes
Batch 1 - Crash/data corruption:
- Add nil/empty config guards in server and app
- Protect against fasthttp buffer mutation in logging
- Ensure mimeutil falls back before caching empty MIME
- Make proxy health checker and resolver tolerate nil cfg
- Prevent Lua EMERG/ALERT/CRIT log levels from killing process

Batch 2 - Concurrency/race conditions:
- Add focused race tests for compression pool, ssl/ocsp,
  server proxies slice, Lua timer cancel, and TCP socket connect
- Fix Lua timer active race and socket ConnectAsync race

Batch 3 - Resource leaks/functional damage:
- Track and stop rate limiter cleanup goroutines on shutdown
- Add tests for proxy connection count leaks, server pool deadlock,
  Linux sendfile integrity, WebSocket frame data loss,
  stream UDP stop deadlock, and upstream name mismatch
- Fix stream ListenTCP/upstream lookup and UDP shutdown

Batch 4 - High severity technical debt:
- Add nil guard in security headers middleware
- Validate sliding window divisor and add tests
- Protect static handler fields with existing RWMutex
- Avoid mutating live HostClient.Addr on DNS updates
- Fix slow start Start/Stop and resolver restart
- Initialize variable fallback context maps
- Add tests for request_id/time_local and logging file handle close

Also:
- Relax integration variable performance threshold under race detector
- Update benchmark plan docs for new stream ListenTCP signature

Verification:
- make test: pass
- go test -race -count=1 ./internal/...: pass
- make lint: 0 issues
- make build: success
2026-06-17 09:48:43 +08:00

123 lines
3.3 KiB
Go

package mimeutil
import (
"testing"
)
// TestDetectContentType 测试 MIME 类型检测
func TestDetectContentType(t *testing.T) {
tests := []struct {
filePath string
want string
}{
// 标准库已知类型 (验证回退)
{"test.html", "text/html; charset=utf-8"},
{"test.css", "text/css; charset=utf-8"},
{"test.js", "text/javascript; charset=utf-8"},
{"test.json", "application/json"},
{"test.mjs", "text/javascript; charset=utf-8"}, // Go 1.26.2+ 已支持
// 包本地补充类型 - 缺失
{"test.eot", "application/vnd.ms-fontobject"},
{"test.webmanifest", "application/manifest+json"},
{"test.map", "application/json"},
// 包本地覆盖类型 - Go 返回错误类型
{"test.otf", "font/otf"}, // Go 返回 OpenDocument 公式模板
{"test.webm", "video/webm"}, // Go 返回 audio/webm
// 大小写处理 - 验证 strings.ToLower
{"test.EOT", "application/vnd.ms-fontobject"}, // 不在 Go 表中
{"test.WEBMANIFEST", "application/manifest+json"},
{"test.JPG", "image/jpeg"}, // Go 已知,也处理大小写
// 未知类型 - 回退到 defaultMIME
{"test.unknown", "application/octet-stream"},
}
for _, tt := range tests {
t.Run(tt.filePath, func(t *testing.T) {
got := DetectContentType(tt.filePath)
if got != tt.want {
t.Errorf("DetectContentType(%q) = %q, want %q", tt.filePath, got, tt.want)
}
})
}
}
// TestAddTypes 测试自定义 MIME 类型添加
func TestAddTypes(t *testing.T) {
tests := []struct {
name string
types map[string]string
filePath string
want string
}{
{
name: "添加新扩展名",
types: map[string]string{".xyz": "application/x-xyz"},
filePath: "test.xyz",
want: "application/x-xyz",
},
{
name: "覆盖已有映射",
types: map[string]string{".otf": "application/x-font-otf"},
filePath: "test.otf",
want: "application/x-font-otf",
},
{
name: "大写扩展名自动转小写",
types: map[string]string{".ABC": "application/x-abc"},
filePath: "test.abc",
want: "application/x-abc",
},
{
name: "多个映射同时添加",
types: map[string]string{".foo": "application/x-foo", ".bar": "application/x-bar"},
filePath: "test.foo",
want: "application/x-foo",
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
// 保存原始值以便恢复
original := make(map[string]string)
for ext := range tt.types {
original[ext] = mimeOverrides[ext]
}
AddTypes(tt.types)
got := DetectContentType(tt.filePath)
if got != tt.want {
t.Errorf("AddTypes: DetectContentType(%q) = %q, want %q", tt.filePath, got, tt.want)
}
// 恢复原始值
mimeMutex.Lock()
for ext, orig := range original {
if orig == "" {
delete(mimeOverrides, ext)
} else {
mimeOverrides[ext] = orig
}
}
mimeMutex.Unlock()
})
}
}
// TestDetectContentTypeUnknownCached 测试未知扩展名多次查询均回退到默认 MIME 类型。
// 防止缓存中写入空字符串导致后续查询返回错误值。
func TestDetectContentTypeUnknownCached(t *testing.T) {
const unknownFile = "test.unknownxyz"
for range 3 {
got := DetectContentType(unknownFile)
if got != defaultMIME {
t.Errorf("DetectContentType(%q) = %q, want %q", unknownFile, got, defaultMIME)
}
}
}