mirror of
https://github.com/filebrowser/filebrowser.git
synced 2026-07-17 16:36:49 +00:00
62 lines
1.6 KiB
Go
62 lines
1.6 KiB
Go
package fbhttp
|
|
|
|
import (
|
|
"net/http"
|
|
"net/http/httptest"
|
|
"strings"
|
|
"testing"
|
|
|
|
"github.com/spf13/afero"
|
|
|
|
"github.com/filebrowser/filebrowser/v2/files"
|
|
)
|
|
|
|
func TestNormalizeSRTLineBreaks(t *testing.T) {
|
|
input := []byte("first<br>second<BR/>third<br />fourth<br class=\"x\">fifth")
|
|
got := string(normalizeSRTLineBreaks(input))
|
|
want := "first\nsecond\nthird\nfourth\nfifth"
|
|
if got != want {
|
|
t.Fatalf("normalizeSRTLineBreaks() = %q, want %q", got, want)
|
|
}
|
|
}
|
|
|
|
func TestSubtitleFileHandlerConvertsSRTBreakTags(t *testing.T) {
|
|
fs := afero.NewMemMapFs()
|
|
const path = "/sample.srt"
|
|
const content = "1\n" +
|
|
"00:00:01,000 --> 00:00:02,000\n" +
|
|
"First<br>Second<BR/>Third<br />Fourth\n\n"
|
|
|
|
if err := afero.WriteFile(fs, path, []byte(content), 0o644); err != nil {
|
|
t.Fatalf("failed to write subtitle: %v", err)
|
|
}
|
|
info, err := fs.Stat(path)
|
|
if err != nil {
|
|
t.Fatalf("failed to stat subtitle: %v", err)
|
|
}
|
|
|
|
file := &files.FileInfo{
|
|
Fs: fs,
|
|
Path: path,
|
|
Name: "sample.srt",
|
|
ModTime: info.ModTime(),
|
|
}
|
|
req := httptest.NewRequest(http.MethodGet, "/api/subtitle/sample.srt?inline=true", http.NoBody)
|
|
rec := httptest.NewRecorder()
|
|
|
|
status, err := subtitleFileHandler(rec, req, file)
|
|
if err != nil {
|
|
t.Fatalf("subtitleFileHandler returned error: %v", err)
|
|
}
|
|
if status != 0 {
|
|
t.Fatalf("subtitleFileHandler status = %d, want 0", status)
|
|
}
|
|
|
|
body := rec.Body.String()
|
|
if strings.Contains(body, "FirstSecond") {
|
|
t.Fatalf("WebVTT output collapsed SRT <br> tags: %q", body)
|
|
}
|
|
if !strings.Contains(body, "First\nSecond\nThird\nFourth") {
|
|
t.Fatalf("WebVTT output = %q, want converted SRT <br> tags as line breaks", body)
|
|
}
|
|
}
|