mirror of
https://github.com/flipped-aurora/gin-vue-admin.git
synced 2026-09-23 21:08:09 +00:00
* feat: 调整AI工作模式,更符合harness基准 * feat: 添加BusinessDB字段到PluginInitializeGorm结构体,并增加相关测试用例 * [middleware/jwt.go]: fix #2192 issues bug * docs: add auto plugin design spec * chore: ignore worktrees directory * feat: 调整代码辅助能力至插件 * feat: 添加警告条组件,提示授权用户访问限制 * fix: 修正商业用途版权声明链接 * feat: 调整agent.md 更加节省token * fix: 修改casbin版本为v3 * feat: 更新JSONMap和JSONSlice类型,优化GORM数据类型处理 * feat: 添加数据库就绪通知机制,优化插件注册流程 * feat: 重构API路径和描述,优化代码生成器和模板配置分组 * feat: 优化 person 页面的 css 作用域限制 * feat: 更新 vite 至 vite8 * 新增:MCP工具为指定URL的角色ID授权 * fix: 增加文件名合法性检查,拒绝包含非法字符的文件写入 * chore: 更新CI配置,升级Node.js和Go版本,调整checkout和setup动作版本 * feat: 为数据库连接增加最大复用时间配置 * feat: 为各数据库连接配置增加最大连接生命周期设置 * feat: 更新插件注册逻辑并优化API和菜单组件的标签显示 * feat: 更新版本号至v2.9.2并添加新插件路径信息 --------- Co-authored-by: taincheng <zhangtc@gmail.com> Co-authored-by: Azir-11 <2075125282@qq.com> Co-authored-by: lanxi <1220lanxi@gmail.com>
92 lines
2.7 KiB
Go
92 lines
2.7 KiB
Go
package mcpTool
|
|
|
|
import (
|
|
"os"
|
|
"path/filepath"
|
|
"strings"
|
|
"testing"
|
|
|
|
"github.com/flipped-aurora/gin-vue-admin/server/config"
|
|
"github.com/flipped-aurora/gin-vue-admin/server/global"
|
|
"github.com/flipped-aurora/gin-vue-admin/server/model/system/request"
|
|
"github.com/stretchr/testify/require"
|
|
)
|
|
|
|
func TestBuildDirectoryStructureReturnsRootRelativePaths(t *testing.T) {
|
|
original := global.GVA_CONFIG.AutoCode
|
|
t.Cleanup(func() {
|
|
global.GVA_CONFIG.AutoCode = original
|
|
})
|
|
|
|
root := filepath.Join(t.TempDir(), "repo")
|
|
global.GVA_CONFIG.AutoCode = config.Autocode{
|
|
Root: root,
|
|
Server: "server",
|
|
Web: "web",
|
|
Module: "demo-module",
|
|
}
|
|
|
|
paths := (&GVAExecutor{}).buildDirectoryStructure(&ExecutionPlan{
|
|
PackageName: "demo",
|
|
PackageType: "package",
|
|
})
|
|
|
|
require.Equal(t, "server/api/v1/demo", paths["api"])
|
|
require.Equal(t, "server/service/demo", paths["service"])
|
|
require.Equal(t, "server/model/demo", paths["model"])
|
|
require.Equal(t, "web/view/demo", paths["vue_page"])
|
|
require.Equal(t, "web/api/demo", paths["vue_api"])
|
|
require.NotContains(t, filepath.ToSlash(paths["api"]), filepath.ToSlash(root))
|
|
}
|
|
|
|
func TestCollectExpectedFilePathsReturnsRootRelativePaths(t *testing.T) {
|
|
original := global.GVA_CONFIG.AutoCode
|
|
t.Cleanup(func() {
|
|
global.GVA_CONFIG.AutoCode = original
|
|
})
|
|
|
|
root := filepath.Join(t.TempDir(), "repo")
|
|
global.GVA_CONFIG.AutoCode = config.Autocode{
|
|
Root: root,
|
|
Server: "server",
|
|
Web: "web",
|
|
}
|
|
|
|
paths := (&GVAExecutor{}).collectExpectedFilePaths(&ExecutionPlan{
|
|
PackageName: "demo",
|
|
PackageType: "package",
|
|
NeedCreatedModules: true,
|
|
ModulesInfo: []*request.AutoCode{
|
|
{StructName: "DemoItem"},
|
|
},
|
|
})
|
|
|
|
require.Contains(t, paths, "server/api/v1/demo/demoitem.go")
|
|
require.Contains(t, paths, "server/service/demo/demoitem.go")
|
|
require.Contains(t, paths, "server/model/demo/demoitem.go")
|
|
require.Contains(t, paths, "web/view/demo/demoitem.vue")
|
|
require.NotContains(t, strings.Join(paths, "\n"), filepath.ToSlash(root))
|
|
}
|
|
|
|
func TestScanModulesInDirectoryReturnsRootRelativeFilePaths(t *testing.T) {
|
|
original := global.GVA_CONFIG.AutoCode
|
|
t.Cleanup(func() {
|
|
global.GVA_CONFIG.AutoCode = original
|
|
})
|
|
|
|
root := t.TempDir()
|
|
global.GVA_CONFIG.AutoCode = config.Autocode{
|
|
Root: root,
|
|
Server: "server",
|
|
}
|
|
|
|
modelDir := filepath.Join(root, "server", "model", "demo")
|
|
require.NoError(t, os.MkdirAll(modelDir, 0o755))
|
|
require.NoError(t, os.WriteFile(filepath.Join(modelDir, "demo_item.go"), []byte("package demo\n"), 0o644))
|
|
|
|
modules, err := (&GVAAnalyzer{}).scanModulesInDirectory(modelDir, "demo", "package")
|
|
require.NoError(t, err)
|
|
require.Len(t, modules, 1)
|
|
require.Equal(t, []string{"server/model/demo/demo_item.go"}, modules[0].FilePaths)
|
|
}
|