Files
compute-engine/controller/option_gemini_test.go
T

35 lines
888 B
Go
Raw Normal View History

package controller
import (
"net/http"
"net/http/httptest"
"strings"
"testing"
"github.com/QuantumNous/new-api/common"
"github.com/gin-gonic/gin"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
)
func TestUpdateOptionRejectsInvalidGeminiSafetyThreshold(t *testing.T) {
response := httptest.NewRecorder()
context, _ := gin.CreateTestContext(response)
context.Request = httptest.NewRequest(
http.MethodPut,
"/api/option/",
strings.NewReader(`{"key":"gemini.safety_settings","value":"{\"default\":\"BLOCK_SOME\"}"}`),
)
UpdateOption(context)
assert.Equal(t, http.StatusOK, response.Code)
var payload struct {
Success bool `json:"success"`
Message string `json:"message"`
}
require.NoError(t, common.Unmarshal(response.Body.Bytes(), &payload))
assert.False(t, payload.Success)
assert.Contains(t, payload.Message, "BLOCK_SOME")
}