2024-09-05 06:55:13 -07:00
|
|
|
// Package installtest provides functions used by various asdf tests for
|
|
|
|
// installing versions of tools. It provides a simplified version of the
|
|
|
|
// versions.InstallOneVersion function.
|
|
|
|
package installtest
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"os"
|
|
|
|
"path/filepath"
|
|
|
|
"strings"
|
|
|
|
|
2024-11-29 13:52:53 -07:00
|
|
|
"github.com/asdf-vm/asdf/internal/config"
|
|
|
|
"github.com/asdf-vm/asdf/internal/plugins"
|
2024-09-05 06:55:13 -07:00
|
|
|
)
|
|
|
|
|
|
|
|
const (
|
|
|
|
dataDirInstalls = "installs"
|
|
|
|
dataDirDownloads = "downloads"
|
|
|
|
)
|
|
|
|
|
|
|
|
// InstallOneVersion is a simplified version of versions.InstallOneVersion
|
|
|
|
// function for use in Go tests.
|
|
|
|
func InstallOneVersion(conf config.Config, plugin plugins.Plugin, versionType, version string) error {
|
|
|
|
var stdOut strings.Builder
|
|
|
|
var stdErr strings.Builder
|
|
|
|
|
|
|
|
err := plugin.Exists()
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
downloadDir := DownloadPath(conf, plugin, version)
|
|
|
|
installDir := InstallPath(conf, plugin, version)
|
|
|
|
|
|
|
|
env := map[string]string{
|
|
|
|
"ASDF_INSTALL_TYPE": versionType,
|
|
|
|
"ASDF_INSTALL_VERSION": version,
|
|
|
|
"ASDF_INSTALL_PATH": installDir,
|
|
|
|
"ASDF_DOWNLOAD_PATH": downloadDir,
|
|
|
|
"ASDF_CONCURRENCY": "1",
|
|
|
|
}
|
|
|
|
|
|
|
|
err = os.MkdirAll(downloadDir, 0o777)
|
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("unable to create download dir: %w", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
err = plugin.RunCallback("download", []string{}, env, &stdOut, &stdErr)
|
|
|
|
if _, ok := err.(plugins.NoCallbackError); err != nil && !ok {
|
|
|
|
return fmt.Errorf("failed to run download callback: %w", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
err = os.MkdirAll(installDir, 0o777)
|
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("unable to create install dir: %w", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
err = plugin.RunCallback("install", []string{}, env, &stdOut, &stdErr)
|
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("failed to run install callback: %w", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// InstallPath returns the path to a tool installation
|
|
|
|
func InstallPath(conf config.Config, plugin plugins.Plugin, version string) string {
|
|
|
|
return filepath.Join(pluginInstallPath(conf, plugin), version)
|
|
|
|
}
|
|
|
|
|
|
|
|
// DownloadPath returns the download path for a particular plugin and version
|
|
|
|
func DownloadPath(conf config.Config, plugin plugins.Plugin, version string) string {
|
|
|
|
return filepath.Join(conf.DataDir, dataDirDownloads, plugin.Name, version)
|
|
|
|
}
|
|
|
|
|
|
|
|
func pluginInstallPath(conf config.Config, plugin plugins.Plugin) string {
|
|
|
|
return filepath.Join(conf.DataDir, dataDirInstalls, plugin.Name)
|
|
|
|
}
|