mirror of
https://github.com/infiniflow/ragflow.git
synced 2026-07-16 20:57:21 +08:00
### Summary certain tests fail because of test drift and were fixed, other because of go issues --------- Co-authored-by: Wang Qi <wangq8@outlook.com>
78 lines
2.2 KiB
Go
78 lines
2.2 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 (
|
|
"os"
|
|
"path/filepath"
|
|
"testing"
|
|
|
|
"github.com/glebarez/sqlite"
|
|
"gorm.io/gorm"
|
|
"ragflow/internal/entity"
|
|
)
|
|
|
|
func TestSeedCanvasTemplatesIsIdempotentAndRemovesStaleRows(t *testing.T) {
|
|
db, err := gorm.Open(sqlite.Open(":memory:"), &gorm.Config{})
|
|
if err != nil {
|
|
t.Fatalf("open sqlite: %v", err)
|
|
}
|
|
if err := db.AutoMigrate(&entity.CanvasTemplate{}); err != nil {
|
|
t.Fatalf("migrate canvas templates: %v", err)
|
|
}
|
|
|
|
dir := t.TempDir()
|
|
writeTemplate := func(name, id, title string) {
|
|
t.Helper()
|
|
body := `{"id":"` + id + `","title":{"en":"` + title + `"},"description":{},"dsl":{}}`
|
|
if err := os.WriteFile(filepath.Join(dir, name), []byte(body), 0o600); err != nil {
|
|
t.Fatalf("write template: %v", err)
|
|
}
|
|
}
|
|
writeTemplate("kept.json", "kept", "first")
|
|
writeTemplate("removed.json", "removed", "removed")
|
|
|
|
seed := func() {
|
|
t.Helper()
|
|
entries, err := os.ReadDir(dir)
|
|
if err != nil {
|
|
t.Fatalf("read templates: %v", err)
|
|
}
|
|
if _, err := seedCanvasTemplates(db, dir, entries); err != nil {
|
|
t.Fatalf("seed templates: %v", err)
|
|
}
|
|
}
|
|
seed()
|
|
|
|
writeTemplate("kept.json", "kept", "updated")
|
|
if err := os.Remove(filepath.Join(dir, "removed.json")); err != nil {
|
|
t.Fatalf("remove stale template file: %v", err)
|
|
}
|
|
seed()
|
|
|
|
var templates []entity.CanvasTemplate
|
|
if err := db.Find(&templates).Error; err != nil {
|
|
t.Fatalf("read seeded templates: %v", err)
|
|
}
|
|
if len(templates) != 1 {
|
|
t.Fatalf("got %d templates, want 1", len(templates))
|
|
}
|
|
if templates[0].ID != "kept" || templates[0].Title["en"] != "updated" {
|
|
t.Fatalf("unexpected template after reseed: %#v", templates[0])
|
|
}
|
|
}
|