mirror of
https://github.com/httprunner/httprunner.git
synced 2026-05-12 02:21:29 +08:00
168 lines
4.5 KiB
Go
168 lines
4.5 KiB
Go
package hrp
|
|
|
|
import (
|
|
"fmt"
|
|
"os"
|
|
"path/filepath"
|
|
"strings"
|
|
"sync"
|
|
|
|
"github.com/httprunner/funplugin"
|
|
"github.com/httprunner/funplugin/fungo"
|
|
"github.com/pkg/errors"
|
|
"github.com/rs/zerolog/log"
|
|
|
|
"github.com/httprunner/httprunner/v4/hrp/internal/code"
|
|
"github.com/httprunner/httprunner/v4/hrp/internal/myexec"
|
|
"github.com/httprunner/httprunner/v4/hrp/internal/sdk"
|
|
)
|
|
|
|
const (
|
|
PluginGoBuiltFile = "debugtalk.so" // built from go official plugin
|
|
PluginHashicorpGoBuiltFile = "debugtalk.bin" // built from hashicorp go plugin
|
|
PluginGoSourceFile = "debugtalk.go" // golang function plugin source file
|
|
PluginGoSourceGenFile = "debugtalk_gen.go" // generated for hashicorp go plugin
|
|
PluginPySourceFile = "debugtalk.py" // python function plugin source file
|
|
PluginPySourceGenFile = ".debugtalk_gen.py" // generated for hashicorp python plugin
|
|
)
|
|
|
|
const projectInfoFile = "proj.json" // used for ensuring root project
|
|
|
|
var pluginMap = sync.Map{} // used for reusing plugin instance
|
|
|
|
func initPlugin(path, venv string, logOn bool) (plugin funplugin.IPlugin, err error) {
|
|
// plugin file not found
|
|
if path == "" {
|
|
return nil, nil
|
|
}
|
|
pluginPath, err := locatePlugin(path)
|
|
if err != nil {
|
|
log.Warn().Str("path", path).Msg("locate plugin failed")
|
|
return nil, nil
|
|
}
|
|
|
|
// reuse plugin instance if it already initialized
|
|
if p, ok := pluginMap.Load(pluginPath); ok {
|
|
return p.(funplugin.IPlugin), nil
|
|
}
|
|
|
|
pluginOptions := []funplugin.Option{funplugin.WithLogOn(logOn)}
|
|
|
|
if strings.HasSuffix(pluginPath, ".py") {
|
|
// register funppy plugin
|
|
genPyPluginPath := filepath.Join(filepath.Dir(pluginPath), PluginPySourceGenFile)
|
|
err = BuildPlugin(pluginPath, genPyPluginPath)
|
|
if err != nil {
|
|
log.Error().Err(err).Str("path", pluginPath).Msg("build plugin failed")
|
|
return nil, err
|
|
}
|
|
pluginPath = genPyPluginPath
|
|
|
|
packages := []string{
|
|
fmt.Sprintf("funppy==%s", fungo.Version),
|
|
}
|
|
python3, err := myexec.EnsurePython3Venv(venv, packages...)
|
|
if err != nil {
|
|
log.Error().Err(err).
|
|
Interface("packages", packages).
|
|
Msg("python3 venv is not ready")
|
|
return nil, err
|
|
}
|
|
pluginOptions = append(pluginOptions, funplugin.WithPython3(python3))
|
|
}
|
|
|
|
// found plugin file
|
|
plugin, err = funplugin.Init(pluginPath, pluginOptions...)
|
|
if err != nil {
|
|
log.Error().Err(err).Msgf("init plugin failed: %s", pluginPath)
|
|
err = errors.Wrap(code.InitPluginFailed, err.Error())
|
|
return
|
|
}
|
|
|
|
// add plugin instance to plugin map
|
|
pluginMap.Store(pluginPath, plugin)
|
|
|
|
// report event for initializing plugin
|
|
event := sdk.EventTracking{
|
|
Category: "InitPlugin",
|
|
Action: fmt.Sprintf("Init %s plugin", plugin.Type()),
|
|
Value: 0, // success
|
|
}
|
|
if err != nil {
|
|
event.Value = 1 // failed
|
|
}
|
|
go sdk.SendEvent(event)
|
|
|
|
return
|
|
}
|
|
|
|
func locatePlugin(path string) (pluginPath string, err error) {
|
|
// priority: hashicorp plugin (debugtalk.bin > debugtalk.py) > go plugin (debugtalk.so)
|
|
|
|
pluginPath, err = locateFile(path, PluginHashicorpGoBuiltFile)
|
|
if err == nil {
|
|
return
|
|
}
|
|
|
|
pluginPath, err = locateFile(path, PluginPySourceFile)
|
|
if err == nil {
|
|
return
|
|
}
|
|
|
|
pluginPath, err = locateFile(path, PluginGoBuiltFile)
|
|
if err == nil {
|
|
return
|
|
}
|
|
|
|
return "", fmt.Errorf("plugin file not found")
|
|
}
|
|
|
|
// locateFile searches destFile upward recursively until system root dir
|
|
func locateFile(startPath string, destFile string) (string, error) {
|
|
stat, err := os.Stat(startPath)
|
|
if os.IsNotExist(err) {
|
|
return "", err
|
|
}
|
|
|
|
var startDir string
|
|
if stat.IsDir() {
|
|
startDir = startPath
|
|
} else {
|
|
startDir = filepath.Dir(startPath)
|
|
}
|
|
startDir, _ = filepath.Abs(startDir)
|
|
|
|
// convention over configuration
|
|
pluginPath := filepath.Join(startDir, destFile)
|
|
if _, err := os.Stat(pluginPath); err == nil {
|
|
return pluginPath, nil
|
|
}
|
|
|
|
// system root dir
|
|
parentDir, _ := filepath.Abs(filepath.Dir(startDir))
|
|
if parentDir == startDir {
|
|
return "", fmt.Errorf("searched to system root dir, plugin file not found")
|
|
}
|
|
|
|
return locateFile(parentDir, destFile)
|
|
}
|
|
|
|
func GetProjectRootDirPath(path string) (rootDir string, err error) {
|
|
pluginPath, err := locatePlugin(path)
|
|
if err == nil {
|
|
rootDir = filepath.Dir(pluginPath)
|
|
return
|
|
}
|
|
// fix: no debugtalk file in project but having proj.json created by startpeoject
|
|
projPath, err := locateFile(path, projectInfoFile)
|
|
if err == nil {
|
|
rootDir = filepath.Dir(projPath)
|
|
return
|
|
}
|
|
|
|
// failed to locate project root dir
|
|
// maybe project plugin debugtalk.xx and proj.json are not exist
|
|
// use current dir instead
|
|
return os.Getwd()
|
|
}
|