mirror of
https://github.com/photoprism/photoprism.git
synced 2025-10-05 16:57:17 +08:00
20 lines
440 B
Go
20 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())
|
|
})
|
|
}
|