1234567891011121314151617181920212223242526272829303132 |
- package cluster
- import (
- "time"
- "github.com/google/uuid"
- "github.com/langgenius/dify-plugin-daemon/internal/types/entities"
- "github.com/langgenius/dify-plugin-daemon/internal/types/entities/plugin_entities"
- )
- func getRandomPluginRuntime() entities.PluginRuntime {
- return entities.PluginRuntime{
- Config: plugin_entities.PluginDeclaration{
- Name: uuid.New().String(),
- Version: "0.0.1",
- Type: plugin_entities.PluginType,
- Author: "Yeuoly",
- CreatedAt: time.Now(),
- Plugins: []string{"test"},
- },
- }
- }
- // func TestPluginScheduleLifetime(t *testing.T) {
- // plugin := getRandomPluginRuntime()
- // cluster, err := createSimulationCluster(1)
- // if err != nil {
- // t.Errorf("create simulation cluster failed: %v", err)
- // return
- // }
- // }
|