feat: add status code for llm

This commit is contained in:
lilong.129
2025-04-28 21:06:53 +08:00
parent 68dbeb368a
commit 7132eec39e
8 changed files with 89 additions and 65 deletions
+17 -11
View File
@@ -12,6 +12,7 @@ import (
"testing"
"github.com/cloudwego/eino/schema"
"github.com/httprunner/httprunner/v5/code"
"github.com/httprunner/httprunner/v5/uixt/types"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
@@ -265,7 +266,7 @@ func TestValidateInput(t *testing.T) {
Role: schema.User,
MultiContent: []schema.ChatMessagePart{
{
Type: "image_url",
Type: schema.ChatMessagePartTypeImageURL,
ImageURL: &schema.ChatMessageImageURL{
URL: imageBase64,
},
@@ -281,41 +282,46 @@ func TestValidateInput(t *testing.T) {
opts: &PlanningOptions{
UserInstruction: "",
Message: &schema.Message{
Role: schema.User,
Content: "",
Role: schema.User,
MultiContent: []schema.ChatMessagePart{},
},
Size: size,
},
wantErr: ErrEmptyInstruction,
wantErr: code.LLMPrepareRequestError,
},
{
name: "empty conversation history",
opts: &PlanningOptions{
UserInstruction: "点击立即卸载按钮",
Message: &schema.Message{},
Size: size,
},
wantErr: ErrNoConversationHistory,
wantErr: code.LLMPrepareRequestError,
},
{
name: "invalid image data",
opts: &PlanningOptions{
UserInstruction: "点击继续使用按钮",
Message: &schema.Message{
Role: schema.User,
Content: "no image",
Role: schema.User,
MultiContent: []schema.ChatMessagePart{
{
Type: schema.ChatMessagePartTypeImageURL,
Text: "no image",
},
},
},
Size: size,
},
wantErr: ErrInvalidImageData,
wantErr: code.LLMPrepareRequestError,
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
err := validateInput(tt.opts)
err := validatePlanningInput(tt.opts)
if tt.wantErr != nil {
assert.Error(t, err)
assert.Equal(t, tt.wantErr, err)
} else {
assert.NoError(t, err)
}
@@ -418,7 +424,7 @@ func TestLoadImage(t *testing.T) {
// loadImage loads image and returns base64 encoded string
func loadImage(imagePath string) (base64Str string, size types.Size, err error) {
// Read the image file
imageFile, err := os.OpenFile(imagePath, os.O_RDONLY, 0o666)
imageFile, err := os.OpenFile(imagePath, os.O_RDONLY, 0o600)
if err != nil {
return "", types.Size{}, fmt.Errorf("failed to open image file: %w", err)
}