photoprism/internal/ffmpeg/encode/encoder_test.go
Michael Mayer bbb30e6a33 FFmpeg: Add tests, refactor package, and split into sub-packages #4604
Signed-off-by: Michael Mayer <michael@photoprism.app>
2025-01-08 18:27:33 +01:00

19 lines
440 B
Go

package encode
import (
"testing"
"github.com/stretchr/testify/assert"
)
func TestFindEncoder(t *testing.T) {
t.Run("software", func(t *testing.T) {
assert.Equal(t, "libx264", FindEncoder("software").String())
})
t.Run("apple", func(t *testing.T) {
assert.Equal(t, "h264_videotoolbox", FindEncoder("apple").String())
})
t.Run("unsupported", func(t *testing.T) {
assert.Equal(t, "libx264", FindEncoder("xxx").String())
})
}