- 将媒体写入和删除切换为 os.Root 沙箱 API - 移除旧的路径拼接校验辅助函数并收敛删除逻辑 - 调整并新增相关单元测试覆盖删除行为 Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
120 lines
3.2 KiB
Go
120 lines
3.2 KiB
Go
//go:build unit
|
|
|
|
package service
|
|
|
|
import (
|
|
"context"
|
|
"net/http"
|
|
"net/http/httptest"
|
|
"os"
|
|
"path/filepath"
|
|
"strings"
|
|
"testing"
|
|
|
|
"github.com/Wei-Shaw/sub2api/internal/config"
|
|
"github.com/stretchr/testify/require"
|
|
)
|
|
|
|
func TestSoraMediaStorage_StoreFromURLs(t *testing.T) {
|
|
tmpDir := t.TempDir()
|
|
server := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
|
|
w.Header().Set("Content-Type", "image/png")
|
|
w.WriteHeader(http.StatusOK)
|
|
_, _ = w.Write([]byte("data"))
|
|
}))
|
|
defer server.Close()
|
|
|
|
cfg := &config.Config{
|
|
Sora: config.SoraConfig{
|
|
Storage: config.SoraStorageConfig{
|
|
Type: "local",
|
|
LocalPath: tmpDir,
|
|
MaxConcurrentDownloads: 1,
|
|
},
|
|
},
|
|
}
|
|
|
|
storage := NewSoraMediaStorage(cfg)
|
|
urls, err := storage.StoreFromURLs(context.Background(), "image", []string{server.URL + "/img.png"})
|
|
require.NoError(t, err)
|
|
require.Len(t, urls, 1)
|
|
require.True(t, strings.HasPrefix(urls[0], "/image/"))
|
|
require.True(t, strings.HasSuffix(urls[0], ".png"))
|
|
|
|
localPath := filepath.Join(tmpDir, filepath.FromSlash(strings.TrimPrefix(urls[0], "/")))
|
|
require.FileExists(t, localPath)
|
|
}
|
|
|
|
func TestSoraMediaStorage_FallbackToUpstream(t *testing.T) {
|
|
tmpDir := t.TempDir()
|
|
server := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
|
|
w.WriteHeader(http.StatusInternalServerError)
|
|
}))
|
|
defer server.Close()
|
|
|
|
cfg := &config.Config{
|
|
Sora: config.SoraConfig{
|
|
Storage: config.SoraStorageConfig{
|
|
Type: "local",
|
|
LocalPath: tmpDir,
|
|
FallbackToUpstream: true,
|
|
},
|
|
},
|
|
}
|
|
|
|
storage := NewSoraMediaStorage(cfg)
|
|
url := server.URL + "/broken.png"
|
|
urls, err := storage.StoreFromURLs(context.Background(), "image", []string{url})
|
|
require.NoError(t, err)
|
|
require.Equal(t, []string{url}, urls)
|
|
}
|
|
|
|
func TestSoraMediaStorage_MaxDownloadBytes(t *testing.T) {
|
|
tmpDir := t.TempDir()
|
|
server := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
|
|
w.Header().Set("Content-Type", "image/png")
|
|
w.WriteHeader(http.StatusOK)
|
|
_, _ = w.Write([]byte("too-large"))
|
|
}))
|
|
defer server.Close()
|
|
|
|
cfg := &config.Config{
|
|
Sora: config.SoraConfig{
|
|
Storage: config.SoraStorageConfig{
|
|
Type: "local",
|
|
LocalPath: tmpDir,
|
|
MaxDownloadBytes: 1,
|
|
},
|
|
},
|
|
}
|
|
|
|
storage := NewSoraMediaStorage(cfg)
|
|
_, err := storage.StoreFromURLs(context.Background(), "image", []string{server.URL + "/img.png"})
|
|
require.Error(t, err)
|
|
}
|
|
|
|
func TestNormalizeSoraFileExt(t *testing.T) {
|
|
require.Equal(t, ".png", normalizeSoraFileExt(".PNG"))
|
|
require.Equal(t, ".mp4", normalizeSoraFileExt(".mp4"))
|
|
require.Equal(t, "", normalizeSoraFileExt("../../etc/passwd"))
|
|
require.Equal(t, "", normalizeSoraFileExt(".php"))
|
|
}
|
|
|
|
func TestRemovePartialDownload(t *testing.T) {
|
|
tmpDir := t.TempDir()
|
|
root, err := os.OpenRoot(tmpDir)
|
|
require.NoError(t, err)
|
|
defer func() { _ = root.Close() }()
|
|
|
|
filePath := "partial.bin"
|
|
f, err := root.OpenFile(filePath, os.O_CREATE|os.O_WRONLY|os.O_TRUNC, 0o600)
|
|
require.NoError(t, err)
|
|
_, _ = f.WriteString("partial")
|
|
_ = f.Close()
|
|
|
|
removePartialDownload(root, filePath)
|
|
_, err = root.Stat(filePath)
|
|
require.Error(t, err)
|
|
require.True(t, os.IsNotExist(err))
|
|
}
|