mirror of
https://github.com/QuantumNous/new-api.git
synced 2026-09-07 18:18:00 +00:00
26 lines
591 B
Go
26 lines
591 B
Go
package plugins_test
|
|
|
|
import "testing"
|
|
|
|
func TestSoraResponsesProtocol(t *testing.T) {
|
|
testVideoResponsesProtocol(t, videoResponsesTestCase{
|
|
pluginKey: "sora",
|
|
model: "sora-2-pro",
|
|
requestBody: map[string]any{
|
|
"model": "sora-2-pro",
|
|
"input": "waves at sunset",
|
|
"seconds": 8,
|
|
"size": "1792x1024",
|
|
},
|
|
wantAction: "text_to_video",
|
|
wantRequest: map[string]any{
|
|
"model": "sora-2-pro",
|
|
"prompt": "waves at sunset",
|
|
"seconds": float64(8),
|
|
"size": "1792x1024",
|
|
},
|
|
wantUsageKeys: []string{"seconds", "size"},
|
|
wantVendorName: "sora",
|
|
})
|
|
}
|