mirror of
https://github.com/infiniflow/ragflow.git
synced 2026-06-29 23:41:12 +08:00
### What problem does this PR solve? 1. add modelID for delete_model and update_status 2. fix the bug when update-status delete model ### Type of change - [x] Bug Fix (non-breaking change which fixes an issue) - [x] New Feature (non-breaking change which adds functionality)
113 lines
2.9 KiB
Go
113 lines
2.9 KiB
Go
//
|
|
// Copyright 2026 The InfiniFlow Authors. All Rights Reserved.
|
|
//
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
// you may not use this file except in compliance with the License.
|
|
// You may obtain a copy of the License at
|
|
//
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
//
|
|
|
|
package dao
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/glebarez/sqlite"
|
|
"gorm.io/gorm"
|
|
|
|
"ragflow/internal/entity"
|
|
)
|
|
|
|
func setupTenantDAOTestDB(t *testing.T) *gorm.DB {
|
|
t.Helper()
|
|
db, err := gorm.Open(sqlite.Open(":memory:"), &gorm.Config{TranslateError: true})
|
|
if err != nil {
|
|
t.Fatalf("failed to open sqlite: %v", err)
|
|
}
|
|
if err := db.AutoMigrate(&entity.Tenant{}); err != nil {
|
|
t.Fatalf("failed to migrate tenant: %v", err)
|
|
}
|
|
return db
|
|
}
|
|
|
|
func useTenantDAOTestDB(t *testing.T, db *gorm.DB) {
|
|
t.Helper()
|
|
orig := DB
|
|
DB = db
|
|
t.Cleanup(func() { DB = orig })
|
|
}
|
|
|
|
func TestTenantDAODeleteSoftDeletesTenant(t *testing.T) {
|
|
db := setupTenantDAOTestDB(t)
|
|
useTenantDAOTestDB(t, db)
|
|
|
|
active := "1"
|
|
tenant := &entity.Tenant{
|
|
ID: "tenant-delete",
|
|
LLMID: "llm",
|
|
EmbdID: "embd",
|
|
ASRID: "asr",
|
|
Img2TxtID: "img2txt",
|
|
RerankID: "rerank",
|
|
ParserIDs: "naive",
|
|
Status: &active,
|
|
}
|
|
if err := NewTenantDAO().Create(tenant); err != nil {
|
|
t.Fatalf("Create() error = %v", err)
|
|
}
|
|
|
|
if err := NewTenantDAO().Delete(tenant.ID); err != nil {
|
|
t.Fatalf("Delete() error = %v", err)
|
|
}
|
|
|
|
var got entity.Tenant
|
|
if err := db.Where("id = ?", tenant.ID).First(&got).Error; err != nil {
|
|
t.Fatalf("failed to reload tenant: %v", err)
|
|
}
|
|
if got.Status == nil || *got.Status != "0" {
|
|
t.Fatalf("status = %v, want 0", got.Status)
|
|
}
|
|
if _, err := NewTenantDAO().GetByID(tenant.ID); err == nil {
|
|
t.Fatalf("GetByID() after Delete() error = nil, want not found")
|
|
}
|
|
}
|
|
|
|
func TestTenantDAOUpdateStatus(t *testing.T) {
|
|
db := setupTenantDAOTestDB(t)
|
|
useTenantDAOTestDB(t, db)
|
|
|
|
active := "1"
|
|
tenant := &entity.Tenant{
|
|
ID: "tenant-update",
|
|
LLMID: "llm",
|
|
EmbdID: "embd",
|
|
ASRID: "asr",
|
|
Img2TxtID: "img2txt",
|
|
RerankID: "rerank",
|
|
ParserIDs: "naive",
|
|
Status: &active,
|
|
}
|
|
if err := NewTenantDAO().Create(tenant); err != nil {
|
|
t.Fatalf("Create() error = %v", err)
|
|
}
|
|
|
|
if err := NewTenantDAO().Update(tenant.ID, map[string]interface{}{"status": "0"}); err != nil {
|
|
t.Fatalf("Update() error = %v", err)
|
|
}
|
|
|
|
var got entity.Tenant
|
|
if err := db.Where("id = ?", tenant.ID).First(&got).Error; err != nil {
|
|
t.Fatalf("failed to reload tenant: %v", err)
|
|
}
|
|
if got.Status == nil || *got.Status != "0" {
|
|
t.Fatalf("status = %v, want 0", got.Status)
|
|
}
|
|
}
|